Mental Math – Tips and Tricks for Quick Calculations

This course provides a collection of tips and tricks for performing mental math calculations quickly and efficiently. It is designed for anyone looking to improve their ability to perform arithmetic in their head, focusing on practical methods for (common) mathematical tasks.

Multiplying by 5

To multiply a number by 5, first multiply it by 10 and then halve the result.

To calculate 39*5, do 39*10 and then 390/2=195

Dividing by 5

To divide a number by 5, multiply it by 2 and then divide by 10.

To calculate 160/5, multiply the numerator and denumerator by 2, to get 320/10. People find it usually easy to divide a number by 10.

Approximating Square Roots

For a rough estimate of the square root of a number, find the nearest perfect squares and use them as reference points.

To estimate \sqrt{50}, note that \sqrt{49} = 7 and \sqrt{64} = 8. \sqrt{50} is closer to 7 since 50 is closer to 49, so in the range of [7, 8] the answer to \sqrt{50} is way closer to 7.

There is a way to approximate the answer on the comma, even for larger numbers.

  • Let’s say you want to find the square root of 333.
  • We know that the closest round number is 18, because 18^2 = 324.
  • The difference between 333-324=9.
  • Next, you divide the difference (9) by the round square root (18) and you divide this always by 2, so you have \frac{9}{18} / 2 = \frac{9}{36}.
  • Finally, you add this number on top of the round root (18), so your answer would be 18 + \frac{9}{36} = 18.25.
  • What’s the real answer? It’s 18.248, which is very close to our approximation.

N^2 – (N-1)^2

To subtract squares of consecutive numbers, use the formula

(1)   Equation

5000^2 - 4999^2 = 2*5000 - 1 = 9999

Sum All Numbers from A to B

To sum up all numbers from 1 to N, simply use the formula:

(2)   Equation

To sum up all numbers from 1 to 10, we do

(3)   Equation

In case you need to sum up all number from 101 to 200, we do

(4)   Equation

Sum Odd Numbers from A to B

To sum up the odd numbers from 1 to N, where N is the last odd number, use the formula:

(5)   Equation

So, what is the sum of all odd numbers from 100 to 200?

Let’s sum up all odd numbers in the range from 0 to 200. The last odd number is 199. To sum up all odd numbers up to 199 is calculated by 

(6)   Equation

Second, let’s sum up all numbers in the range from 0 to 100. The last odd number is 99. To sum up all odd numbers up to 99 is calculated by 

(7)   Equation

The sum of all odd numbers from 100 to 200 is then given by 10000 – 2500 = 7500.

New Tricks?

Write them in the comments below! Any valuable tips and tricks will be added to this list.