What does it mean if L1 union L2
A string is accepted if it is either L1 or L 2
What does it mean if L1L2 (concatenation)?
A string is accepted if it can be split into two parts where the first part is in L1 and the second part is in L2
What does it mean if L1*
Accepts any number of concatenated strings from L1
What is L1^r
The reverse of L1 is accepted
What is L1’
A string is accepeted if it is not in L1
what does it mean if L1 intersection L2
A string is accepeted if it is in both L1 and L2
Draw the NFA for L1 union L2
Draw the NFA for L1L2
Draw the NFA for L1*
Draw the NFA for L1^r
Draw the NFA for L1’
what does b.c mean
the dot means a concatenation, a followed by x
what does a + b.c mean
a or (b followed by c)
what does the Σ mean in
the set containing the alphabet
what is the order of precedence of these symbols
union
^*
^+
.
+
^+
^*
.
+
UNION
What is the language of the regex r = (aa)^(bb)b
L(r) = {a^(2n)b^(2m)b : n,m >= 0}
When is a language regular
If and only if a regular expression describes the language