Answers to this question describe how, if we square an order-$m$ polynomial with coefficients $a_k$,
$$ p(x) = \left( \sum_{k=0}^{m} a_k x^k \right)^2 = \sum_{k=0}^{2m} c_k x^k $$
the coefficients $c_k$ of the resulting order-$2m$ polynomial can be calculated as
$$ c_k = \sum_{j=0}^{k} a_j a_{k-j} $$
provided we take $a_j = 0$ in cases where $j \notin \{ 0, \dots, m\}$.
Question:
If we let $\mathbf{c}$ be a length $2m+1$ vector containing all the $c_k$, and $\mathbf{a}$ be a length $m+1$ vector containing all the $a_k$, is it possible to express $\mathbf{c}$ as a matrix product of $\mathbf{a}$ with other matrices?
I've been thinking about constructing some matrices to pad the $\mathbf{a}$ with zeros up to the length of $\mathbf{c}$, then making a reversed copy, but haven't been able to get any further. Thanks!
This squaring transformation could be viewed as $$\begin{array}{llll} &\begin{bmatrix}a_0\end{bmatrix}&&\xrightarrow{\square}&&&\begin{bmatrix}a_0^2\end{bmatrix}\\ &\begin{bmatrix}a_0\\a_1\end{bmatrix}&&\xrightarrow{\square}&&&\begin{bmatrix}a_0^2\\2a_0a_1\\a_1^2\end{bmatrix}\\ &\begin{bmatrix}a_0\\a_1\\a_2\end{bmatrix}&&\xrightarrow{\square}&&&\begin{bmatrix}a_0^2\\2a_0a_1\\a_1^2+2a_0a_2\\2a_1a_2\\a_2^2\end{bmatrix}\\ &\begin{bmatrix}a_0\\a_1\\a_2\\a_3\end{bmatrix}&&\xrightarrow{\square}&&&\begin{bmatrix}a_0^2\\2a_0a_1\\a_1^2+2a_0a_2\\2a_0a_3+2a_1a_2\\a_2^2+2a_1a_3\\2a_2a_3\\a_3^2\end{bmatrix}\\ \end{array}$$ and so on...
Left multiplication involves a $\quad (2m+1) \times (m+1)\quad$ sized matrix of the following step down pattern: $$\begin{bmatrix}a_0&0\\a_1&a_0\\0&a_1\end{bmatrix}\begin{bmatrix}a_0\\a_1\end{bmatrix}=\begin{bmatrix}a_0^2\\2a_0a_1\\a_1^2\end{bmatrix}$$
$$\begin{bmatrix}a_0&0&0\\a_1&a_0&0\\a_2&a_1&a_0\\0&a_2&a_1\\0&0&a_2\end{bmatrix}\begin{bmatrix}a_0\\a_1\\a_2\end{bmatrix}=\begin{bmatrix}a_0^2\\2a_0a_1\\a_1^2+2a_0a_2\\2a_1a_2\\a_2^2\end{bmatrix}$$ and so on... so if there were a matrix that answered this OP's question, it could be of this type: $$\begin{bmatrix}a_0&0&0&\cdots&0\\a_1&a_0&0&\cdots&0\\a_2&a_1&a_0&\cdots&0\\\vdots&\vdots&\vdots&\ddots\\a_m&a_{m-1}&a_{m-2}&\cdots&a_0\\0&a_m&a_{m-1}&\cdots&a_1\\0&0&a_m&\cdots&\vdots\\0&0&0&\ddots\\ \vdots&\vdots&\vdots&\cdots&\vdots\\0&0&0&\cdots&a_m\end{bmatrix}$$ where each column has $\quad m+1\quad$ entries that make up the components of $\quad \mathbf{a}\quad$ and $\quad m\quad$ more zeros, just graduated down