A DFA that accepts a language in which every odd position of a string is a 1 with inputs as {0,1}
2026-03-26 22:17:59.1774563479
Design a DFA with following condition.
99 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2

You can do this in 2 states -
WAITandOK. You start in theWAITstate and hope to get to theOKstate, which accepts. Here are the rules: $$ \mathrm{WAIT} \overset{1}{\rightarrow} \mathrm{OK} $$ $$ \mathrm{OK} \overset{0}{\rightarrow} \mathrm{WAIT} $$ $$ \mathrm{OK} \overset{1}{\rightarrow} \mathrm{WAIT} $$