Sum of Binomial Expansion | Spivak Chapter 2, Excercise 3 part d

Click For Summary

Discussion Overview

The discussion revolves around a mathematical exercise from Spivak's text concerning the sum of a binomial expansion. Participants are attempting to manipulate and prove an equality involving binomial coefficients and powers of two variables, \(a\) and \(b\). The scope includes mathematical reasoning and exploration of combinatorial arguments related to binomial expansions.

Discussion Character

  • Mathematical reasoning
  • Exploratory
  • Technical explanation
  • Homework-related

Main Points Raised

  • One participant presents an equality involving binomial coefficients and seeks assistance in proving it.
  • Another suggests shifting the summation index to simplify the expression, indicating that separating terms for specific values of \(j\) could be beneficial.
  • Participants discuss the implications of changing summation indices and whether the names of the indices matter, concluding that they do not, but that limits must be consistent.
  • There is a suggestion to combine the two summations under one summation, with attention to the boundaries of the sums.
  • Some participants explore the idea of using induction to prove the general formula for the binomial coefficient.
  • Combinatorial arguments are introduced, discussing how to interpret the expansion of \((a+b)^n\) in terms of choosing \(k\) \(a\)'s from \(n\) total terms.
  • Clarifications are made regarding the symmetry in choosing \(a\) and \(b\) and how this relates to the binomial coefficients.

Areas of Agreement / Disagreement

Participants express various methods and perspectives on the problem, with no consensus reached on a single approach or solution. The discussion remains exploratory, with multiple competing views and techniques presented.

Contextual Notes

Some participants note the importance of maintaining consistent limits when combining summations, and there are references to earlier established identities involving binomial coefficients that are not fully resolved in the discussion.

sleepingMantis
Messages
25
Reaction score
5
Hello,

I am working through Spivak for self study and sharpening my math skills. I have become stuck on an exercise.

What I need to show is the following:

$$
(a + b) \sum_{j = 0}^{n} \binom nj a^{n-j}b^{j} = \sum_{j = 0}^{n + 1} \binom{n+1}{j} a^{n-j + 1}b^{j}
$$

My attempt, starting from the LHS. Expanding the brackets:

$$
(a + b) \sum_{j = 0}^{n} \binom nj a^{n-j}b^{j} = a \sum_{j = 0}^{n} \binom nj a^{n-j}b^{j} + b \sum_{j = 0}^{n} \binom nj a^{n-j}b^{j}
\\ = \sum_{j = 0}^{n} \binom nj a^{n+1-j}b^{j} + \sum_{j = 0}^{n} \binom nj a^{n-j}b^{j+1}
$$

Now I know a useful equality (that I proved earlier) is:

$$
\binom{n+1}{k} = \binom{n}{k} + \binom{n}{k-1}
$$

However I am not sure how to proceed. Any tips would be much appreciated!
 
Last edited:
Physics news on Phys.org
The trick is to shift the summation, i.e. replace ##j## by ##i+1## or ##i-1##. I find it easiest to separate the terms for ##j=0## and ##j=n## and then get rid of ##j \pm 1## in the exponent by the substitutions I mentioned. (I would have to do it on my own to see which sum is transformed by which substitution, but you should be able to figure it out.)
 
  • Like
Likes   Reactions: sleepingMantis
Set j'=j+1 for the second summation.
 
  • Like
Likes   Reactions: sleepingMantis
Thank you guys, plugging in k = j+1

$$
= \sum_{j = 0}^{n} \binom nj a^{n+1-j}b^{j} + \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-k}b^{k}
$$

This looks to be on the right track, but does it matter that the binomial brackets in the two summations have different variables, namely ##j## and ##k## ?
 
sleepingMantis said:
Thank you guys, plugging in k = j+1

$$
= \sum_{j = 0}^{n} \binom nj a^{n+1-j}b^{j} + \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-k}b^{k}
$$

This looks to be on the right track, but does it matter that the binomial brackets in the two summations have different variables, namely ##j## and ##k## ?
No, these are just names. You could as well sum up ##\sum_{tree=0}^n \binom{n}{tree} ...## but this would last too long to write. But you will have to look for the boundaries if you write the sums again under one summation. ##\sum_{j=0}^n a_j + \sum_{k=1}^n b_k = a_0 + \sum_{tree=1}^n (a_{tree}+b_{tree})##.
 
  • Like
Likes   Reactions: sleepingMantis
Thanks, so to write the sum under one summation, the limits have to be consistent.

But now I am confused. If I plug in k into the first sum, I will end up with:

$$
= \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-(k-1)}b^{k-1} + \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-k}b^{k}
$$

But this seems to take me away from where I need to be.

Am I on the right track here?
 
Let's step back a bit to your post number 4. You wrote
sleepingMantis said:
$$
= \sum_{j = 0}^{n} \binom nj a^{n+1-j}b^{j} + \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-k}b^{k}
$$
by doing the substitution @mathman suggested: ##k=j+1## from the second sum. But if ##j## ran from ##0## to ##n## then ##k## runs from ##1## to ##n+1##.

Let's assume you corrected this. Then we have one term at the beginning of the first sum and one at the end of the second sum which have no counterparts. Hence your sum reads
$$
= \binom n0 a^{n+1-0}b^0 + \sum_{j = 1}^{n} \binom nj a^{n+1-j}b^{j} + \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-k}b^{k} + \binom {n}{n}a^{n+1-(n+1)}b^k
$$
Now you can rename the indices again and substitute ##k## by ##j## which allows you to write the summation in one sum from ##1## to ##n## plus the two lonely terms. The crucial part is, and that's why you made this, that the powers of ##a## and ##b## match, i.e. we can add the coefficients now: ##\binom nj + \binom {n}{j-1}##.
 
  • Like
Likes   Reactions: sleepingMantis
fresh_42 said:
Let's step back a bit to your post number 4. You wrote

by doing the substitution @mathman suggested: ##k=j+1## from the second sum. But if ##j## ran from ##0## to ##n## then ##k## runs from ##1## to ##n+1##.

Let's assume you corrected this. Then we have one term at the beginning of the first sum and one at the end of the second sum which have no counterparts. Hence your sum reads
$$
= \binom n0 a^{n+1-0}b^0 + \sum_{j = 1}^{n} \binom nj a^{n+1-j}b^{j} + \sum_{k = 1}^{n} \binom {n}{k-1} a^{n+1-k}b^{k} + \binom {n}{n}a^{n+1-(n+1)}b^k
$$
Now you can rename the indices again and substitute ##k## by ##j## which allows you to write the summation in one sum from ##1## to ##n## plus the two lonely terms. The crucial part is, and that's why you made this, that the powers of ##a## and ##b## match, i.e. we can add the coefficients now: ##\binom nj + \binom {n}{j-1}##.

Wow that is an excellent explanation. Thank you very much I see now. I will crank out a few more of these problems but I can see how to use this trick.
 
This seems like a step in induction used to prove the general formula for the binomial coefficient for ##(a+b)^n## The formula for exponent n+1 is clearly that for n multiplied by (a+b).
 
  • Like
Likes   Reactions: sleepingMantis
  • #10
Or you can give a combinatorial argument on expanding the expression :
(a+b)(a+b)...(a+b) n times. Each monomial will have n terms, k a's and n-k b's. In how many ways can you make the choice?
 
  • #11
WWGD said:
This seems like a step in induction used to prove the general formula for the binomial coefficient for ##(a+b)^n## The formula for exponent n+1 is clearly that for n multiplied by (a+b).

Thank you yes that is correct - this is a step in the induction proof
 
  • #12
WWGD said:
Or you can give a combinatorial argument on expanding the expression :
(a+b)(a+b)...(a+b) n times. Each monomial will have n terms, k a's and n-k b's. In how many ways can you make the choice?

Would that be the choice for the coefficient of each term in the expression?
 
  • #13
sleepingMantis said:
Would that be the choice for the coefficient of each term in the expression?
... each term in the expression for ##(a+b)^n##, yes.

