Continuing the epic quest on finding matrix representations from here: Representation of hyperbolas. with a last part, the only conic section left: the parabola.
I will present one idea of how to structure this representation. But I hope to get examples of more elegant representations, hopefully ones which are conceptually similar to those of ellipses and hyperbolas.
Just to clarify: the objective is to find a matrix representation for a generating element such that the coordinates of a parabola are directly readable from some of the elements of a matrix power.
Remember addition can be represented as the block ${\bf M_{a+}} = \left(\begin{array}{cc} 1 & 0\\ a & 1 \end{array}\right)$ as we see that: $${\bf M_{a+}M_{b+}} = \left(\begin{array}{cc} 1 & 0\\ a & 1 \end{array}\right)\left(\begin{array}{cc} 1 & 0\\ b & 1 \end{array}\right) = \left(\begin{array}{cc} 1 & 0\\ a+b & 1 \end{array}\right)$$
Then observe that $({\bf M_{\Delta_t+}})^n$ will store $n\Delta_t$ at bottom left. And then expand the building block above with the row: $(\Delta_t\,1\,1)$, and we choose the column so we preserve triangularity.
If we take a look at this new matrix: $$\left(\begin{array}{ccc}1&0&0\\\Delta_t&1&0\\\Delta_t&1&1\end{array}\right)$$ Now the lower right 2x2 block will produce $n$ at position (3,2) if the matrix is raised to $n$.
One should be able to show that (3,1) becomes $\Delta_t \sum_{i=1}^{k} i$ which is the famous arithmetic sum which is a quadratic function. Now we have access to constant values, linear values and squares in our matrix.
What remains is to linearly combine these. We therefore create one last row and there we place the coefficients for our second degree polynomial $c+bx+ax^2$ : $(c+\Delta_t^2, b+\Delta_t, a+2\Delta_t)$. Our polynomial value will now end up in (4,1) such that $({\bf M}^n)_{(4,1)} = a(n\Delta_t)^2+b(n\Delta_t)+c$
All in all the generating element matrix looks like this: $${\bf M} = \left(\begin{array}{cccc}1&0&0&0\\\Delta_t&1&0&0\\\Delta_t&1&1&0\\\Delta_t^2+c&(\Delta_t+1)^2b&2a\Delta_t&0\end{array}\right)$$
We calculate the matrix powers, extract and plot $$x(n\Delta_t) = ({\bf M}^n)_{(2,1)}\\ y(n\Delta_t) = ({\bf M}^n)_{(4,1)}$$ which are compared to a "ground-truth" polynomial.
As you can see this is a quite big and cumbersome matrix as compared to the 2x2 generating elements for ellipses and hyperbola in the previous question. Does anyone have any idea of a more compact matrix representation?

As can be seen in second image there is also some minor flaw, likely a small constant fault.