2

wondering how to convert this non-deterministic FSA

Initial Problem

to a deterministic one, specifically the tables.

I have got this so far but am stuck:

Try

How do i assign BHMQ? For state one, won't there be four digits? (C, I, N, R)?

Emolk
  • 33
  • 1
  • 9

1 Answers1

0

The concept you are looking for is the so-called power set construction. From the initial automaton, the state set is converted by taking its power set, which is the set of all of its subsets, to be the the state set of the resulting automaton; the final states are the ones which contain at least one of the initial final states.

The resulting automaton is equivalent to the initial one in the sense that the accepted languages are equal. However, the number of states may grow exponentially.

Codor
  • 17,447
  • 9
  • 29
  • 56