The order
Five priority levels — but and each share a level.
BIDMAS gives a strict order in which to apply operations:
| Priority | Operation |
|---|---|
| 1 | Brackets — innermost first |
| 2 | Indices (powers, roots) |
| 3 | Division and Multiplication — equal priority, left to right |
| 4 | Addition and Subtraction — equal priority, left to right |
The crucial subtlety is rows 3 and 4: and share priority — you don't always do multiplication before division. You do them LEFT to RIGHT in the order they appear.
Common ambiguity. . Multiplication first? NO — equal priority, work left to right. (Not .)
- B–I–DM–AS (DM share priority, AS share priority).
- Equal priority left to right.
- Inner brackets first when nested.