I am not asking for the solution, it's an assignment, but I didn't see any question like that, I am asking for what's does it means:
The question:
Create a Regular Grammar that generates the same language which is generated by the following Context Free Grammar:
G = {{S,X,Y}, {a,b,c}, S, P}
WhereP
is:S ----> aaS S ----> bX X ----> cYb X ----> cb Y ----> bbY Y ----> bb
Does it means to generate the language? I am confused about creating RG from CFG
.