Mental math tricks

From FMNWiki
Jump to: navigation, search

So, you want to do math in your head, and be fast about it? It takes practice, practice, practice, and a decent amount of memorization, but it can be worth it.

Contents

Memorize

Memorize your multiplication tables as high as you can manage--that will help. If you only memorize the table from 0 to 9, you can use these tricks.

If you want to know why these work, I may put that up later, but the proofs are trivial for the most part.

Finding Squares

Method 1

Works for x2 when x between 11 and 99

Steps:

  1. Take the original number, and add the second digit to it.
  2. Multiply the result by the first digit (of the original).
  3. Multiply the result by 10.
  4. Square the second digit.
  5. Add these numbers together.

Example 1: 142

14 + 4 = 18
1\times18=18
18\times10=180
42 = 16
180 + 16 = 196

Example 2: 372

37 + 7 = 44
3\times44=132 (because the original number began with 3, that's what's used instead of 4)
132\times10=1320
72 = 49
1320 + 49 = 1369

Method 2

Works for numbers ending in '5'

Steps:

  1. Take the number preceding the 5 and multiply by itself plus one
  2. \times e.g. if original number is 35, multiply 3\times4
  3. \times if original number is 465, multiply 46\times47
  4. Multiply result by 100, and add 25 (i.e. append '25' to the result)

Example 1: 352

3\times4=12
12\times10+25=1225
 or
'12'+'25'=1225

Example 2: 4652

46\times47=46^2+46=2116+46=2162 (use method 1 to help with method 2)
2162\times100+25=216225
 or
'2162'+'25'=216225

Method 3

Works when number to be squared is \pm1 from a known square

Steps:

  1. Call the known number x2
  2. Double x
  3. If desired square is
    1. (x + 1)2, add it to x2;
    2. (x − 1)2, subtract it from x2
  4. Add one to the result

Example 1:362

We determined above that 352 = 1225
2\times35=70
1225 + 70 = 1295
1295 + 1 = 1296

Example 2:342

We determined above that 352 = 1225
2\times35=70
1225 − 70 = 1155
1155 + 1 = 1156

Multiplication

Method 1

Works when x and y are between 11 and 99

Steps:

  1. Multiply second digits of each number
  2. "Cross multiply" numbers and add
    1. Multiply first digit of first number by second digit of second number
    2. Multiply second digit of first number by first digit of second number
    3. Add these two
  3. Multiply first digits of each number
  4. Combine

Example 1: 14\times32

  14
× 32
----

4\times2=8
1\times2+4\times3=14
1\times3+1=4 (the extra 1 is carried from the previous step)
'4'+'4'+'8'=448 (combine by concatenating the last digit of results from the bottom up)

Example 2: 73\times81

  73
× 81
----

3\times1=3
7\times1+3\times8=31
7\times8+3=59
'59'+'1'+'3'=5913

Method 2

Works for two digit numbers when the first digits are the same and the second digits add up to 10

Steps:

  1. Multiply first digit x by x + 1
  2. Multiply second digits with each other
  3. Multiply first result by 100, add second result


Example 1: 87\times83

8\times9=72
7\times3=21
72\times100+21=7221

Example 2: 34\times36

3\times4=12
4\times6=24
12\times100+24=1224
Personal tools