I have $A=\begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}$, $b=\begin{pmatrix}3 \\ 5\end{pmatrix}$. The system to be solved is $Ax=b$. We're also given:
$$B_\theta=\frac 1 4 \begin{pmatrix} 2\theta^2 + 2\theta + 1 & -2\theta^2 + 2\theta + 1 \\ -2\theta^2 + 2\theta + 1 & 2\theta^2 + 2\theta + 1 \end{pmatrix},\quad g_\theta=\begin{pmatrix}1/2 - \theta\\ 1/2 - \theta\end{pmatrix} $$
I have to show that the iterative method
$$x_{n+1} = B_\theta x_n + g_\theta$$
converges to the solution of $Ax=b$.
I thought maybe it might be an SOR method, but I calculated the SOR matrix for $Ax=b$ and it doesn't look anything like $B_\theta$. Of course I could invert $A$ to compute $x$ and plug that into the fixed point equation, but I think we're intended to use some other method, or recognize some common iterative method.