By the end of this chapter you'll be able to…

  • 1Construct Pascal's triangle and state its entries as binomial coefficients nCr
  • 2State the Binomial Theorem and reproduce its proof by mathematical induction, using Pascal's identity for the inductive step
  • 3Expand (a+b)^n, (x-y)^n, (1+x)^n and (1-x)^n for a positive integer n
  • 4Use the x=1 substitution to find the sum of binomial coefficients, and split that sum into its even-position and odd-position halves
  • 5Apply the theorem to compute large powers exactly, approximate values using the first few terms, and prove divisibility-remainder statements
💡
Why this chapter matters
The Binomial Theorem turns an unwieldy repeated multiplication like (98)^5 into a six-term sum computed exactly by hand, and its proof by induction reuses Pascal's identity from the previous chapter directly. It is the shortest chapter in the book, but the general term and middle term formulas most coaching material treats as its centrepiece are formally formative-only here, not summative.

Binomial Theorem

1. Check this before you revise anything

The general term and middle term formulas — the tools coaching material leans on hardest for this chapter — are formally listed by CBSE as formative-only, not summative. The curriculum's dropped-topics block states plainly, under Binomial Theorem: "General and middle term in binomial expansion." The main course structure lists only: "Historical perspective, statement and proof of the binomial theorem for positive integral indices. Pascal's triangle, simple applications."

The current 2026-27 book matches this precisely. It has no section on finding a specific term, no "middle term" heading, and no second exercise. Its one and only exercise is Exercise 7.1, followed by a six-question Miscellaneous Exercise.

One thing this chapter does better than several of its neighbours: it doesn't just state the theorem, it proves it. Section 7.2 walks through a full induction proof, base case through inductive step, and that proof leans on Pascal's identity () — the exact identity the Permutations and Combinations chapter derived. If a "prove the binomial theorem" question shows up, that's genuinely summative content, not an overreach.


2. What this chapter covers

Textbook sectionTopic
7.1Introduction — why repeated multiplication breaks down for large powers
7.2Binomial Theorem for positive integral indices: statement, induction proof, Pascal's triangle, special cases
Exercise 7.1Expanding binomials; evaluating large powers via the theorem; proof-style questions
Miscellaneous ExerciseMixed expansion, approximation, and divisibility problems

3. Pascal's triangle

Writing out through by direct multiplication and lining up their coefficients produces a triangular array, where every interior entry is the sum of the two entries directly above it:

Row (counting the top row as row 0) gives the coefficients of . Once combinations are available, every entry in row is just for — row 7, for instance, is , with no need to write out rows 0 through 6 first to get there.

Worked, mirroring the textbook's own construction. To expand : row 5 of Pascal's triangle is . Applying these as coefficients, with the power of falling from 5 to 0 while the power of rises from 0 to 5: .


4. The Binomial Theorem

For any positive integer :

Proof sketch (by the principle of mathematical induction), matching the book's own argument. For : , true. Assume the statement holds for some . Multiplying both sides by and grouping like powers, each new coefficient becomes a sum of two consecutive coefficients from the -th row: .

By Pascal's identity, this equals exactly, which is what the -th row requires. Since the base case holds and each case implies the next, the theorem holds for every positive integer .

Five observations worth holding onto, all direct consequences of the formula:

  • The expansion has exactly terms.
  • The power of falls from to ; the power of rises from to ; every term's two exponents add to .
  • The coefficients are called binomial coefficients, and always bookends the row.

Worked, mirroring the textbook's own illustration. Expanding : .


5. Special cases

Taking gives an alternating-sign version: .

Taking gives: . Substituting : — the sum of every binomial coefficient in row .

Taking gives: . Substituting : — the alternating sum vanishes.

A corollary the book sets up but doesn't spell out by name: adding and subtracting those last two identities separates row into its even- and odd-position coefficients. Adding them cancels every odd-position term, leaving ; subtracting cancels every even-position term instead. Either way, sum of even-position coefficients = sum of odd-position coefficients = .


6. Worked applications

Mirroring the textbook's own Example 1. Expand , : .

Mirroring the textbook's own Example 2 — using the theorem to compute a large power exactly, no calculator needed. Compute by writing : .

Mirroring the textbook's own Example 4 — a divisibility proof built entirely from the special case. Prove always leaves remainder 1 on division by 25. Write , so for some natural number . Since , dividing by 25 always leaves remainder 1.

