You look at (a + b)^2 and the eye slides to a^2 + b^2. It seems fair: the exponent 2 applies to the whole bracket, and multiplication distributes over addition, so why not exponentiation?
The two expressions are not equal. The correct expansion is:
The missing term is 2ab, and it is not a small correction. For a = 3 and b = 4, (3 + 4)^2 = 49, but 3^2 + 4^2 = 9 + 16 = 25. The gap is 24, which is exactly 2ab = 2 \cdot 3 \cdot 4.
The question is why exponentiation does not distribute. The answer is that exponentiation is not multiplication — it is repeated multiplication — and the "distributive" law for multiplication does not extend to iterated multiplication.
The area picture — where 2ab comes from
Here is the argument that should make the identity obvious and unforgettable.
Draw a square with side (a + b). Its area is (a + b)^2 — that is what "squared" means for a length. Now slice the square into four pieces by running one vertical line and one horizontal line at position a along the sides. The four pieces are:
- an a \times a square, area a^2;
- a b \times b square, area b^2;
- an a \times b rectangle, area ab;
- another a \times b rectangle, area ab.
The total area of the big square is the sum of the four pieces:
The 2ab term is not a correction. It is the area of the two rectangles that have to exist when you draw the square, because the corners of an (a+b) \times (a+b) square are only a^2 and b^2 — the edges between them are where the ab rectangles live.
The algebra, done slowly
If geometry is not your thing, here is the purely symbolic argument. (a + b)^2 is (a + b) multiplied by itself:
Use the distributive law on the second bracket:
Why the distributive law applies here: multiplication does distribute over addition. That is the rule x(y+z) = xy + xz, which is one of the axioms from Operations and Properties. The claim that exponentiation distributes is a different (and false) claim.
Now expand each term with the distributive law again:
Put the four pieces together:
The two middle terms are ba and ab, which are equal (multiplication is commutative), and they sum to 2ab.
Why the "distribute the exponent" instinct is wrong
The rule that sometimes gets called "the distributive law for multiplication" is:
This multiplies the outside factor into each term of the sum. The analogous-looking rule
would exponentiate each term of the sum. It sounds like the same pattern but it is not. The actual rules for exponents are:
- (xy)^n = x^n y^n — exponents distribute over multiplication. ✓
- (y + z)^n \ne y^n + z^n in general — exponents do not distribute over addition. ✗
The reason for the asymmetry is that (xy)^n is a product of n copies of xy, and the xs and ys can be sorted (commutativity) into a block of xs and a block of ys, giving x^n y^n. But (y+z)^n is a product of n copies of (y+z) — a sum, not a product — and you cannot sort sums apart. Expanding the product creates all possible ways to pick "either y or z" from each of the n copies, which is why cross-terms appear.
The pattern for higher exponents
The identity for the square is the easy one. The cube has more cross-terms, and the fourth power has more still.
The coefficients (1, 2, 1), (1, 3, 3, 1), (1, 4, 6, 4, 1) are the rows of Pascal's triangle. The Binomial Theorem is the generalisation of (a+b)^2 = a^2 + 2ab + b^2 to arbitrary exponents:
The only case where the sum collapses to a^n + b^n is the trivial n = 1:
For every higher integer exponent, there are cross-terms. The cross-terms are the default. Zero cross-terms is the exception, and it only happens at the exponent 1.
A numerical sanity check
Pick concrete numbers and verify the identity:
- a = 3, b = 4: (3 + 4)^2 = 49; 3^2 + 2 \cdot 3 \cdot 4 + 4^2 = 9 + 24 + 16 = 49. ✓
- a = 5, b = 2: (5 + 2)^2 = 49; 5^2 + 2 \cdot 5 \cdot 2 + 2^2 = 25 + 20 + 4 = 49. ✓
- a = 10, b = 1: (10 + 1)^2 = 121; 10^2 + 2 \cdot 10 \cdot 1 + 1^2 = 100 + 20 + 1 = 121. ✓
Notice the pattern: the "wrong" answer a^2 + b^2 always undercounts the true (a+b)^2 by exactly 2ab. For a = b, the undercount equals 2a^2, which is a huge fraction of the total.
The reflex
Whenever you see (\text{sum})^n, never collapse the exponent into the terms. Either:
- Expand fully using the distributive law or the binomial theorem, accepting the cross-terms; or
- Write it as \text{sum}^n and leave it alone, treating it as a single composite expression.
The one thing you may not do is write (a+b)^2 = a^2 + b^2. It is always wrong (for a, b \ne 0). The identity (a+b)^2 = a^2 + 2ab + b^2 is one of the three algebraic identities that you should have in your head as reflex — right next to (a-b)^2 = a^2 - 2ab + b^2 and (a+b)(a-b) = a^2 - b^2.
Related: Exponents and Powers · Tile-View Proof of the Three Core Exponent Laws · Is 2⁻³ Really Negative Eight? The Sign-on-the-Answer Trap · Why a⁰ = 1: The Halving Staircase That Forces the Answer