What is the Binomial Theorem?
The Binomial Theorem provides a systematic way to expand expressions of the form $(a+b)^n$ without multiplying the expression repeatedly.
Avoiding Manual Multiplication
Expanding $(a+b)^2 = a^2 + 2ab + b^2$ is simple. But for higher powers like $(a+b)^{10}$, manual multiplication is impractical. The Binomial Theorem gives direct formulas for coefficients and individual terms!
Binomial Theorem is an important Modern Math topic that appears in CAT, XAT, NMAT, SNAP, and other aptitude exams. It is commonly tested through expansion rules, specific term coefficients, middle term calculations, and pattern recognition.
Connected Vault Modules:
Every expansion coefficient is a combination choice $\binom{n}{r}$.
When exponent $n$ is even, there is exactly 1 middle term.
When exponent $n$ is odd, there are 2 middle terms.
Expansion of $(a+b)^n$ always contains $n + 1$ terms.
Expanding a Basic Binomial Expression
Q: Expand $(a + b)^3$.
Step 1: Coefficients for $n = 3$ from Pascal's Triangle are 1, 3, 3, 1.
Step 2: Apply theorem: $(a+b)^3 = \binom{3}{0}a^3b^0 + \binom{3}{1}a^2b^1 + \binom{3}{2}a^1b^2 + \binom{3}{3}a^0b^3$.
=$a^3 + 3a^2b + 3ab^2 + b^3$
Finding Coefficient of a Specific Term
Q: Find the coefficient of $x^3$ in $(x + 1)^5$.
Step 1: General term $T_{r+1} = \binom{5}{r} x^{5-r} (1)^r$.
Step 2: For term involving $x^3$, set $5 - r = 3 \implies r = 2$.
Step 3: Calculate coefficient $\binom{5}{2} = \frac{5 \times 4}{2 \times 1} = \mathbf{10}$.
Finding the Middle Term of an Expansion
Q: Find the middle term of $(x + y)^8$.
Step 1: Exponent $n = 8$ is even, so there is 1 middle term at position $8/2 + 1 = \mathbf{5\text{th term}}$.
Step 2: For $T_5$, $r = 4$.
Step 3: Calculate $T_5 = \binom{8}{4} x^{8-4} y^4 = \binom{8}{4} x^4 y^4$.
$$\binom{8}{4} = \frac{8 \times 7 \times 6 \times 5}{4 \times 3 \times 2 \times 1} = 70 \implies \mathbf{70 x^4 y^4}$$
❌ Trap 1: Off-by-One $r$ Value
For T_5, r = 4 (not 5)
The $(r+1)$-th term corresponds to $r$. For the 5th term $T_5$, always use $r = 4$!
❌ Trap 2: Permutations vs Combinations
P(n,r) ≠ C(n,r)
Binomial coefficients ALWAYS use combinations $\binom{n}{r}$, never permutations $^nP_r$!
❌ Trap 3: Power Direction
a decreases, b increases
The power of first variable $a$ decreases from $n$ to $0$, while second variable $b$ increases from $0$ to $n$.
❌ Trap 4: Wrong Middle Position
Check if $n$ is even or odd
Even $n$ gives 1 middle term at $(n/2)+1$. Odd $n$ gives 2 middle terms at $(n+1)/2$ and $(n+3)/2$.
⚡ Pascal's Triangle Coefficient Recognition
Memorize expansion rows up to $n=5$. Writing coefficients directly from Pascal's triangle saves calculation time!
⚡ Direct General Term Extraction
Never expand the entire expression when only a coefficient is asked. Solve for $r$ using powers and calculate $T_{r+1}$ directly!
Question 1:
Expand $(a + b)^4$.
Solution: Pascal coefficients for $n=4$ are 1, 4, 6, 4, 1.
= a^4 + 4a^3b + 6a^2b^2 + 4ab^3 + b^4.
Question 2:
Find the coefficient of $x^2$ in $(x + 1)^6$.
Solution: General term $T_{r+1} = \binom{6}{r} x^{6-r}$.
Set $6 - r = 2 \rArr r = 4$. Coefficient = \binom{6}{4} = \binom{6}{2} = \frac{6 × 5}{2} = 15.
Question 3:
Find the 6th term of $(2 + x)^9$.
Solution: For 6th term $T_6$, $r = 5$.
T_6 = \binom{9}{5} (2)^{9-5} x^5 = \binom{9}{4} (2^4) x^5 = 126 × 16 x^5 = 2016 x^5.
Q: Do I need to memorize Pascal's Triangle?
It is helpful up to about the 5th or 6th row, as it speeds up coefficient-based questions without calculating factorials.
Q: Is the Binomial Theorem based on combinations?
Yes. Every coefficient in the expansion is a combination $\binom{n}{r}$, representing the number of ways to pick $r$ terms out of $n$.
Q: Do CAT and MBA CET ask for full expansions?
Usually not. They more commonly ask for a specific term, coefficient, middle term, or remainder application.