This last technique — isolate the first two terms of explicitly and bound or discard the rest — is the same move behind comparing against 10,000: since every term beyond the first two is positive, , without ever expanding the full sum.


Summary

  • , proved by induction using Pascal's identity ; the expansion always has terms.
  • Pascal's triangle is the same coefficient array read a different way: row , entry , is .
  • alternates sign; at gives sum of all coefficients; at gives the alternating sum — combined, these show the even-position and odd-position coefficients each sum to .
  • Writing a number as a sum or difference of two easy-to-power values (like ) turns an unwieldy computation into a short binomial expansion.
  • Isolating the first two terms of , with the rest bounded or discarded, is the standard technique for large-power comparisons and divisibility-remainder proofs.
  • Finding a specific term via the general term formula, or a middle term, is formative-only in the current syllabus — it is not covered in this chapter's own content or exercises.

Key formulas & results

Everything you need to memorise, in one card. Screenshot this for revision.

Binomial Theorem
(a+b)^n = nC0.a^n + nC1.a^(n-1)b + nC2.a^(n-2)b^2 + ... + nCn.b^n = sum_(r=0)^n nCr.a^(n-r).b^r
Has exactly n+1 terms; proved by induction, with the inductive step using Pascal's identity nCr+nC(r-1)=(n+1)Cr
Pascal's triangle row-coefficient link
Row n, entry r, of Pascal's triangle = nCr
Lets any row be written directly from combinations, without building every earlier row first
Alternating-sign special case
(x-y)^n = nC0.x^n - nC1.x^(n-1)y + nC2.x^(n-2)y^2 - ... + (-1)^n.nCn.y^n
Obtained by substituting b=-y in the main theorem; signs alternate starting positive
(1+x)^n special case
(1+x)^n = nC0 + nC1.x + nC2.x^2 + ... + nCn.x^n
At x=1: 2^n = nC0+nC1+...+nCn, the sum of every binomial coefficient in row n
(1-x)^n special case
(1-x)^n = nC0 - nC1.x + nC2.x^2 - ... + (-1)^n.nCn.x^n
At x=1: 0 = nC0-nC1+nC2-..., the alternating sum of row n's coefficients
Even/odd coefficient split
nC0+nC2+nC4+... = nC1+nC3+nC5+... = 2^(n-1)
Add and subtract the two special-case identities above at x=1 to cancel the odd or even terms respectively
Exact large-power computation
Write the base as a sum/difference of two easy powers (e.g. 98=100-2), then expand with the theorem
Every term is exact — no rounding — since the theorem is an identity, not an approximation
⚠️

Common mistakes & fixes

These are the exact errors that cost students marks in board exams. Read them once, save yourself the trouble.

WATCH OUT
Expecting a 'find the 5th term' or 'find the middle term' question from this chapter
The general term and middle term formulas are formative-only in the current syllabus — this chapter's own content and its one exercise never ask for a specific term. That skill belongs to material outside this book, not to CBSE's summative assessment of it.
WATCH OUT
Dropping the alternating signs when expanding (x-y)^n
Every odd-r term is negative: nC0.x^n - nC1.x^(n-1)y + nC2.x^(n-2)y^2 - ... Write out the sign row (+,-,+,-,...) before substituting values, rather than trying to track it mentally.
WATCH OUT
Substituting x=1 into (1+x)^n but forgetting this only gives the sum of coefficients, not the value of the expansion at some other point the question actually asked for
The x=1 substitution is specifically for 'sum of coefficients' questions. If the question gives a different value of x, substitute that value instead — 2^n only applies at x=1.
WATCH OUT
Losing track of signs across many terms when writing a number as a difference and expanding, e.g. 98=100-2
List every term's sign explicitly before computing any arithmetic — with 5 or 6 terms and alternating signs, mental sign-tracking is where most errors creep in, not the multiplication itself.
WATCH OUT
Including too many or too few terms in an 'approximate using the first three terms' question
Count exactly as many terms as the question specifies, starting from nC0, and state clearly that the result is an approximation, not the exact value — the terms left out are what makes it approximate.
WATCH OUT
Stopping a divisibility proof once the expression is written as 25k+1 (or similar) without stating what that means
The algebra alone doesn't answer the question — finish with a sentence: 'since 6^n-5n=25k+1, dividing by 25 always leaves remainder 1,' connecting the algebraic form back to the word 'remainder'.
WATCH OUT
Treating the induction proof of the theorem as background material rather than examinable content
The syllabus explicitly lists 'statement and proof of the binomial theorem' — unlike the theorem's applications, the proof itself (base case, inductive step using Pascal's identity) can be asked for directly.

