A high school math problem:
For $n \in N$ (the natural number set), let us define the polynomial $P_n(x)$ as follows:
$$P_n(x) = \sum_{k=0}^{[(n-1)/2]}(-1)^k \ {}_nC_{2k+1} \ x^k$$
where $[(n-1)/2]$ represents the greatest integer that does not exceed $(n-1)/2$.
Find the expressions for the polynomials $A(x)$ and $B(x)$ such that for all $n \in N$
$$P_{n+2}(x) = A(x)P_{n+1}(x) + B(x)P_n(x)$$
Someone has said it should start from rearranging the formula and stating that
$$P_n(x) = \frac{(1+i \sqrt{x})^n - (1-i \sqrt{x})^n }{2i\sqrt{x}}$$
And from here I am able to do the rest of the steps. But I do not see intuitively how I can reach this expression.
This is nothing more than Markus Scheuer did, but simply organized a bit differently. Note that $\binom{n}{2k+1}=0$ if $2k+1\gt n$. $$ P_n(x)=\sum_{k=0}^\infty(-1)^k\binom{n}{2k+1}x^k $$ Substitute $x\mapsto-x$ $$ P_n(-x)=\sum_{k=0}^\infty\binom{n}{2k+1}x^k $$ Substitute $x\mapsto x^2$, then multiply by $x$ and recognize that the sum is the odd part of $(1+x)^n$. The odd part of a function is $\frac{f(x)-f(-x)}2$. $$ \begin{align} xP_n\!\left(-x^2\right) &=\sum_{k=0}^\infty\binom{n}{2k+1}x^{2k+1}\\ &=\frac{(1+x)^n-(1-x)^n}2 \end{align} $$ Divide by $x$ and substitute $x\mapsto i\sqrt{x}$ $$ P_n(x)=\frac{(1+i\sqrt{x})^n-(1-i\sqrt{x})^n}{2i\sqrt{x}} $$