Mathematics, Statistics & Geometry

Inverse Matrix Calculator

Calculate the exact inverse of a 2x2 or 3x3 matrix using determinants and the adjugate matrix. Vital for solving complex linear systems.

Inverse Matrix A⁻¹
[0.6000, -0.7000] ...
Calculation StepsDeterminant |A| = (4*6) - (7*2) = 10 Inverse Formula for 2x2: (1/|A|) * | d -b | | -c a | = (1/10) * | 6 -7 | | -2 4 | = | 0.6000 -0.7000 | | -0.2000 0.4000 |

Calculated locally in your browser. Fast, secure, and private.

Undoing Linear Transformations

The Inverse Matrix Calculator performs the heavy lifting of advanced linear algebra. By calculating the determinant and adjugate matrices behind the scenes, it generates the exact inverse for any non-singular 2x2 or 3x3 matrix.

A1=1det(A)adj(A)\begin{aligned} A^{-1} = \frac{1}{\det(A)} \text{adj}(A) \end{aligned}

Where:
A1A^{-1}=
The matrix that, when multiplied by A, yields the Identity matrix
det(A)\det(A)=
The scalar value of the matrix
adj(A)\text{adj}(A)=
The transpose of the cofactor matrix

Solving Systems of Equations

The primary reason engineers need inverse matrices is to solve complex systems of linear equations simultaneously.

If you have a system of equations written as Ax=BAx = B (where A is a matrix of coefficients, x are the variables, and B is the answers), you cannot "divide" by a matrix to isolate x. Instead, you multiply both sides by the inverse of A: x=A1Bx = A^{-1} B

Real-World Applications

  • Computer Graphics: When a 3D camera moves forward, the entire 3D world must mathematically move backward. The graphics engine calculates the 'Inverse View Matrix' 60 times a second to render this accurately.
  • Cryptography: The Hill Cipher uses a matrix to encrypt a secret message. To decrypt it, the receiver must multiply the encrypted message by the exact inverse of the encryption matrix.
  • Structural Engineering: Calculating the tension in multiple interconnected bridge trusses simultaneously.

Frequently Asked Questions

An inverse matrix is the linear algebra equivalent of a reciprocal. Just as multiplying a number by its reciprocal yields 1, multiplying a matrix by its inverse yields the Identity Matrix.

No. Only square matrices (e.g., 2x2, 3x3) can have inverses. Furthermore, if the determinant of the matrix is exactly 0, it is called a 'singular' matrix and has no inverse.

It is a square matrix with 1s on the main diagonal and 0s everywhere else. It acts exactly like the number '1' in standard arithmetic.

Swap the top-left and bottom-right numbers. Multiply the top-right and bottom-left numbers by -1. Finally, divide all four numbers by the determinant.

For a 3x3 matrix, the adjugate is found by calculating the determinant of the 2x2 'minor' for every single position, applying an alternating plus/minus sign (cofactor), and then transposing the result.