Solutions
Right-Linear Grammar:
A grammar G = (V, T, S, P) is said to be right-linear grammar if all the productions are of the form
A → xB
A → x
Where A, B ϵ V, and x ϵ T*
Left-Linear Grammar:
A grammar G = (V, T, S, P) is said to be left-linear grammar if all the productions are of the form
A → Bx
A → x
Where A, B ϵ V, and x ϵ T*
Regular Grammar:
In a regular grammar, at most one variable appears on the right side of any production. Furthermost, that variable must be consistently be either the rightmost or leftmost symbol of the right side of any production.
Given Grammar:
G = ({S, X, Y}, {p, q}, S, P)
S → X, X → qY | ϵ, Y → Xp
Although every production is either in right-linear or left-linear form, the grammar itself is neither right-linear nor left-linear, and therefore it is not a regular.
The give grammar is an example of linear grammar.