retagged by
831 views
1 votes
1 votes
What is product automata and what is the difference between grid machine and mod machine?
retagged by

2 Answers

0 votes
0 votes
product automata: this is from compound aurtomata

example of finite automata accept odd no. of a's and even no. of b's(  * indicate final state)

QUE:(q0,q1*)belongs to FA of odd no of a's AND(q2,q3*)belongs to FA of even no. b's

AND:(q0,q1*) * (q2,q3*)=(q0q2,q1q2,q0q3,q1*q3*)

QUE:(q0,q1*)belongs to FA of odd no of a's OR(q2,q3*)belongs to FA of even no. b's

OR:(q0,q1*) * (q2,q3*)=(q0q2,q1q2*,q0q3*,q1q3*)
0 votes
0 votes
I think the size of grid machine = (m+1)(n+1) and size of the modMachine = m*n

Related questions

0 votes
0 votes
1 answer
1
2 votes
2 votes
1 answer
2
Mojo-Jojo asked Sep 28, 2015
1,639 views
Let M be a Non-deterministic Finite Machine. Let G be the Regular Grammar obtained from M. Which is True?(a) G will always be unambiguous(b) G will always be ambiguous(c)...