Epsilon Productions
A production can have a right-hand side containing just the empty
string, . The following is
yet another version of the Expression grammar:
E --> T E'
E'--> + T E' |
T --> F T'
T'--> * F T' |
F --> (E) | a
Here, 2 new nonterminals, E' and T' are used.