Skip to content
UoL CS Notes

Non-Deterministic Finite Automatons (NFAs)

COMP218 Tutorials

  1. Consider the following automaton:

    a

    b

    b

    b

    a

    c

    a

    b

    a

    c

    1

    2

    3

    4

    5

    6

    1. There are multiple of the same transition going out from the same state.
    2. You can take the following route:

      1

      2

      3

      4

      5

      6

      1

      2

      4

      5

      6

    3. There is no route to an accepting state. (Go through the path to prove that you’re in a reject state.)
  2. Consider the following automaton:

    a

    b

    b

    a

    1

    2

    3

    1. You can take the following route:

      1

      2

      3

      4

      5

      6

      1

      2

      3

    2. The conversion can be completed with the following table:

        a b
      1 {2,3}
      {2,3} {3,1}
      {1,3} {2,3} 1

      a

      b

      b

      a, b

      a

      a

      b

      1

      2,3

      1,3

      emptyset

  3. Language is {0,1}. End with 00:
    1. NFA diagram:

      0,1

      0

      0

      a

      b

      c

    2. DFA diagram:

      0

      1

      0

      1

      1

      0

      a

      a,b

      a,b,c

  4. Language is {0,1}. Contains 01 as a sub-string:
    1. NFA diagram:

      0,1

      0

      1

      0,1

      a

      b

      c

    2. DFA diagram:

      0

      1

      0

      1

      0

      1

      0

      1

      a

      a,b

      a,c

      a,b,c

  5. Consider the following NFA:

    a

    a

    b

    b

    1

    2

    3

    This is an alternate notation where the accepting state is the arrow going off.