I have to prove this using a combinatorial proof
$$ k{n \choose k} = n {n-1\choose k-1} $$
What's the standard procedure on doing this? The only thing I managed was to split it into: (by fixing one element) $$ k{n \choose k} = k\bigg[ {n-1 \choose k} {n-1\choose k-1}\bigg]$$
But does this help? Or how do I go from here?
A combinatorial proof is generally done by finding one problem and solving it in two different ways. The results will look different, but since they're solutions to the same problem they must be the same.
For this problem I thought of picking a soccer team with $k$ players (one of which is captain) out of $n$ candidates, and here are two ways to find the number of ways to do that.
Pick a team of $k$ players. This can be done in $n \choose k$ ways. And then make one of them captain, since there are $k$ players, this can be done in $k$ ways and you get $k{n\choose k}$ possible teams.
Pick a captain. There are $n$ candidates so this can be done in $n$ ways. Then pick the last $k-1$ players from the remaining $n-1$ candidates. There are $n-1 \choose k-1$ ways to do that, giving you a total of $n{n-1\choose k-1}$ possible teams.
And now you can see that both sides of the equation are solutions to the same counting problem, so they must be equal.