in Theory of Computation
755 views
2 votes
2 votes
Let $Σ = ${$a, b$} and $L = ${$aa, bb$}. Use set notation to describe $L^c$.
in Theory of Computation
755 views

2 Answers

1 vote
1 vote
  • At first draw a DFA for L.
  • Then complement of DFA and find regular expr.

 

0 votes
0 votes

Let Σ = { a , b } and L = { aa , bb }

$L^c$ = Σ* - L

$L^c$ = { λ, a, b, ab , ba }  U { w : |w| > 2 , w ∈  Σ*}

Related questions