Expansion
The expansion of (a+b)ⁿ for a positive integer n is the sum nC0·aⁿ + nC1·a^(n−1)·b + nC2·a^(n−2)·b² + … + nCn·bⁿ. Three things stay constant and are worth burning in: there are exactly (n+1) terms; the power of a falls from n to 0 while the power of b climbs from 0 to n, so the two exponents in every term add up to n; and the coefficients are the binomial coefficients, which are symmetric (nCr = nC(n−r)) — the row reads the same forwards and backwards. For small n you can lift the coefficients straight from Pascal’s triangle, but the nCr formula scales to any n. A frequent CAT subtlety: (a−b)ⁿ has the same magnitudes but alternating signs (+,−,+,−…), so the odd-position terms flip. Always read off n correctly before you start.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Expansion & general term
| Binomial expansion | (a+b)ⁿ = Σ nCr · a^(n−r) · b^r, r = 0…n |
|---|---|
| General term | T(r+1) = nCr · a^(n−r) · b^r |
| Number of terms | (a+b)ⁿ has (n+1) terms |
| Binomial coefficient | nCr = n! / [r!(n−r)!] |
| Symmetry of coefficients | nCr = nC(n−r) |
Middle term, sums & special cases
| Middle term (n even) | single term T(n/2 + 1) |
|---|---|
| Middle terms (n odd) | two terms T((n+1)/2) and T((n+3)/2) |
| Sum of all coefficients | put each variable = 1 ⇒ (sum of bases)ⁿ |
| Sum of binomial coefficients | nC0 + nC1 + … + nCn = 2ⁿ |
| Greatest coefficient | the middle coefficient: nC(n/2) (n even) |