| State | Symbol | d(State,Symbol) |
| 0 | a | 0 |
| 0 | a | 1 |
| 1 | b | 1 |
Indicate whether or not each of the following strings is accepted by this NFA:
| State | Symbol | d(State,Symbol) |
| 0 | a | 1 |
| 1 | b | 2 |
| 1 | b | 3 |
| 2 | a | 3 |
| 3 | a | 1 |
Indicate whether or not each of the following strings is accepted by this NFA:
S -> aS
S -> bS
S -> aA
S -> a
A -> aA
A -> bA
A -> a
A -> b
Construct a finite state automaton which can be used to recognise the same language.