Evaluate a three-number expression with correct precedence, and compare it to a naive left-to-right reading. Enter the numbers and operations.
Usage Tip
PEMDAS: Parentheses, Exponents, Multiplication/Division, Addition/Subtraction — the last two pairs each share a level and go left to right.
Within the same level, work left to right
Without it, 2 + 3 x 4 would be ambiguous.
The left-to-right column shows what you would get ignoring precedence.
Parentheses are not included here; they would override the order.
