What is the name of a notation that looks as follows:
"1 2 9 8 4 6 + * / + *"
But is evaluated as "1 + 2 * 9 / 8 + 4 * 6"
EDIT: I do think it's RPN now and my eval above is incorrect (as it's supposed to be evaluated in the stack on the first occurrence of an operator after the first operand).
1 2 3 4 ( + ) * ( + ), though I'm not sure. If this does have a name, I'd appreciate if anyone is able to locate it, and if not, its totally cool too :) – jsanc623 Jul 10 '14 at 21:001 2 9 8 4 6 + * / + *were Reverse Polish, it would mean $1\cdot(2+\frac{9}{8\cdot(4+6)})$. – hmakholm left over Monica Jul 10 '14 at 21:01