Given the recurrence$$T_n = 2T_{n-1}-T_{n-2},$$$$T_0=0$$$$T_1=1$$Prove by induction, that $T_n = n$.
I have the first few steps worked out.
Basis: $n = 1$$$T_1=1=n=1$$
Assume true for $n = k+1$$$T_{k+1}=2T_k-T_{k-1}$$
We know that $T_k=k$$$T_{k+1}=2(k)-T_{k-1}$$
But where do I go from here? I don't have the value for $T_{k-1}$, so how to I continue?