this is the problem:
Generate a Context Free Grammar for the language $L_1 := \{{a^nb^3c^n | n\in\mathbb N}\}$
I'm not so sure about my solution, is this correct?:
$ G=(\sum,V,S,P)$
$\sum : = \{{a,b,c}\}$
$V : = \{{S,X,Y}\}$
$S : = \{{S}\}$
$P : = \{{S\rightarrow aSc | bbb}\}$
Thanks for help!