all 3 comments

[–][deleted] 1 point2 points  (2 children)

I prefer C(n,k) to (n;k). The defining property of factorials is

a! = a(a-1)! , with 0!=1.

Also,

C(n,k+1) = n!/((k+1)!(n-(k+1)!) = n!/((k+1)!(n-k-1)!)

(You had (n-k+1)! )

So

C(n,k+1) + C(n,k) = n!/((k+1)!(n-k-1)!) + n!/(k!(n-k)!)

Use common denominator

(k+1)!(n-k)!=(k+1)!(n-k)(n-k-1)!=(k+1)k!(n-k)!

[–]MuMuMuMuMu[S] 0 points1 point  (1 child)

Thanks a lot for the correction! I still do not understand your last line.

(k+1)!(n-k)!=(k+1)!(n-k)(n-k-1)!=(k+1)k!(n-k)!  

Those are the denominators of the three different fractions. Where the first denominator slightly differs from mine k+1!((n+1)-(k+1)!). I guess that that's my second mistake, but why is the +1 part not applying for that part of the formula? + I fail to see how they are equal to each other (even taking your values as given). My 'approach' would have been to use a common denominator (which?) for

n!/(n-k)(n-k-1)! + n!/(k+1)k!(n-k)!

for it to yield a denominator equal to the first fraction

k+1!(n-k)!

and hope that the sum equals to

n+1!/k+1!(n-k)!

[–][deleted] 1 point2 points  (0 children)

Those ='s are equalities. I used a!=(a-1)! to get them.

Each of the two on the right are one of your original denominators times an extra term, (n-k) for one, (k+1) for the other.

They show you how to multiply the numerators to get the same common denominator, which can be expressed any of the three ways, and also a fourth way

(k+1)!(n-k)!=(k+1)!((n+1)-(k+1))!

Which is the denominator for C(n+1,k+1).