Back to ShikshaPal Explainer Class 8 / Math
ShikshaPal
Chapter 6 · Algebra

We Distribute, Yet Things Multiply

The Distributive Property and the Power of Algebra to Show How Products Change.

Everyday Mystery

What Happens When Numbers Grow?

Consider the product 23 × 27 = 621.

Now increase BOTH numbers by 1: (23+1) × (27+1) = 24 × 28 = 672.

By how much did the product increase? 672 − 621 = 51.

But here's the puzzle: Can you predict this increase WITHOUT multiplying? Can you find a PATTERN?

Try other pairs. Increase both by 1 and see if there's a formula that always works.

  • 10 × 20 = 200; (10+1)(20+1) = 11 × 21 = 231. Increase: 31.
  • 5 × 8 = 40; (5+1)(8+1) = 6 × 9 = 54. Increase: 14.

What's the hidden pattern? Can algebra reveal it?

Feynman Bridge — Think of it this way…

Imagine a rectangle made of smaller rectangles:

  • A big rectangle of length (a) and width (b) has area ab.
  • Add a strip of width (c) to make (a+c). The new area is a(b+c) = ab + ac.

This is the DISTRIBUTIVE PROPERTY: You're "distributing" the multiplication across addition.

When you have (a+1)(b+1), you can split it into FOUR regions:

(a+1)(b+1) = a×b (main rectangle) + a×1 (right strip) + 1×b (top strip) + 1×1 (corner square) = ab + a + b + 1

The increase from ab to ab+a+b+1 is exactly a+b+1. That's our pattern!

The Distributive Property (Base Identity)

The foundation of all algebra:

a(b + c) = ab + ac

This says: "multiplying by a, then distributing it into the addition."

Example: 5(3 + 2) = 5×3 + 5×2 = 15 + 10 = 25 ✓

Two-Term Expansion (Identity 1)

When multiplying two binomials:

(a + m)(b + n) = ab + mb + an + mn

Each term in the first bracket multiplies EVERY term in the second bracket.

Example: (3+2)(5+4) = 3×5 + 3×4 + 2×5 + 2×4 = 15 + 12 + 10 + 8 = 45

Deep Dive · Common Error Trap

Wrong: (a+b)(c+d) = ac + bd (missing terms!)

Right: (a+b)(c+d) = ac + ad + bc + bd (ALL four combinations)

Think of a grid with 4 rectangles, not 2 diagonal ones.

Special Case — Perfect Square (a+b)²

When both binomials are identical:

(a+b)² = a² + 2ab + b²

This comes from (a+b)(a+b) = a² + ab + ba + b² = a² + 2ab + b².

The area of a square with side (a+b) splits into: one a×a square, one b×b square, and TWO a×b rectangles!

Deep Dive · Why the "2ab" Appears

Many students forget the 2. Here's why it matters: (a+b)² means we count the a×b rectangle TWICE (once as a×b, once as b×a). So it's 2ab, not ab!

Example: (3+2)² = 9 + 12 + 4 = 25. Check: 5² = 25 ✓. The 12 = 2(3)(2) accounts for both side rectangles.

Perfect Difference of Squares (a−b)²

For subtraction, the pattern is:

(a−b)² = a² − 2ab + b²

The SIGN of the middle term flips from + to −, but the coefficient stays 2.

Geometrically: Start with a²; subtract two a×b rectangles; add back b² (because we subtracted it twice).

Difference of Squares (a+b)(a−b) = a² − b²

This is magical:

(a+b)(a−b) = a² − b²

The "middle" terms cancel: (a+b)(a−b) = a² − ab + ab − b² = a² − b².

This makes calculations FAST: 102 × 98 = (100+2)(100−2) = 100² − 2² = 10000 − 4 = 9996!

Deep Dive · Common Error Trap

Wrong: (a+b)² = a² + b² (forgetting the 2ab term entirely!)

Wrong: (a−b)² = a² − b² (confusing it with difference of squares)

Right: (a+b)² = a² + 2ab + b²; (a−b)² = a² − 2ab + b²; (a+b)(a−b) = a² − b²

Real-World Application — Multiplication Shortcuts

Using distributivity, we can multiply by 11 or 101 in our heads:

Multiply by 11: 47 × 11 = 47 × (10+1) = 470 + 47 = 517

Multiply by 101: 35 × 101 = 35 × (100+1) = 3500 + 35 = 3535

The pattern: digits "shift and repeat" because of how distribution works!

Deep Dive · Brahmagupta's Fast Multiplication

In 628 CE, Brahmagupta described khaṇḍa-guṇanam ("multiplication by parts"), using distributivity to compute products quickly. His insight: break numbers smartly to use identities like a² − b².

Example: 68² = (70−2)² = 4900 − 280 + 4 = 4624. Much faster than computing 68 × 68 directly!

Patterns in Multiple Viewpoints

The same pattern can be expressed in MANY ways. For example, counting dots in a L-shaped figure:

Method A: k² + 2k

Method B: (k+1)² − 1

Method C: k(k+2)

All three are IDENTICAL when expanded, even though they "look" different. Algebra lets us see they're the same!

Mistakes and Mindfulness

