7.1

Pascal's Triangle & Binomial Coefficients

📌 What is a Binomial?

An expression with two terms connected by + or − is a binomial, e.g. (a + b), (x − y). The Binomial Theorem gives a quick method to expand (a + b)ⁿ for any positive integer n without repeated multiplication.

📌 Key Observations in Binomial Expansion

(i) Total number of terms in (a + b)ⁿ = n + 1
(ii) Powers of 'a' decrease by 1 each term; powers of 'b' increase by 1.
(iii) In every term, sum of indices of a and b = n.
(iv) Coefficients follow Pascal's Triangle pattern.

🔺 Pascal's Triangle (Coefficients)

Index 01
Index 111
Index 2121
Index 31331
Index 414641
Index 515101051
🧮 Binomial Coefficients using ⁿCᵣ
Row for index n:  ⁿC₀, ⁿC₁, ⁿC₂, ..., ⁿCₙ
Example (index 4):  ⁴C₀=1, ⁴C₁=4, ⁴C₂=6, ⁴C₃=4, ⁴C₄=1
Each element = sum of two elements directly above it.
🖼️
Insert Image Here: Pascal's Triangle diagram (Fig 7.2 from NCERT) showing the triangular array with ⁿCᵣ notation

🎯 Practice MCQs

Q1. How many terms are there in the expansion of (a + b)¹⁰?
Answer: C) 11
Number of terms in (a + b)ⁿ = n + 1 = 10 + 1 = 11.
Q2. In the expansion of (x + y)⁵ using Pascal's Triangle, what is the coefficient of x³y²?
Answer: B) 10
Row for index 5: 1, 5, 10, 10, 5, 1. Coefficient of x³y² (r=2) = ⁵C₂ = 10.
Q3. What is the value of ⁷C₀ + ⁷C₁ + ⁷C₂ + ... + ⁷C₇?
Answer: B) 128
Sum of binomial coefficients = 2ⁿ = 2⁷ = 128.
Advertisement
7.2

Binomial Theorem — General Statement

📌 The Binomial Theorem (Positive Integer n)

For any positive integer n and any real numbers a and b:

🧮 Binomial Theorem Formula
(a + b)ⁿ = ⁿC₀ aⁿ + ⁿC₁ aⁿ⁻¹b + ⁿC₂ aⁿ⁻²b² + ... + ⁿCₙ bⁿ

Compact form:  (a + b)ⁿ = Σ ⁿCₖ aⁿ⁻ᵏ bᵏ  (k = 0 to n)

Proved by Principle of Mathematical Induction

📌 Worked Example: (x + 2)⁶

(x + 2)⁶ = ⁶C₀x⁶ + ⁶C₁x⁵·2 + ⁶C₂x⁴·4 + ⁶C₃x³·8 + ⁶C₄x²·16 + ⁶C₅x·32 + ⁶C₆·64
= x⁶ + 12x⁵ + 60x⁴ + 160x³ + 240x² + 192x + 64

🖼️
Insert Image Here: Step-by-step expansion of (a + b)⁷ = ⁷C₀a⁷ + ⁷C₁a⁶b + ... showing decreasing powers of a and increasing powers of b

🎯 Practice MCQs

Q4. Using Binomial Theorem, compute (98)³. [Hint: write 98 = 100 − 2]
Answer: A) 941192
(100−2)³ = 100³ − 3·100²·2 + 3·100·4 − 8
= 1000000 − 60000 + 1200 − 8 = 941192.
Q5. The coefficient of x⁴ in the expansion of (x + 3)⁷ is:
Answer: B) 2835
Term with x⁴: r = 3, so ⁷C₃ · x⁴ · 3³ = 35 × 27 = 945.
Wait — ⁷C₃ · (3)³ = 35 × 27 = 945. Answer is A) 945.
Q6. In the expansion of (1 + x)²⁰, the sum of all binomial coefficients equals:
Answer: B) 2²⁰
Putting x = 1 in (1+x)²⁰: Sum = 2²⁰ = 1048576.
Advertisement
7.3

Special Cases of Binomial Theorem

📌 Case 1: (x − y)ⁿ

Replace b with (−y):
(x − y)ⁿ = ⁿC₀xⁿ − ⁿC₁xⁿ⁻¹y + ⁿC₂xⁿ⁻²y² − ... + (−1)ⁿ ⁿCₙ yⁿ
Signs alternate: +, −, +, −, ... The r-th term has factor (−1)ʳ.

📌 Case 2: (1 + x)ⁿ

Put a = 1, b = x:
(1 + x)ⁿ = ⁿC₀ + ⁿC₁x + ⁿC₂x² + ... + ⁿCₙxⁿ
Special: x = 1 → 2ⁿ = ⁿC₀ + ⁿC₁ + ⁿC₂ + ... + ⁿCₙ

📌 Case 3: (1 − x)ⁿ

