Let n>2 be even
$$T:P_n \rightarrow P_{\frac n2} $$
$$T(a_0 + a_1x + \ldots + a_nx^n) = a_0 + a_2x + \ldots + a_{n-2}x^{\frac n2 -1} +a_n x^{\frac n2} $$
I am very deeply confused on what the following linear transformation does to the set of polynomials of degree $n$ and why it's considered a linear transformation. From my understanding this breaks the second axiom of linear transformation of
$$T(rv) = rT(v)$$
it changes the coefficients of the variables so I feel as if though this axiom wouldn't hold, but then again I'm also not 100% sure what the transformation is doing to the polynomials.
If $n=2$ and $v(x) = 1+2x+x^2 \in P_2$ then under your above notation $a_0 = 1, a_1 = 2, a_2 = 1$ and $$ T(v) = T(1+2x+x^2) = a_0 + a_2x = 1+x $$ Now,for any scalar $r$, $$ T(rv) = T(r+2rx+rx^2) = r + rx = r(1+x) = rT(v) $$ We will now generalize for polynomials of degree $n$ where $n$ is an even number. If $$ v(x) = a_0 + a_1x + \dots + a_n x^n $$ and $r$ is a scalar then \begin{align*} T(rv) = T(ra_0 + ra_1x + \dots + ra_n x^n) &= ra_0 + ra_2 x + \dots + ra_n x^{n/2}\\ &=r\left(a_0 + a_2 x + \dots + a_n x^{n/2}\right)\\ &=rT(v) \end{align*}
I hope this clarifies the problem.