All topics

s1.1

FOILing/LIOFing When Multiplying

1,000 questions

A fast multiplication method for two-digit numbers, abab and cdcd, is LIOFing (Last-Inner+Outer-First). This is derived from the algebraic expansion (10a+b)(10c+d)=100(ac)+10(ad+bc)+bd(10a + b)(10c + d) = 100(ac) + 10(ad + bc) + bd.

  • Last: The ones digit is b×db \times d.
  • Inner+Outer: The tens digit is (a×d)+(b×c)(a \times d) + (b \times c).
  • First: The hundreds digit is a×ca \times c.
  • Remember to handle carries at each step. For example, 74×2374 \times 23: Last is 4×3=124 \times 3 = 12 (write 2, carry 1). Inner+Outer is (7×3)+(2×4)+1carry=21+8+1=30(7 \times 3) + (2 \times 4) + 1_{carry} = 21 + 8 + 1 = 30 (write 0, carry 3). First is (7×2)+3carry=14+3=17(7 \times 2) + 3_{carry} = 14 + 3 = 17. The result is 1702.
Practise this