Lets say I have given following grammar which generates arithmetic expressions in reverse polish notation:
$G=({E},{a,+,*},P,E)$
$P={ E \rightarrow EE+ | EE* | a }$
I know this grammar is unambiguous.
What I do not understand is how I can prove this.
I already searched a lot to in google, etc. but everyone only says, that reverse polish notation are unambiguous, but not WHY.
Can you give me any hints?