How to prove the following identity without using complex numbers (and de Moivre's formula)? $$1 + {n \choose 3} + {n \choose 6} + {n \choose 9} + \cdots = \frac{1}{3}\left(2^n + 2\cos{\frac{n\pi}{3}}\right)$$
-
2Is induction allowed, then use https://en.wikipedia.org/wiki/Pascal's_rule – lab bhattacharjee Nov 21 '15 at 12:55
-
2Note that $2\cos{\frac{n\pi}{3}}$ is just the six number sequence $0,1,-1,0,-1,1$ repeated. – Thomas Andrews Nov 21 '15 at 13:11
-
1@ThomasAndrews: You mean $2, 1, -1, -2, -1, 1$, right? – hmakholm left over Monica Nov 21 '15 at 13:14
-
1Induction is allowed. Do you think I should use induction for six different cases? – AnatoliySultanov Nov 21 '15 at 13:15
-
1Related. But complex numbers are used there. – Jyrki Lahtonen Aug 17 '16 at 13:34
1 Answers
Let $a_n$ be your left-hand side, the number of subsets of $\{1,\ldots,n\}$ with a multiple of $3$ elements.
To make such a subset, select any subset of $\{4,5,\ldots,n\}$. If it happens to have a multiple of 3 elements, then you can either add nothing or all of $\{1,2,3\}$; if it is not a multiple of 3 elements, then you have 3 ways to complete it. Therefore $$ a_n = 3\cdot 2^{n-3} - a_{n-3} $$ You should be able to use this for an induction proof for each residue class of $n$ modulo $3$.
Actually a single induction proof (still with a step size of 3 and base cases $n=0,1,2$) will do if you write your goal in the form $$ a_n = \frac{2^n + f(n\bmod 3)\cdot(-1)^{\lfloor n/3\rfloor}}3 $$ where $f(n)=2\cos(n\frac\pi3) = \begin{cases} 2 & \text{for }n=0 \\ 1 &\text{for }n=1\\ -1 &\text{for }n=2 \end{cases} \qquad (= 3-2^n \text{ for }n\in\{0,1,2\})$
- 286,031