L= { w : w has exactly two a's and at least two b's}
https://i.stack.imgur.com/4mPHU.png
I have made the two DFA's separately, but I am having trouble combining them specifically the transition. I have attached the two DFA's. Can you help and explain it me please?
Thank you
I like to think of Finite State Automata as memory-less algorithms. Effectively, each state corresponds to a Boolean flag. That is, arriving at a state indicates a true/false condition.
In using a programming analogy, it might be helpful to rename states using descriptive variable names. I might recommend the states:
Hopefully the names of these states suggest natural transitions to consider.