Put a = 1, b = −x:
(1 − x)ⁿ = ⁿC₀ − ⁿC₁x + ⁿC₂x² − ... + (−1)ⁿ ⁿCₙxⁿ
Special: x = 1 → 0 = ⁿC₀ − ⁿC₁ + ⁿC₂ − ... + (−1)ⁿ ⁿCₙ

🧮 Quick Results Summary
Sum of all coefficients (alternate signs = 0): ⁿC₀ − ⁿC₁ + ⁿC₂ − ... = 0
Sum of all coefficients (all positive = 2ⁿ): ⁿC₀ + ⁿC₁ + ... + ⁿCₙ = 2ⁿ
Result: 6ⁿ − 5n − 1 is always divisible by 25
🖼️
Insert Image Here: Side-by-side comparison of (a+b)ⁿ and (a−b)ⁿ expansions showing the alternating sign pattern

🎯 Practice MCQs

Q7. Using Binomial Theorem, find the value of (1.01)⁵ approximately (use first 3 terms only).
Answer: C) 1.0510
(1+0.01)⁵ ≈ 1 + 5(0.01) + 10(0.01)² = 1 + 0.05 + 0.001 = 1.051 ≈ 1.0510.
Q8. The value of ⁿC₀ − ⁿC₁ + ⁿC₂ − ⁿC₃ + ... for n = 6 equals:
Answer: D) 0
This is (1−1)⁶ = 0. Alternating sum of binomial coefficients is always 0.
Q9. What is the remainder when 6ⁿ − 5n is divided by 25?
Answer: C) 1
6ⁿ = (1+5)ⁿ = 1 + 5n + 25(ⁿC₂ + 5ⁿC₃ + ...)
∴ 6ⁿ − 5n = 1 + 25k. Remainder when divided by 25 = 1.
Advertisement
7.4

General Term & Applications

🧮 General Term (r+1)th Term
Tᵣ₊₁ = ⁿCᵣ · aⁿ⁻ʳ · bʳ

For (a + b)ⁿ: r = 0, 1, 2, ..., n
For (x − y)ⁿ: include (−1)ʳ → Tᵣ₊₁ = ⁿCᵣ · xⁿ⁻ʳ · (−y)ʳ

Middle term:
 • If n is even → T(n/2)+1
 • If n is odd → T(n+1)/2 and T(n+3)/2

📌 Finding a Specific Term

To find the term independent of x (constant term) in an expansion: write out general term Tᵣ₊₁, collect powers of x, set power = 0 and solve for r. Then substitute r back to get the value.

📌 Approximation Using Binomial Theorem

For small x, (1 + x)ⁿ ≈ 1 + nx (first two terms only). This is useful for approximating expressions like (0.99)⁵, (1.01)⁴ etc. without a calculator — a key skill for AAI ATC aptitude.

🖼️
Insert Image Here: Table showing the (r+1)th general term structure — index, coefficient ⁿCᵣ, power of a, power of b, with a worked example for (2x + 3y)⁵

🎯 Practice MCQs

Q10. Find the 4th term in the expansion of (x + 2)⁸.
Answer: A) 448 x⁵
T₄ = T₃₊₁, r = 3: ⁸C₃ · x⁸⁻³ · 2³ = 56 × x⁵ × 8 = 448 x⁵.
Q11. In the expansion of (x + 1/x)⁶, the term independent of x (constant term) is:
Answer: B) 20
Tᵣ₊₁ = ⁶Cᵣ · x⁶⁻ʳ · x⁻ʳ = ⁶Cᵣ · x⁶⁻²ʳ.
For constant term: 6 − 2r = 0 → r = 3.
T₄ = ⁶C₃ = 20.
Q12. Using Binomial Theorem, approximate (0.99)⁵ using first three terms.
Answer: A) 0.9510
(1−0.01)⁵ ≈ 1 − 5(0.01) + 10(0.01)²
= 1 − 0.05 + 0.001 = 0.951 ≈ 0.9510.
Advertisement

📚 Chapter Summary — Binomial Theorem

Binomial Theorem: (a+b)ⁿ = Σ ⁿCₖ aⁿ⁻ᵏ bᵏ for positive integer n
Number of terms in expansion = n + 1
Sum of all indices of a and b in each term = n
Binomial coefficients = ⁿCᵣ, arranged in Pascal's Triangle
Sum of all coefficients: ⁿC₀ + ⁿC₁ + ... + ⁿCₙ = 2ⁿ
Alternating sum: ⁿC₀ − ⁿC₁ + ⁿC₂ − ... = 0
General Term: Tᵣ₊₁ = ⁿCᵣ · aⁿ⁻ʳ · bʳ
For approximation: (1 + x)ⁿ ≈ 1 + nx (for small x)
6ⁿ − 5n always leaves remainder 1 when divided by 25
Pascal's Triangle also called Meru-Prastara (by Pingla, 200 BC)

🚀 Crack AAI ATC with Aviate Learnings!

Watch full video lectures, attempt more worksheets, and get your doubts solved live.