I'm searching the name of a math syntax printed similar to this:
term: 3 4 + result: 7
term: 12 3 / result: 4
the operator is at the end of the term
Thanks in advance
I'm searching the name of a math syntax printed similar to this:
term: 3 4 + result: 7
term: 12 3 / result: 4
the operator is at the end of the term
Thanks in advance
This is reverse Polish notation; as the linked article notes, it is also called postfix notation. If the operator preceded its arguments, you'd have Polish notation, or prefix notation. The ordinary style (e.g., $3+7=10$) is sometimes called infix notation.