Let's say I have the following two grammars, and V is the start symbol.
$V \to aVb | ab | \Lambda$
and
$V \to aTb | ab$
$T \to aTb | \Lambda$
I refute that these are equivalent because with the first grammar we are able to print out an empty string, but are not possible to do this with the second grammar. Am I approaching this problem in the correct way?
Am I approaching this problem in the correct way?
Yes.