To find the inverse of a 2x2 matrix \(A\), we use the formula:
\(A^{-1} = \frac{1}{\text{det}(A)} \begin{bmatrix} d & -b\\ -c & a \end{bmatrix}\)
where the matrix \(A\) is:
| \(A= \begin{bmatrix} a & b\\ c & d \end{bmatrix} = \begin{bmatrix} 2 & 3\\ 1 & 4 \end{bmatrix}\) |
Therefore, the inverse of matrix \(A\) is:
\(\frac{1}{5}\begin{bmatrix}4 & -3\\-1 & 2\end{bmatrix}\)
This matches the correct answer option provided.