2

Prove that $\binom{n}{r} + \binom{n}{r+1} = \binom{n+1}{r+1} $

Thanks in advance, my professor asked us to this a couple weeks ago, but I was enable to get to the right answer.

Good luck!

Here is what I got up to;

$\frac{(n+1)!}{(n-r)!(r+1)!} = \frac{(n)!}{(r)!(n-r)!} + \frac{(n)!}{(r+1)!(n-r-1)!} $

Pauly
  • 103
  • 1
    Just do the math, expand the right side. – leonbloy Nov 09 '13 at 16:59
  • Show what you actually tried. – Karolis Juodelė Nov 09 '13 at 17:01
  • @Pauly : Can you tell us at what point you got stuck? Merely passing on to us a question written by someone other than yourself, rather than asking a question about it yourself, is often frowned upon here. – Michael Hardy Nov 09 '13 at 17:05
  • http://en.wikipedia.org/wiki/Binomial_coefficient#Recursive_formula – Alex Nov 09 '13 at 17:05
  • This can be done algebraicly, and I see that someone has posted that. It can also be done combinatorially, and it's worth knowing about that too. – Michael Hardy Nov 09 '13 at 17:05
  • I think when you start playing around with factorials, one thing that is often overlooked is that $(r+1)! = (r+1)r!$. So, for example if you are adding fractions where the denominator of one is $(r+1)!$ and in the other is a factor of $r!$ then you can write them both over the common denominator of just $(r+1)!$ simply by multiplying the fraction with $r!$ in the denominator by $(r+1)/(r+1)$. – Tom Nov 09 '13 at 17:09

4 Answers4

4

$$ \binom{n}{r} + \binom{n}{r+1} \\ \frac{n!}{(n-r)!r!} + \frac{n!}{(n-r-1)!(r+1)!} \\ \frac{n!}{(n-r)(n-r-1)!r!} + \frac{n!}{(n-r-1)!r!(r+1)} \\ \frac{n!}{(n-r-1)!r!}\left(\frac{1}{n-r} + \frac{1}{r+1}\right) \\ \frac{n!}{(n-r-1)!r!}\left(\frac{n+1}{(n-r)(r+1)}\right) \\ \frac{(n+1)!}{(n-r)!(r+1)!}\\ \binom{n+1}{r+1} $$

Priyatham
  • 2,607
4

Given $n+1$ people we can form a committee of size $r+1$ in ${n+1\choose r+1}$ ways. We can count the same thing by counting the number of ways in which person $x$ is in the committee and person $x$ is not in the committee. The number of ways person $x$ is not in the committee is ${n\choose r+1}$. We have $n$ people to work with because we are excluding the possibility of person $x$ being in the committee. The number of ways person $x$ is in the committee is ${n\choose r}$. We have $n$ people to work with since person $x$ is in the committee by default and we choose $r$ people because person $x$ is in the committee. Thus ${n+1\choose r+1}={n\choose r+1}+{n\choose r}$.

1233dfv
  • 5,625
0

Hint: Recall that $(d+1)!=(d+1)*d!$ From here, try combining the fractions in the sum by giving them a common denominator.

Geoffrey
  • 2,382
0

Even though it seems a little far-fetched I will use the Binomial Theorem. The definition of number $\binom{n}{r}$ has a reason to come to exist in the development of $(x + y)^n$. So I think the natural and instructive. For all $x,y\in\mathbb{R}$ we have, \begin{array}{rrl} \hspace{2cm}&( x+y)^{n+1}= & (x+y)\cdot ( x+y)^n, \\ \Longleftrightarrow & \sum_{k=0}^{n+1}\binom{n+1}{k}x^{(n+1)-k}y^{k}= & (x+y)\cdot \sum_{k=0}^{n}\binom{n}{k}x^{n-k}y^{k}, \\ \Longleftrightarrow & \sum_{k=0}^{n+1}\binom{n+1}{k}x^{(n+1)-k}y^{k}= & \sum_{k=0}^{n}\binom{n}{k}x^{n-k}y^{k+1}+ \sum_{k=0}^{n}\binom{n}{k}x^{n-k+1}y^{k}. \end{array} Then for all $k=1,2,\ldots n$ we have \begin{array}{rl} \binom{n+1}{k}x^{(n+1)-k}y^{k}= & \binom{n}{(k-1)}x^{n-(k-1)}y^{(k-1)+1}+ \binom{n}{k}x^{n-k+1}y^{k}. \end{array} For $x=1$ and $y=1$, \begin{array}{rl} \binom{n+1}{k}= & \binom{n}{(k-1)}+ \binom{n}{k},\qquad k=1,2,\ldots n. \end{array} Setting $k = r +1$ then \begin{array}{rl} \binom{n+1}{r+1}= & \binom{n}{r}+ \binom{n}{r+1},\qquad r=0,1,2,\ldots n-1. \end{array}

Elias Costa
  • 14,658