Convert the given Moore Machine into Mealy machine

67 views Asked by At

Convert the given Moore Machine into Mealy machine

I'm currently working on converting a Moore Machine into a Mealy machine, and I'm uncertain about the correctness of my solution. I would greatly appreciate it if someone could assist me in validating my approach and provide guidance if needed. Your expertise in this matter would be invaluable to me.

1

There are 1 answers

0
Mit Shah On

enter image description here

This is transition table of Given Moore Machine.

  • In Moore Machine output is related to state.
  • In Mealy Machine output is related to edge.

This is transition table of Mealy Machine for given Moore Machine.

In Mealy Machine you can reach to same state with the different outputs, in Moore Machine you can not because output is related to state in Moore Machine.

It is easy convert Moore -> Mealy compare to Mealy -> Moore

enter image description here