All topics

s4.1.2

Multiplying Three-Digit Number by Three-Digit Number

1,000 questions

This is an extension of the previous section and the procedure is the same but requires a little more multiplication and bookkeeping. Let n1=abcn_1 = abc and n2=defn_2 = def, where a, b, c, d, e, f are digits. You’ll want to do the groups of n1n_1 as aa and bcbc and n2n_2 as dd and efef and perform the FOIL/LOIFing.

abc=100a+(bc)abc = 100a + (bc) and def=100d+(ef)def = 100d + (ef)

[100a+(bc)]×[100d+(ef)]=10000ad+100[a(ef)+d(bc)]+(bc)(ef)[100a + (bc)] \times [100d + (ef)] = 10000ad + 100[a(ef) + d(bc)] + (bc)(ef)

This shows us that:

  1. Again, the ones and tens digit of the answer is simply the last two digits when performing the multiplication of the groups of bc and ef.
  2. Again, carries are common, so keep track!
Practise this