Expand (a+b)ⁿ using binomial coefficients, find specific terms, and explore Pascal's Triangle.
C(n,k) = n! / (k!(n−k)!) = (n·(n−1)·…·(n−k+1)) / k!
The binomial theorem states: (a+b)ⁿ = Σ C(n,k)·aⁿ⁻ᵏ·bᵏ for k from 0 to n.
Each coefficient C(n,k) counts the number of ways to choose k items from n — also written as ⁿCₖ or (n choose k).
The multiplicative formula C(n,k) = n·(n−1)·…·(n−k+1) / k! avoids computing large factorials directly and works cleanly for n ≤ 20.
Row n of Pascal's Triangle gives exactly C(n,0), C(n,1), …, C(n,n) — the coefficients of the expansion of (x+1)ⁿ.
(x+1)ⁿ → coefficients are Pascal's row n directly
(x+1)ⁿ: Since b=1, every b^k = 1. The expansion is C(n,0)xⁿ + C(n,1)xⁿ⁻¹ + … + C(n,n) — just the binomial coefficients as plain numbers.
(x−1)ⁿ: The signs alternate: +, −, +, −, … because b^k = (−1)^k.
Approximation for small x: (1+x)ⁿ ≈ 1 + nx when |x| is very small. This comes from keeping only the first two terms of the expansion.
One-on-one Algebra 2 tutoring builds the intuition for choosing the right term and applying the formula confidently — we work through your actual homework and tests so it sticks.