I'm trying to make a Deterministic Finite Automaton (DFA) to accept binary strings that start with "1" and have a substring "11" in it, over {0,1}.
Here is the DFA I created:
Problem:
- Input String: "10011"
- Expected Result: Accepted
- Actual Result: Rejected
What I've Tried:
- I traced the transitions for the string "10011" through my DFA, but I ended up in a non-accepting state.
- I've double-checked my state transitions and acceptance states, but I can't figure out where I might have gone wrong.
Question:
What is the issue with my DFA design? How can I make the DFA processes the string correctly?

