I have a state-space evolution equation of the form
$$\begin{bmatrix}u_k\cr v_k\end{bmatrix} = \begin{bmatrix}1-a & c \cr b(a-1) & 1-bc\end{bmatrix} \begin{bmatrix}u_{k-1}\cr v_{k-1}\end{bmatrix} + \begin{bmatrix}0 & a \cr b & -ab\end{bmatrix} \begin{bmatrix}x_{k}\cr x_{k-1}\end{bmatrix} $$
where $a,b,c$ are known and the equation relates state values $u_k$ and $v_k$ as a function of input sequence $x_k$.
I don't care about the value of $u_k$, just the values of $v_k$. I know it is possible to eliminate the $u_k$ somehow, and restate this as a 2nd-order difference equation of the form
$$v_k + a_1v_{k-1} + a_2v_{k-2} = b_0x_k + b_1x_{k-1} + b_2x_{k-2}$$
but it has been years since I've done this sort of stuff at university, and I can't remember how to do this.
How can I write $a_1, a_2, b_0, b_1, b_2$ in terms of $a,b,c$?
You have from the second equation (shifted by one position) $$v_{k+1}=A_{21}u_k+A_{22}v_k+B_{21}x_{k+1}+B_{22}x_k.$$ Assuming that $A_{21}\ne 0$ you can use this equation to get an expression for $u_k$ (and $u_{k-1}$ with one index shift back). Then insert this twice into the first row of the equation, \begin{multline} \frac{v_{k+1}-(A_{22}v_k+B_{21}x_{k+1}+B_{22}x_k)}{A_{21}}=\\ A_{11}\frac{v_{k}-(A_{22}v_{k-1}+B_{21}x_{k}+B_{22}x_{k-1})}{A_{21}}+A_{12}v_{k-1}+B_{11}x_{k}+B_{12}x_{k-1}. \end{multline} Should you find determinant and trace expressions in the resulting recursion equation, then you did it right.