I have this DFA described as (Q, q1, A, N, F) where
Q = {1,2,3,4},
q1 = 1,
A = {a,b,c},
F = {2,4},
N = {
(1,a) -> 2, (1,b) -> 3, (1,c) -> 4,
(2,a) -> 2, (2,b) -> 4,
(3,a) -> 2, (3,c) -> 4,
(4,b) -> 4, (4,c) -> 4 }
So I have drawn the transition diagram, and that looks fine,
I then need to work out wether or not the following strings are acceptable by this DFA:
- aabbcc
- acacac
- cabbac
- babbab
and come up with the following
- Correct
- Incorrect (can not move from a -> c ?)
- Incorrect (can not move from c -a ? )
- Incorrect (cannot move from b -> a)
I am not 100% sure those are correct, but think they are on the right track.
I then need to describe the language this accepts, in english, which I do not see being a problem, but where I need help is describing this language using mathematical notation. Could you please help me to understand this.
Thanks so much for your help