- For numbers: a × a^ = 1.
- For matrices: A × A^ = I, where I is the identity matrix (1s on the diagonal, 0s elsewhere). Multiplying any matrix by the identity leaves it unchanged, so the inverse is the matrix analog of a reciprocal.
ad − bcis the determinant of A.adj(A)(the adjugate) is formed by swappingaandd, and negatingbandc:

a = 2, b = 3, c = 1, d = 4.
- Compute the determinant:
- Form the adjugate by swapping
aanddand negatingbandc:
- Multiply the adjugate by
1/det(A):

I = [ [1,0], [0,1] ]. Do the four scalar dot-products in the usual order:
- row 1 of A × column 1 of A^
- row 1 of A × column 2 of A^
- row 2 of A × column 1 of A^
- row 2 of A × column 2 of A^
1/5, then apply the scalar factor:
- (row1·col1) = 2×4 + 3×(−1) = 8 − 3 = 5
- (row1·col2) = 2×(−3) + 3×2 = −6 + 6 = 0
- (row2·col1) = 1×4 + 4×(−1) = 4 − 4 = 0
- (row2·col2) = 1×(−3) + 4×2 = −3 + 8 = 5
1/5 gives I = [ [1,0], [0,1] ], confirming the inverse.

ad − bc appears in the denominator of the inverse formula. If the determinant is zero, the formula would divide by zero and no inverse exists. Such matrices are called singular or non-invertible.
Example of a zero determinant:
det = 2×6 − 4×3 = 12 − 12 = 0
If the determinant equals zero the matrix has no inverse. Such matrices are called singular.

Practical example: correcting sensor readings for movement
Imagine sensor readings distorted by vehicle motion. The motion can be modeled by a movement matrix that transforms the true sensor matrix. To recover the original readings, multiply the measured sensor matrix by the appropriate correction matrix (the inverse of the movement matrix).

(1/det) and the adjugate (swap a and d, negate b and c), then multiply that inverse by the sensor readings matrix to correct them.



- For a 2×2 matrix A = [ [a, b], [c, d] ], the inverse is
A^{-1} = (1/(ad−bc)) × adj(A). - The determinant
ad − bcmust be nonzero for the inverse to exist. - Verification via
A × A^{-1} = Iconfirms correctness. - Applications: inverse and multiplication are used for correcting sensor measurements, calibration, and many applied linear-algebra tasks in robotics and autonomous systems.