Open In App

Moore and Mealy machines to produce ‘A’, ‘B’, ‘C’ depends on inputs that end with ’10’ or with ’11’ else other

Improve
Improve
Like Article
Like
Save
Share
Report

Prerequisite: Mealy and Moore Machines, Difference between Mealy machine and Moore machine 
Problem: Construction of the machines that take set of all string over {0, 1} as input and produce ‘A’ as output if the input ends with ’10’ or produce ‘B’ as output if the input ends with ’11’ otherwise produce ‘C’ as the output. 
Assume, 
 

Ε = {0, 1} and 
Δ = {A, B, C}  

where Ε and Δ are the input and output alphabet respectively. 

Explanation: 
The required Moore machine is constructed below: 

 

In the above diagram, the initial state ‘w’ on getting ‘0’ as the input it remains in the state of itself and prints ‘C’ as the output, on getting ‘1’ as the input it transmits to a state ‘X’ and prints ‘C’ as the output so on for the remaining states. 

Thus finally above Moore machine can easily produce ‘A’ as output if the input ends with ’10’ or produce ‘B’ as output if the input ends with ’11’ otherwise produce ‘C’ 

Conversion of Moore machine to Mealy machine: 
Above Moore machine takes set of all string over {0, 1} as input and produce ‘A’ as output if the input ends with ’10’ or produce ‘B’ as output if the input ends with ’11’ otherwise produce ‘C’ as the output. 
Now we need to transform the above transition diagram of Moore machine to equivalent Mealy machine transition diagram. 

Steps for the required conversion are given below:- 

  • Step-1: Formation of State Transition Table of the above Moore machine- 

  • In the above transition table, States ‘W’, ‘X’, ‘Y’ and ‘Z’ are kept in the first column which on getting ‘0’ as the input it transits to ‘W’, ‘Z’, ‘Z’ and ‘W’ states respectively, kept in the second column and on getting ‘1’ as the input it transits to ‘X’, ‘Y’, ‘Y’ and ‘X’ states respectively, kept in the third column and In the fourth column under Δ, there are corresponding outputs of the first column states. In the table, An arrow (→) indicates the initial state. 
     
  • Step-2: Formation of Transition Table for Mealy machine from above Transition Table of Moore machine- 
    Below transition table is going to be formed with the help of the above table and its entries just by using the corresponding output of the states of the first column and placing them in the second and third column accordingly. 

  • In the above table, the states in the first column like ‘W’ on getting ‘0’ as the input it goes to a state ‘W’ and gives ‘C’ as the output and on getting ‘1’ as the input it goes to the state ‘X’ and gives ‘C’ as the output and so on for the remaining states in the first column. In the table, An arrow (→) indicates the initial state. 
     
  • Step-3: Then finally we can form the state transition diagram of Mealy machine with help of it’s above transition table. 
    The required diagram is shown below- 

  • Above Mealy machine takes set of all string over {0, 1} as input and produce ‘A’ as output if the input ends with ’10’ or produce ‘B’ as output if the input ends with ’11’ otherwise produce ‘C’ as the output. 
     

Note: While converting from Moore to Mealy machine the number of states remains same for both Moore and Mealy machine but in case of Mealy to Moore conversion it does not give the same number of states.


Last Updated : 19 Jan, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads