I was fiddling around with Arithmetic Progressions and I noticed this pattern.
\begin{align} n*T_n = m*T_m \implies T_\text{n+m} = 0 \end{align}
where $n, m \in \{0, \mathbb{Z}^{+}\}$ and $n \neq m$.
I could prove that it's true like so:-
\begin{align*} & m*T_m = n*T_n \\ & \Rightarrow m\{a + (m-1)d\} = n\{a + (n-1)d\} \\ & \Rightarrow ma + m^2d - md = na + n^2d - nd \\ & \Rightarrow am - an + m^2d - n^2d - md + nd = 0 \\ & \Rightarrow a(m-n) + (m^2-n^2)d - (m-n)d = 0 \\ & \Rightarrow a(m-n) + (m-n)(m+n)d - (m-n)d = 0 \\ & \Rightarrow (m-n)\{a + (m+n)d - d\} = 0 \\ & \Rightarrow (m-n)\{a + (m+n-1)d\} = 0 \\ & \Rightarrow a + (m+n-1)d = 0 \\ & \Rightarrow T_{m+n} = 0 \end{align*}
But I couldn't figure out the intuitive reasoning behind it. Could you help me out using as little machinery as possible?