You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The determinant is a useful value when describing a matrix. It can be denoted in one of three ways:
$\text{det } \left(\mathbf{A}\right)$
$\text{det } \mathbf{A}$
$|\mathbf{A}|$
1x1 Matrices
The determinant of a $1\times1$ matrix is just the value of the matrice's only element. For example if $\mathbf{A} = \begin{vmatrix}4\end{vmatrix}$, then the determinant of $\mathbf{A}$ is given by:
$$\begin{vmatrix}\mathbf{A}\end{vmatrix} = 4$$
2x2 Matrices
The determinant of a $2\times2$ matrix is given by:
$$\begin{vmatrix}\mathbf{A}\end{vmatrix} = \begin{vmatrix}
a & b \\
c & d \end{vmatrix} = ad - bc
$$
Larger Matrices
If you are interested in learning more you should look at the Wikipedia article: Determinant.
Inverse
The inverse of a matrix $\mathbf{A}$ is given by $\mathbf{A^{-1}}$
A matrix $\mathbf{A}$ is invertible if there exists a matrix $\mathbf{B}$ such that the product of $\mathbf{A}$ and $\mathbf{B}$ is the identity matrix$\mathbf{I}$:
$$\mathbf{AB} = \mathbf{BA} = \mathbf{I}$$
1x1 Matrices
For a $1\times1$ matrix with a single element with value $a$, the inverse is simlpy $\frac{1}{a}$
2x2 Matrices
The inverse of a $2\times 2$ matrix is given by the following equation: