Revision:OCR Core 2 - The binomial theorem - The Student Room
The Student Room

Revision:OCR Core 2 - The binomial theorem

TSR Wiki > Study Help > Subjects and Revision > Revision Notes > Mathematics > OCR Core 2 - The binomial theorem


Contents

3. The binomial theorem

Expanding  (x + y)^{n}

If one begins with something such as:

 (x + y)^{4} ,

it is quick to see that this is an arduous calculation, which involves the following:

 (x + y)^{4} = \left[ (x + y)^{2} \right] ^{2}

 (x + y)^{4} = \left[ x^{2} + xy + xy + y^{2} \right] ^{2} \\

 (x + y)^{4} = (x^{2} + 2xy + y^{2})(x^{2} + 2xy + y^{2}) \\

 (x + y)^{4} = x^{4} + 2x^{3}y + x^{2}y^{2} + 2x^{3}y + 4x^{2}y^{2} + 2xy^{3} + x^{2}y^{2} + 2xy^{3} + y^{4} \\

 (x + y)^{4} = x^{4} + 4x^{3}y + 6x^{2}y^{2} + 4xy^{3} + y^{4}

Now, if one considers the following:

 (x + y)^{1} = 1x + 1y

 (x + y)^{2} = 1x^{2} + 2xy + 1y^{2}

 (x + y)^{3} = 1x^{3} + 3x^{2}y + 3xy^{2} + 1y^{3}

 (x + y)^{4} = 1x^{4} + 4x^{3}y + 6x^{2}y^{2} + 4xy^{3} + 1y^{4}

It is clear to see the link with Pascal's Triangle. The coefficient of each of the terms in these expansions is the same as the number on the corresponding row in Pascal's Triangle.

Also, one might note how the power of "x" falls by 1 each term, and the power of "y" increases (beginning at 0) by 1 every term.

Example

1. Expand and simplify:  (x + y + z)^{3} .

This is different to the examples which have been seen already, as it is a trinomial expansion, however one can do this:

 (x + y + z)^{3} = (x + (y + z))^{3}

The row of Pascal's Triangle which will be used is the third one (1, 3, 3, 1).

Hence:

 (x + (y + z))^{3} = 1x^{3}(y + z)^{0} + 3x^{2}(y + z) + 3x(y + z)^{2} + 1x^{0}(y + z)^{3} \\

 (x + (y + z))^{3} = x^{3} + 3(y + z)x^{2} + 3(y + z)^{2}x + (y + z)^{3} \\

 (x + (y + z))^{3} = x^{3} +  3x^{2}y + 3x^{2}z + 3xy^{2} + 6xyz + 3z^{2} + y^{3} + 3y^{2}z + 3yz^{2} + z^{3} .

The binomial theorem

It has been shown (in the previous section of these notes) that the "rth" number in the "nth" row of Pascal's Triangle is:

 {n \choose r}

Hence:

 (x + y)^{n} = {n \choose 0}x^{n} + {n \choose 1}x^{n - 1}y + {n \choose 2}x^{n - 2}y^{2} + \ ... \ + {n \choose n}y^{n}

(On calculators the value of  {n \choose r} is often in the "Statistics menu", or "Statistics mode", and is labelled  _{n}C_{r} ).

One could use the definition discussed in the previous chapter:

 {n \choose r + 1} = \frac{n - r}{r + 1} {n \choose r} ,

however this can be a lengthy process, and therefore one should not use it during the calculation (if one has access to a calculator).

It can be used to obtain a formula for  {n \choose r} .

It is known that:

 {n \choose 0} = 1

Therefore:

 {n \choose 0 + 1} = \frac{n - 0}{0 + 1} \times 1 = \frac{n}{1}

 {n \choose 1 + 1} = \frac{n - 1}{1 + 1} \times \frac{n}{1} = \frac{n(n - 1)}{1 \times 2}

This pattern continues, giving:

 {n \choose r} = \frac{n(n - 1)(n - 2)(n - 3) \ ... \ (n - (r - 1))}{1 \times 2 \times 3 \times \ ... \ \times r}

One can use factorial notation:

 \displaystyle {n \choose r} = \frac{ \frac{n!}{(n - r)!} }{ r! } = \frac{n!}{r!(n - r)!}

Often one can use the cancelling techniques discussed previously in order to make the calculations easier.

Example

1. Calculate:

 {1000 \choose 998} .

 \displaystyle {1000 \choose 998} = \frac{1000!}{(1000 - 998)!998!} = \frac{1000!}{2! \times 998!} = \frac{999000}{2} = 499500

2. Using the binomial theorem, expand the following:

 (x + 1)^{3} .

