Infix notation

Mathematics notation with operators between operands

Infix notation is the commonly used arithmetic and logical formula notation. The operators are written between the operands they act on (e.g. 2 + 2). It is not as simple to parse by computer as prefix notation ( e.g. + 2 2 ) or postfix notation ( e.g. 2 2 + ), but many programming languages use it due to its familiarity.

Prefix notation
Infix notation
Postfix notation

In infix notation, parentheses are necessary to show the order of the operations. In prefix or postfix notation no parenthesis are needed.

When there are no parentheses, there are rules that show the order of operations. The rules are explained in the order of operations article.

Related pages change

Other websites change