Common algebraic errors when expanding:

  • Forgetting terms: (a+b)(c+d) has 4 terms, not 2.
  • Sign errors: (−a)(−b) = +ab, not −ab.
  • Like terms: Only combine ab + ab = 2ab if they have exactly the same variables and powers.

Always double-check by expanding a second way or testing with numbers.

Socratic Sandbox — Test Your Thinking

Level 1 · Predict

Question 1: Expand (x+5)². What is the result?

Reveal Hint

Use (a+b)² = a² + 2ab + b² with a = x and b = 5.

Reveal Answer

x² + 10x + 25. We have a² = x², 2ab = 2(x)(5) = 10x, and b² = 25.

Level 1 · Predict

Question 2: What is 104 × 96 using the identity (a+b)(a−b) = a² − b²?

Reveal Hint

Rewrite as (100+4)(100−4).

Reveal Answer

9984. 104 × 96 = (100+4)(100−4) = 100² − 4² = 10000 − 16 = 9984.

Level 1 · Predict

Question 3: Expand (2m−3n)². What is the result?

Reveal Hint

Use (a−b)² = a² − 2ab + b² with a = 2m and b = 3n.

Reveal Answer

4m² − 12mn + 9n². We have a² = 4m², 2ab = 2(2m)(3n) = 12mn, and b² = 9n².

Level 2 · Why

Question 4: Why does (a+1)(b+1) = ab + a + b + 1? Explain using a geometric picture.

Reveal Hint

Divide a rectangle into 4 smaller parts.

Reveal Answer

Picture a rectangle with length (a+1) and width (b+1). Split it into 4 parts: the main a×b rectangle (area ab), a 1×b top strip (area b), an a×1 right strip (area a), and a 1×1 corner square (area 1). Total: ab + a + b + 1.

Level 2 · Why

Question 5: Why is the coefficient of the middle term in (a+b)² always "2"? Why not "1" or something else?

Reveal Hint

Expand (a+b)(a+b) step by step. How many times does the a×b product appear?

Reveal Answer

When expanding (a+b)(a+b), we get a² + ab + ab + b². The a×b product appears TWICE (once from a×b, once from b×a), so we get 2ab.

Level 2 · Why

Question 6: Explain why (a+b)(a−b) = a² − b² and why the middle terms "disappear."

Reveal Hint

Expand fully and look for cancellation.

Reveal Answer

(a+b)(a−b) = a² − ab + ab − b² = a² − b². The −ab and +ab cancel, leaving only the a² and −b² terms.

Level 3 · Apply

Question 7: Compute 47 × 11 using distributive property (without a calculator).

Reveal Hint

Write 11 as 10 + 1.

Reveal Answer

517. 47 × 11 = 47 × (10+1) = 470 + 47 = 517.

Level 3 · Apply

Question 8: A square garden has side length (x+3). What is its area? If x = 5, what is the actual area?

Reveal Hint

Area = (side)². Use (a+b)² formula. Then substitute x = 5.

Reveal Answer

Area = (x+3)² = x² + 6x + 9. When x = 5: 25 + 30 + 9 = 64 sq. units. (Or check: 8² = 64 ✓)

Level 3 · Apply

Question 9: Verify that (m+2)(m+5) = m² + 7m + 10 by testing with m = 3.

Reveal Hint

Left side: (3+2)(3+5). Right side: 9 + 21 + 10.

Reveal Answer

Left: 5 × 8 = 40. Right: 9 + 21 + 10 = 40 ✓. They match, so the expansion is correct.

Term / Concept
Algebraic Expression
tap to flip
A mathematical phrase containing variables, numbers, and operations (no equals sign). Example: 3x + 5
Term / Concept
Distributive Property
tap to flip
a(b + c) = ab + ac. Multiply the outside term by each term inside. Example: 2(x + 3) = 2x + 6
Term / Concept
Variable
tap to flip
A letter or symbol representing an unknown number. Commonly x, y, or other letters
Term / Concept
Coefficient
tap to flip
The number multiplying a variable. In 5x, the coefficient is 5
Term / Concept
Constant Term
tap to flip
A number in an expression that doesn't change (not attached to a variable). In 3x + 7, the constant is 7
Term / Concept
Like Terms
tap to flip
Terms with the same variable raised to the same power. 3x and 5x are like terms; 3x and 3y are not
Term / Concept
Simplify an Expression
tap to flip
Combine like terms and apply operations to write an expression in its simplest form
Term / Concept
Expand
tap to flip
Use the distributive property to remove parentheses and write out all terms
8 cards — click any card to flip
Expand: 3(x + 4)
  • A 3x + 4
  • B 3x + 12
  • C 3x + 7
  • D x + 12
Simplify: 5x + 3 + 2x - 1
  • A 7x + 2
  • B 7x + 4
  • C 10x
  • D 5x + 2x
What is the coefficient of x in the expression 7x - 5?
  • A -5
  • B 7
  • C 2
  • D x
Expand: 2(a - 3)
  • A 2a - 3
  • B 2a + 6
  • C 2a - 6
  • D a - 6
Which pair are like terms?
  • A 3x and 3y
  • B 5x² and 5x
  • C 4m and 9m
  • D 2a and 2b
0 / 5