I've tried looking everywhere to get a clear understanding of the answer, however I am at a loss. The book says if n=1 then k=1. Assume the identity is true for n-1 we will shot it for n. If k=n, then both sides equal n. Otherwise k ≤ n-1.
kC(n,k) = k(C(n-1,k) + C(n-1,k-1))
=kC(n-1,k) + (k-1)C(n-1,k-1)+C(n-1,k-1)
=(n-1)C(n-2,k-1)+(n-1)C(n-2,k-2)+C(n-1,k-1)
=(n-1)[C(n-2,k-1)+C(n-2,k-2)]+C(n-1,k-1)
(this isn't complete because I get how they get nC(n-1,k-1))
Anyway, I understand the first two rows. However for the last two I don't know where the (n-1), (n-2),(k-2) parts came from.
Sorry if I'm wrong about this part, but is the reason for replacing k with (n-1) because k = n-1?