0

I've been trying to solve this combinatorial problem but couldn't solve it. The problem is as follows: If C(a,b) is the binomial coefficient then prove that $$ C(n,0) + C(n,2) + C(n,4) +...+C(n,n) = C(n,1)+C(n,3)+C(n,5)+...+C(n,n-1)=\frac{2^n}{2}$$ I would really appreciate a step by step solution or at least a hint on how to solve it because I've been trying for days.

1 Answers1

2

Call $$x= C(n,0) + \dots + C(n,n)$$ and $$y= C(n,1) + \dots + C(n,n-1)$$ Then $$x+y = \sum_{k=0}^n C(n,k)=2^n$$ and $$x-y= \sum_{k=0}^n C(n,k) (-1)^k =0$$

Hence $x,y$ are the solutions of the system $$\cases{ x+y=2^n \\ x-y=0}$$ which can be easily solved.

Crostul
  • 36,738
  • 4
  • 36
  • 72