L = {a^n b^k | 2n >= k}
For example.: abb is element of L, aabbb is element of L, ε is element of L, but babbb is not element of L, abbb is not element of L
L = {a^n b^k | 2n >= k}
For example.: abb is element of L, aabbb is element of L, ε is element of L, but babbb is not element of L, abbb is not element of L
Copyright © 2021 Jogjafile Inc.
The shortest string in
L
is the empty string,e
. Given a strings
in the language, the following rules hold:as
is inL
asb
is inL
asbb
is inL
We can combine these observations to get a context-free grammar:
By our observations, every string generated by this grammar must be in
L
. To show that this is a grammar forL
, we must show that any string inL
can be generated. To get a stringa^n b^k
we can do the following:x
timesy
timesz
timesx + y + z = n
y + 2z = k
Setting
y = k - 2z
and substituting we findx + k - 2z + z = n
. Rearranging:k > n
, thenz
andx
can be chosen however desired so long ask - n = z - x
.k < n
, thenz
andx
can be chosen however desired so long asn - k = x - z
.k = n
, observe we might as well just choosey = n
.Note that we can always choose
z
andx
in our above example since0 <= x, z <= n
and0 <= k <= 2n
.