Practice problems

Work through this chapter's problems as a readiness check — reveal each solution, mark yourself honestly, and get your gap report at the end.

Readiness check

Are you exam-ready for Binomial Theorem?

9 problems from this chapter. Try each one, reveal the worked solution, mark yourself honestly — get your gap report at the end.

9 questions~6 min worth ~25 marks in Maharashtra (MSBSHSE) exams

5-minute revision

The whole chapter, distilled. Read this the night before the exam.

  • (a+b)^n = sum of nCr.a^(n-r).b^r for r=0 to n, proved by induction using Pascal's identity nCr+nC(r-1)=(n+1)Cr
  • Pascal's triangle row n, entry r, equals nCr — the same coefficients, a different way to read them off
  • (x-y)^n alternates sign; (1+x)^n at x=1 gives 2^n = sum of all coefficients; (1-x)^n at x=1 gives 0 = the alternating sum
  • Adding/subtracting those last two identities splits row n into even-position and odd-position halves, each summing to 2^(n-1)
  • Writing a number as a sum or difference of two easy-to-power values turns an unwieldy computation into an exact short expansion
  • Isolating the first two (or three) terms of (1+x)^n, with the rest bounded or discarded, drives large-power comparisons, approximations, and divisibility-remainder proofs alike
  • The general term and middle term formulas are formative-only in the current syllabus — not covered in this chapter's content or its one exercise

Maharashtra (MSBSHSE) marks blueprint

Where the marks come from in this chapter — so you can plan your prep.

Typical chapter weightage: Part of Unit II's 25-mark Algebra block (no chapter-wise split, per CBSE)

Question typeMarks eachTypical countWhat it tests
Pascal's Triangle and Binomial Expansion2-31Constructing a row of Pascal's triangle, direct expansion of (a+b)^n for a small positive integer n
Evaluating Powers Using the Binomial Theorem3-41Writing a number as a sum/difference of two easy powers and expanding exactly, e.g. (102)^4 or (98)^5
Special Cases and Coefficient Sum Applications3-51Sum of binomial coefficients at x=1, even/odd coefficient split, symmetric surd-expression evaluation via (a+b)^n +/- (a-b)^n
Divisibility and Approximation Proofs4-60-1Proving a remainder statement from the (1+x)^n expansion, or approximating a value using a stated number of terms
Prep strategy
  • Practise writing out Pascal's triangle rows quickly up to row 8 or so — it's the fastest sanity check on any small-n expansion
  • For every special-case question, identify which substitution (x=1 in (1+x)^n, or a=1,b=-x, etc.) the question is actually asking for before writing anything
  • For divisibility proofs, always finish with an explicit sentence connecting the algebraic form back to the word 'remainder' or 'divisible'

Where this shows up in the real world

This chapter isn't just an exam topic — it lives in the world around you.

Probability distributions

The binomial probability formula P(X=r) = nCr.p^r.(1-p)^(n-r) for r successes in n independent trials is a direct reuse of the binomial coefficients this chapter builds.

Compound interest and small-percentage growth

Approximating (1+r)^n using the first two or three terms of its expansion is exactly how small compound-growth rates are estimated by hand before a calculator is reached for.

Error and tolerance estimates in measurement

When a measured quantity has a small relative error x, expressions like (1+x)^n are approximated using the first couple of binomial terms to estimate how that error propagates through a computed power.

Exam strategy

Battle-tested tips from teachers and toppers for this chapter.

1
For 'expand' questions, write the relevant Pascal's triangle row first — it turns the rest of the problem into substitution, not memorisation
2
For 'evaluate using the binomial theorem' questions, split the number into a sum/difference of two round values before doing anything else
3
For any x=1 substitution question, state explicitly which identity is being used (sum of coefficients vs the alternating-sum corollary) before computing
4
Never introduce a general-term or middle-term formula in an answer — it isn't part of this chapter's syllabus and won't match the mark scheme

Going beyond the textbook

For olympiad aspirants and curious learners — topics that build on this chapter.

