| 1. |
Solve : question in Automata Theory? |
|
Answer» A one Person game can be converted into an NFA as follows. Let every possible board situation be a state. If any move(there may be SEVERAL types of moves, but we are not interested in distinguishing among them) can change some state x into some y, then draw an edge from x to y and label it m. Label the initial position - and the winning positions +. "This game can be won in five moves" is the same as saying "m raise to 5" is accepted by this NFA." Once we have the NFA, we USE the algorithm of automata Theory to convert it into a regular expression. The language it represents TELL us how many moves are in each winning sequence. |
|