Doing Arithmetics Calculations
After performing the steps above, you would be left with an
arithmetic expression involving only numbers and operations.
Just evaluate it according to the rules of arithmetics. Here
are the steps in case if you forgot:
- If the expression involves parentheses, first work on
what is inside the parentheses to reduce it to just a
number. Work on it as though it is an expression of its
own. You should get to the point where the expression
inside the parentheses is reduced to a single number.
In doing so, you may use all the rules outlined here.
Remember that an expression may involve nested parentheses,
and you should work on eliminating them one after another,
starting with the innermost ones.
- If the expression involves powers, do the exponentiation
first until there is no exponentiation left to be done.
Remember that the exponent applies to the last term. For
example,
5*32
means, "take 5 and
multiply it by 3 squared".
Do not forget the rules of multiplication involving
negative numbers.
- If the expression involves multiplication, do it right after
you are done with powers.
- Addition should be done last.
Expression With Numbers Plugged In |
Operations |
3*(-5)
|
-
3*(-5) = - (3*5)
-
-(3*5) = -15
|
3*(-3-(-5*2+8)+8)+42
|
- Innermost bracket:
3*(-3-(-10+8)+8)+42
- Innermost bracket:
3*(-3-(-10+8)+8)+42
- Innermost bracket:
3*(-3-(-10+8)+8)+42
- Innermost bracket:
3*(-3-(-2)+8)+42
- Innermost bracket eliminated:
3*(-3+2+8)+42
- Next Innermost bracket:
3*(-3+2+8)+42
- Innermost bracket:
3*(-3+2+8)+42
- Innermost bracket:
3*(7)+42
- Innermost bracket eliminated:
3*7+42
- Exponentiation (42=16):
3*7+16
- Multiplication:
21+16
- Addition:
37
|
Again, your main task is not to be in a hurry, do all the steps even if
they seem tedious, and use brackets appropriately.
See Also: Evaluation Calculator