STRETCH
Bounding (1+1/n)^n between 2 and 3 using only the expansion (no limits or calculus) is the classical elementary proof that this sequence is bounded, a first step toward the constant e
STRETCH
The multinomial extension (a+b+c)^n = sum of n!/(p!q!r!).a^p.b^q.c^r for p+q+r=n generalises the same induction idea to three or more terms
🚀

JEE Main & Advanced practice

Competitive-level problems on this chapter, above the board pattern. Try each one on paper before opening the solution.

JEE MainDivisibility proof from the (1+x)^n special caseProof by direct expansion

Using the Binomial Theorem, prove that is divisible by 100 for every positive integer .

Stuck? Show the approach

Write , expand using the theorem, and isolate the first two terms — the rest of the sum will carry a common factor of .

Show the full solution

. So , a multiple of 100.

Answer: Proved: 11^n - 10n - 1 = 100k for a natural number k
The trap

Stopping once the expression is written as 100 times something, without stating explicitly that this proves divisibility by 100, leaves the proof looking incomplete even when the algebra is correct.

JEE MainFinding n from the sum of binomial coefficientsReverse application of a special case

If the sum of the binomial coefficients in the expansion of is 256, find , and state how many terms the expansion has.

Stuck? Show the approach

The sum of all binomial coefficients in row is , obtained by setting the variable ratio to 1 — solve for , then use for the term count.

Show the full solution

, so . The expansion of has terms.

Answer: n = 8, with 9 terms in the expansion
The trap

Confusing 'sum of coefficients' with 'sum of terms' — the sum of coefficients comes from the x=1 substitution and is a single number (256 here), not related to how many terms the expansion has, which is a separate count (n+1).

JEE MainEvaluating a symmetric surd expressionEven-term survival identity

Find the value of .

Stuck? Show the approach

Adding and cancels every odd-position term and doubles every even-position term, so only need to be computed.

Show the full solution

With : : . : . : . : . Sum ; doubling gives .

Answer: 2366
The trap

Forgetting to double the bracketed sum (the identity gives twice the even-position sum, not the sum itself) is the most common arithmetic slip in this technique.

JEE MainApproximating a large power to a stated number of termsTruncated expansion

Using the first three terms of its binomial expansion, find the approximate value of .

Stuck? Show the approach

Write and expand with the theorem, keeping only the first three terms () since later terms involve higher powers of a small number and contribute far less.

Show the full solution

.

Answer: approximately 1.1712
The trap

Including a fourth term 'to be safe' changes the answer the question is actually asking for — 'first three terms' is a precise instruction, not a suggested minimum.

JEE AdvancedBounding a binomial expansion to prove an inequalityMulti-step bounding proof

Prove that for every positive integer .

Stuck? Show the approach

Expand using the theorem, rewrite each term's product of falling factors as a product of factors each less than 1, bound every term above by , then bound the resulting factorial sum by a geometric series.

Show the full solution

. So every term is less than , giving . Since for , this sum is at most .

Answer: Proved: (1+1/n)^n < 3 for every positive integer n
The trap

Trying to prove this by testing individual values of n only ever confirms it for those specific cases — the factor-by-factor bound on each term is what makes the argument work for every n at once.

Where else this chapter is tested

CBSE board isn't the only one — other exams test this chapter too.

CBSE Class 11 BoardMedium
JEE MainHigh
JEE AdvancedMedium

Questions students ask

The real ones — pulled from the Q&A community and tutor sessions.

No. It's listed by CBSE as formative-only, and the current 2026-27 book has no section on it and no exercise question asking for a specific term. It's a genuinely useful tool for competitive exams, but it isn't part of this chapter's summative CBSE content.

Because the syllabus explicitly names both: 'statement and proof of the binomial theorem.' The proof itself, by induction using Pascal's identity, is examinable content, not optional background reading.

Substitute x=1 into (1+x)^n = nC0+nC1.x+...+nCn.x^n. Every coefficient becomes multiplied by 1, so the sum is just (1+1)^n = 2^n.

Write 99 as 100-1, expand (100-1)^5 with the theorem, and compute each term exactly — every term after the first two or three shrinks fast since they involve higher powers of the small number, but none are dropped since this is an exact computation, not an approximation.
Verified by the tuition.in editorial team
Last reviewed on 7 August 2026. Written and reviewed by subject-matter experts — read about our process.
Editorial process →
Header Logo