How to write Unambiguous Grammar for arithmetic expressions e.g. a+(b+c)*d E.g.
E -> E + T | T
T -> T * F | F
F -> ( E ) | i
WITHOUT alternatives - in my case without |T and |F and |i
This should be possible by adding more sentences to the grammar but I'm having hard time to figure out how... NOTE: this is for University... so may be not a good real world Grammar :)