Home » Automata Mealy Machine

Automata Mealy Machine

by Online Tutorials Library

Mealy Machine

A Mealy machine is a machine in which output symbol depends upon the present input symbol and present state of the machine. In the Mealy machine, the output is represented with each input symbol for each state separated by /. The Mealy machine can be described by 6 tuples (Q, q0, ∑, O, δ, λ’) where

Example 1:

Design a Mealy machine for a binary input sequence such that if it has a substring 101, the machine output A, if the input has substring 110, it outputs B otherwise it outputs C.

Solution: For designing such a machine, we will check two conditions, and those are 101 and 110. If we get 101, the output will be A. If we recognize 110, the output will be B. For other strings the output will be C.

The partial diagram will be:

Mealy Machine

Now we will insert the possibilities of 0’s and 1’s for each state. Thus the Mealy machine becomes:

Mealy Machine

Example 2:

Design a mealy machine that scans sequence of input of 0 and 1 and generates output ‘A’ if the input string terminates in 00, output ‘B’ if the string terminates in 11, and output ‘C’ otherwise.

Solution: The mealy machine will be:

Mealy Machine


You may also like