Let $A = \begin{bmatrix} 2 & 3 \\ 4 & 5 \end{bmatrix}$ and let $B = \begin{bmatrix} 3 & 4 \\ 5 & 6 \end{bmatrix}$ Solve $A X = B$ for a matrix $X$
My guess is that i:
let $X = \begin{bmatrix} x \\ y \end{bmatrix}$
Then solve it using a linear equation but i'm not too sure. Any help would be appreciated.
Hint: Think about inverting Matrix A and rewriting it as $X=A^{-1}B$. The inverse of a 2 by 2 matrix is simple to generate by hand. Your approach is the right one but you will have to introduce a 2 by 2 matrix for $X$ instead of a vector.