Difference between revisions of "A choose b"
Line 27: | Line 27: | ||
== Pascal's Identity == | == Pascal's Identity == | ||
− | Pascal's Identity states that | + | Pascal's Identity states that |
− | + | <math>{n \choose k}={n-1\choose k-1}+{n-1\choose k}</math> | |
+ | |||
+ | Here is the proof: | ||
+ | |||
+ | If <math>k > n</math> then <math>\binom{n}{k} = 0 = \binom{n - 1}{k - 1} + \binom{n - 1}{k}</math> and so the result is trivial. So assume <math>k \leq n</math>. Then | ||
+ | |||
+ | <cmath>\begin{eqnarray*}\binom{n-1}{k-1}+\binom{n-1}{k}&=&\frac{(n-1)!}{(k-1)!(n-k)!}+\frac{(n-1)!}{k!(n-k-1)!}\\ | ||
+ | &=&(n-1)!\left(\frac{k}{k!(n-k)!}+\frac{n-k}{k!(n-k)!}\right)\\ | ||
+ | &=&(n-1)!\cdot \frac{n}{k!(n-k)!}\\ | ||
+ | &=&\frac{n!}{k!(n-k)!}\\ | ||
+ | &=&\binom{n}{k}. \qquad\qquad\square\end{eqnarray*}</cmath> |
Revision as of 19:44, 15 June 2019
Here is the formula for a choose b: . This is assuming that of course .
Why is it important?
a choose b counts the number of ways you can pick b things from a set of a things. For example . More at https://artofproblemsolving.com/videos/counting/chapter4/64.
a choose 2
Here is a list of n choose 2's
These are triangle numbers! My proof uses induction (assuming something is true unless proofed true or not true). Then Simplify:
More Simplify:
So now we have proved it. If you don't get what I did on the second step go to Proof Without Words on this wiki.
Pascal's Identity
Pascal's Identity states that
Here is the proof:
If then and so the result is trivial. So assume . Then