The matrix A is given as:
$$
A=\left[\begin{array}{ll}
1 & 2 \\
3 & 5
\end{array}\right]
$$
The inverse of a 2x2 matrix can be found using the formula:
$$
A^{-1} = \frac{1}{ad-bc} \left[\begin{array}{ll}
d & -b \\
-c & a
\end{array}\right]
$$
where a, b, c, and d
Show more…