| home
| contents
| previous
| next page
| send comment
| send link
| add bookmark |
1.6. Order of operations
The order of operations for evaluation of an algebraic expression is a convention.
It defines the precedence of operators. The conventional process for expression
evaluation is as follows:
- Simplify any expressions within grouping symbols, starting from the innermost
pair when parentheses are nested.
- Evaluate exponentials and radicals (fractional exponents).
- Perform all multiplications and divisions left to right.
- Perform all additions and subtractions from left to right.
For example:
(3 + √4)(2 - 32) = (3 + 2)(2 - 9) = 5(-7) = -35
| home
| contents
| previous
| next page
| send comment
| send link
| add bookmark |
Copyright © 2005, Stephen R. Schmitt