Consider there is a minimized DFA that accepts the language L. The problem is to find the minimum number of states in its complement.
Now if I take the complement of this DFA i;e if I make the non-final states as final and final states as non-final, do I also need to worry about minimizing this complemented DFA?
DFA - Deterministic Finite Automata
Lets start with that is accepted by a minimum DFA
. Then we can retrieve the DFA of the complement (as you have mentioned). So let's derive a DFA
which accepts
which has the same amount of states as
.
Now Lets assume that is not a minimum DFA of
we should be able to reduce the number of states in it further to get a DFA . But getting the complement of
should give us a new DFA
which accepts
which is
but has less states than
making it not a minimum DFA of
.
So our assumption that not being the miniumum of
is wrong.