The question asks me to show that $C(n,k) = C(n-1,k-1)+C(n-1,k)$ by expanding out the formulas and using elementary algebra. It seems like the question requires me to use binomial expansion but Im not sure how I get from $C(n,k)$ to $C(n-1,k-1)+C(n-1,k).$ detailed explanation would be greatly appreciated thank you
2026-04-01 22:17:27.1775081847
Show that $C(n,k)$ equals to $ C(n-1,k-1)+C(n-1,k)$
2.6k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
We have: $$\begin{aligned}{{n-1}\choose {k-1}}+{{n-1}\choose k}&=\frac{(n-1)!}{(n-k)!\cdot (k-1)!}+\frac{(n-1)!}{(n-k-1)!\cdot (k)!}\\&=\frac{(n-1)!}{(n-k-1)!\cdot (k-1)!}\cdot \left(\frac{1}{n-k}+\frac{1}{k}\right)\\&=\frac{n!}{(n-k)!\cdot k!}\\&={n\choose k}\end{aligned}$$
Of course there is also a combinatorics proof for it.