{ambnci | m > n + i}
I've been trying to figure this out for two hours. This is what I have so far.
//To start with as many a's as you want:
S => a | aA | aS
//To ensure an a gets added each time a b or c does so there is always at least 1 more a than b's plus c's.
A => aBb | aaBbCc | aCc
B => aBb | lambda
C => ???
I know this is nowhere near correct, which is why I'm asking for help/hints.
Thanks.