infix notation


Infix notation is how we usually read and write arithmeticPlanetmathPlanetmath expressions. In this notation, the operator goes between the operands in the expression:

(operand1)(operator)(operand2)

E.g., 3+2, or 196×11, etc.

Infix notation suffers from some ambiguity; e.g.

3+9×2

could mean (3+9)×2 or 3+(9×2). Parentheses are needed to specify the order of operations unambiguously.

Postfix notation (or reverse-Polish notation) does not suffer this ambiguity; but it is considered harder for humans to read (hence its primary use in computer applications).

The “usual” fix for the ambiguity problem described above is to provide a convention regarding precedence of operations. This is typically done for computer parsing of mathematical expressions rather than in math done by hand, because in the former case, the computer must have some standard rules to proceed. For example, it is typical to make multiplicationPlanetmathPlanetmath “higher precedence” than addition, so in the above case, 9×2 would be performed before adding the result to 3.

The ambiguity problem only occurs when multiple operators are present in one expression, and thus, the associative law does not hold. E.g., there is no ambiguity in 1+2+3, because (1+2)+3 is the same as 1+(2+3), by the associative property of addition.

Title infix notation
Canonical name InfixNotation
Date of creation 2013-03-22 16:21:20
Last modified on 2013-03-22 16:21:20
Owner akrowne (2)
Last modified by akrowne (2)
Numerical id 5
Author akrowne (2)
Entry type Definition
Classification msc 00-01
Synonym infix
Related topic GeneralAssociativity
Defines infix arithmetic