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?
An intuitive explanation with up to middle school level analysis: First we rewrite $T_n = T_1 + (n-1)a$ as $T(x) = ax + b$, where $b = T_1$, and $x = n - 1$.
$x(T(x)) = ax^2 + bx = Q(x)$, which is a quadratic expression. And, if for some $m,n \in \mathbb{N}$, $nT(n) = mT(m)$, then we can think of this as saying: $$an^2 + bn = am^2 + bm \\Q(n) = Q(m)$$ We also want to say that if above is true, then $m+n = \frac{-b}{a}$, since that is the root to our linear function $T(x)$. However, you may notice that $\frac{-b}{a}$ is also a root to our quadratic expression $Q(x) = ax^2 +bx = x(ax + b)$. Hence (since $m, n \in \mathbb{N}$ and $m \not = n$, $ m + n \not = 0$ so) if $Q(m+n) = 0$, then $T(m+n) = 0$.
So our final question becomes, why is it that if $Q(m) = Q(n)$, then $Q(m+n) = 0$? Because we know our apex is at $\frac{-b}{2a}$ and since $m$ and $n$ should be on opposite side of it, we can represent $m = \frac{-b}{2a} + d$ and $n = \frac{-b}{2a} - d$, WLOG. Then, $$Q(m+n)= Q(\frac{-b}{2a} + d + \frac{-b}{2a} -d) = Q(\frac{-2b}{2a}) = Q(\frac{-b}{a}) = 0$$ And since $Q(m+n) = 0$, $T(m+n) = 0$. $\square$
Im not sure if this is as intuitive as you liked, but this is about as good of a picture as I can paint for you. Hopefully this helps, let me know if I can fix it in any way!