I need help constructing a Left Linear grammar for the language
L = { a^n b^m c^p | n>=2, m>=3, p>=4 }
Here is what I have so far, I know :
N = {S}
T = { a, b, c }
P = {
S -> Pcccc
P -> Pc
P -> M
M -> Mbbb
M ->Mb
M -> N
N ->Naa
N->a
}
I need help figuring out the productions. I am not sure if I am doing it right.