We have ##n## numbered balls and draw ##k## of them without return and disrespect of the order. Those ##k## balls are labeled as ##a##, the rest as ##b\, : \, n=k+(n-k) \longrightarrow a^{k}b^{n-k} ##. Then ##\binom nk ## is the number of possibilities to get the same result, since we do not consider the numbers on the balls: ##\{\,1,\ldots ,n\,\} = \{\,n_1,\ldots,n_k\,\}_a\, \dot \cup \,\{\,n_{k+1},\ldots ,n_n\,\}_b## and there are ##\binom nk ## many possible sets ##\{\,n_1,\ldots,n_k\,\}##.
 
  • Like
Likes   Reactions: sleepingMantis
  • #14
sleepingMantis said:
Would that be the choice for the coefficient of each term in the expression?
Correct. For the coefficient of ##a^kb^{n-k}## There are C(n,k) ways of choosing the k a's from the product.
 
  • Like
Likes   Reactions: sleepingMantis
  • #15
fresh_42 said:
... each term in the expression for ##(a+b)^n##, yes.

We have ##n## numbered balls and draw ##k## of them without return and disrespect of the order. Those ##k## balls are labeled as ##a##, the rest as ##b\, : \, n=k+(n-k) \longrightarrow a^{k}b^{n-k} ##. Then ##\binom nk ## is the number of possibilities to get the same result, since we do not consider the numbers on the balls: ##\{\,1,\ldots ,n\,\} = \{\,n_1,\ldots,n_k\,\}_a\, \dot \cup \,\{\,n_{k+1},\ldots ,n_n\,\}_b## and there are ##\binom nk ## many possible sets ##\{\,n_1,\ldots,n_k\,\}##.

WWGD said:
Correct. For the coefficient of ##a^kb^{n-k}## There are C(n,k) ways of choosing the k a's from the product.
Thank you, so the argument is (just to make sure I have it):

We have the product ## (a + b)^n ##. From this product we generate monomials of the form ##C_{n, k} a^kb^{n-k}##, where ##k \leq n##. Each of the ##a##'s can be selected in ##\binom{n}{k}## ways. By symmetry, each of ##b##'s can be picked in ##\binom{n}{n-k}## ways. Hence ##C_{n, k} = \binom{n}{k}##.

Therefore ## (a + b)^n ## is the sum of ##\binom{n}{k} a^kb^{n-k}##.
 
  • Like
Likes   Reactions: WWGD and fresh_42
  • #16
sleepingMantis said:
Thank you, so the argument is (just to make sure I have it):
You have it.

Since ##a\cdot \ldots \cdot a## is commutative, we do not have to respect the order.
Since the ##a##'s cannot be distinguished, we do not have to respect the numbers on the balls.
Since once a ball is drawn, i.e. an ##a## selected, we have only ##n-1## positions left to fill in ##a\cdot \ldots \cdot a \cdot b \cdot \ldots \cdot b##, hence we do not return the ball.
 
  • Like
Likes   Reactions: sleepingMantis
  • #17
sleepingMantis said:
Thank you, so the argument is (just to make sure I have it):

We have the product ## (a + b)^n ##. From this product we generate monomials of the form ##C_{n, k} a^kb^{n-k}##, where ##k \leq n##. Each of the ##a##'s can be selected in ##\binom{n}{k}## ways. By symmetry, each of ##b##'s can be picked in ##\binom{n}{n-k}## ways. Hence ##C_{n, k} = \binom{n}{k}##.

Therefore ## (a + b)^n ## is the sum of ##\binom{n}{k} a^kb^{n-k}##.
Correct. And like Fresh mentioned this is true in commutative rings.
 
  • Like
Likes   Reactions: sleepingMantis
  • #18
@fresh_42 , @WWGD

Thank you both for your help and ideas, I am learning a lot of cool math and problem solving techniques on this forum!
 
  • Like
Likes   Reactions: WWGD

Similar threads

  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 29 ·
Replies
29
Views
6K