I'm working on some test preparation material and stuck on this problem.
Show a context free grammar for L = {w e {a,b}*: w = wR and every a is immediately followed by a b}.
wR is w in reverse. So, in english, a palindrome with every "a" being followed by a "b", using any number of a's and b's.
So far, I got this for the reverse portion, but I can't figure out how to incorporate the every a is followed by a b part while ensuring the palindrome property will still hold.
S -> bSb | b | [the empty string]
Any help is greatly appreciated!