I have the following information: For all $x \in \mathbb{R}$: $$T_0(x) := 1$$ $$T_1(x) := x$$ $$\forall n\in\mathbb{N}: T_{n+1}(x):= 2xT_n(x) - T_{n-1}(x)$$ Now I have to prove that for any $n\in\mathbb{N}$ The function $x\rightarrow T_n(x)$ is a polynomial of degree $n$ .
Furthermore, I have to prove that for $x\in [-1,1]$ $$\forall n\in\mathbb{N}: T_n(x) = \cos(n\ \arccos(x))$$
To prove that the function is a polynomial I tried induction, but I seem to use circular logic instead of proving anything. What confuses me is that the definition for $T_{n +1}$ is an inductive definition in the first place. Any hints?