So, one follows the same technique, but one should allow "y" to equal "1":

 (x + 1)^{3} = \left[ {3 \choose 0}x^{3} \right] + \left[ 1 \times {3 \choose 1}x^2 \right] + \left[ 1^{2} \times {3 \choose 2}x \right] + \left[  1^{3} \times {3 \choose 3} \right] \\ = x^{3} + 3x^{2} + 3x + 1

Proving the binomial theorem

One will be aware that in Pascal's Triangle, one can obtain a number on the row below the row which one is currently considering by adding the numbers above it, for example:

 {5 \choose 3} + {5 \choose 4} = {6 \choose 4}

So, in general:

 {n \choose r} + {n \choose r + 1} = {n + 1 \choose r + 1} .

This can be shown through the following argument:

 \displaystyle {n \choose r} + {n \choose r + 1} \\ = {n \choose r} + \frac{n - r}{r + 1} {n \choose r } \\ = \left( 1 +  \frac{n - r}{r + 1} \right) {n \choose r} \\ = \left( \frac{r + 1 + (n - r)}{r + 1} \right) {n \choose r} \\ = \left( \frac{n + 1}{r + 1} \right) {n \choose r} = {n + 1 \choose r + 1} .


Also See

Read these other OCR Core 2 notes:

  1. Trigonometry
  2. Sequences
  3. The binomial theorem
  4. The sine and cosine rules
  5. Integration
  6. Geometric sequences
  7. Exponentials and logarithms
  8. Factors and remainders
  9. Radians
  10. The trapezium rule
Discussions Toggle
How many people get 3 A*s or more at A-level?
started by: Benniboi1
forum: A-Levels, ASs, A2s, VCEs
replies: 53
last post: 1 Minute Ago
Mathematics Applicants 2012
started by: IcedTea&PotNoodle
forum: Mathematics
replies: 4781
last post: 1 Minute Ago
Durham Applicants Thread 2012
started by: student1234567891
forum: Durham University
replies: 2378
last post: 1 Minute Ago
India tells Britain: We don't want your aid
started by: Herr
forum: News and Current Affairs
replies: 142
last post: 2 Minutes Ago
What food/drink will shorten your life span and kill you faster?
started by: kitsonchen
forum: Animals and Pets
replies: 1
last post: 3 Minutes Ago
Who are your idols from history?
started by: Gurmeet.Kapoor
forum: History
replies: 68
last post: 6 Minutes Ago
The 11/12 NBA season thread
started by: S-man10
forum: Sport
replies: 1181
last post: 6 Minutes Ago
What way to buy a spring mattress should I choose?
started by: kitsonchen
forum: Fitness
replies: 0
last post: 7 Minutes Ago
What to wear? :)
started by: amy19
forum: Fashion and Beauty
replies: 8
last post: 7 Minutes Ago
Tintin
started by: the bear
forum: Creative Corner
replies: 1
last post: 8 Minutes Ago
Do people celebrate after finishing their A Levels?
started by: Aussie-Pom
forum: A-Levels, ASs, A2s, VCEs
replies: 3
last post: 11 Minutes Ago
What jobs out there allow a person to travel and write about their travel experiences
started by: kitsonchen
forum: Travel
replies: 0
last post: 11 Minutes Ago
Radical Cleric Abu Qatada given bail.
started by: TheHistoryStudent
forum: News and Current Affairs
replies: 31
last post: 12 Minutes Ago
Barts and The London Applicants 2012
started by: joemullally
forum: Medical Schools
replies: 3659
last post: 12 Minutes Ago
How well known is Imperial worldwide when compared to Lower Ivies?
started by: Xyrish
forum: Studying in North America
replies: 54
last post: 13 Minutes Ago
Applicants with A-Levels who got in!
started by: Lilium
forum: Studying in North America
replies: 5
last post: 13 Minutes Ago
What is more important, the needs of the individual, or society?
started by: kitsonchen
forum: Society
replies: 0
last post: 13 Minutes Ago
TSR Motorbike Society- take 3!
started by: Bathwiggle
forum: Motoring
replies: 4470
last post: 14 Minutes Ago
Architecture Applicants for 2012 entry (& Offers - for when they're given!)
started by: SomeoneIveNeverMet
forum: Architecture and the Built Environment
replies: 1513
last post: 14 Minutes Ago
Dry motoring process at turbofan engines?
started by: kitsonchen
forum: Motoring
replies: 0
last post: 15 Minutes Ago
Article Updates Toggle
Contact Us | Site Rules | Staying Safe on TSR | Advertising | Staff Blog | Essays & Coursework | Terms & Conditions | Top
Customise your TSR | Life Advice | Hobbies and Interests | Debate and Current Affairs | Study Help | University and University courses
Universities and HE Colleges | Careers, Employment and Gap Years | General Discussion

Customise your TSR