Lecture 5 Transition Graphs
Lecture 5 Transition Graphs
Otomata Teorisi
Sunu V
Geçiş Çizgeleri
• To produce a word
accepted by this machine,
concatenate edge labels
in the path
• (abb)(Λ)(aa)(b): abbaab
• Λ means a free ride
• Without consuming letters
• We do not have to follow
that edge but we can if we
want to
Transition Graphs
• Every FA is also a TG
• Not every TG satisfies the definition of an FA
Example
• Any TG in which some start state is also a final state will always
accept the string Λ
• This is also true for Fas
• There are some other TGs that accept the word Λ
• Also accepts baa and abba
Example
• We can read all input letters one at a time and stay in the
left-side state
• When we read a b in the – state, there are two edges we can
follow
• If the last letter is a b we can use it to go to the + state
• If we try to read another letter in the right state, we crash
Example