Matrix Calculator — Determinant, Inverse, Multiplication

Free matrix calculator: determinant, inverse, transpose, addition, multiplication and rank with steps.

About this calculator

A matrix calculator performs the standard matrix operations: addition, subtraction, multiplication, transpose, inverse, determinant, and eigenvalue computation. Matrices are the fundamental data structure of linear algebra and underpin computer graphics, machine learning, quantum mechanics, and structural engineering.

Hand-computing a 4×4 inverse or determinant is a ~30-minute exercise prone to arithmetic errors. A symbolic calculator gives exact answers instantly for matrices up to size 6×6 — the practical limit for human verification.

Formula

A^{-1} = \frac{1}{\det(A)} \text{adj}(A)

  • det(A) — Determinant; must be non-zero for A to be invertible
  • adj(A) — Adjugate (transpose of cofactor matrix)
  • Identity — A × A⁻¹ = I

Worked example

Inputs: 2×2 matrix A = [[2, 3], [1, 4]]

  1. det(A) = (2 × 4) − (3 × 1) = 5
  2. adj(A) = [[4, −3], [−1, 2]]
  3. A⁻¹ = (1/5) × [[4, −3], [−1, 2]] = [[0.8, −0.6], [−0.2, 0.4]]
  4. Verify: A × A⁻¹ = [[1, 0], [0, 1]] ✓

Frequently asked questions

When is a matrix non-invertible?

A square matrix is non-invertible (singular) when its determinant is zero — meaning its columns are linearly dependent. Geometrically, the matrix "squashes" its input vectors onto a lower-dimensional space, losing information. Singular matrices arise in over-determined or under-determined systems of equations.

Why is matrix multiplication non-commutative?

In general AB ≠ BA. Multiplication encodes composition of linear transformations, and the order of transformations matters — rotating then scaling is not the same as scaling then rotating. Two specific cases where AB = BA: when A or B is the identity, and when A and B share eigenvectors.

Related calculators

Equation Solver Complex Numbers Derivative

More calculators

EMI Calculator Mortgage Calculator SIP Calculator Compound Interest GST / VAT Calculator Salary Calculator Unit Converter Currency Converter Scientific Calculator Concrete Calculator Paint Calculator Tile Calculator Calorie / TDEE Body Fat Macro Calculator O-Ring Sizes Bolt & Nut Sizes Pipe Sizes Wire Gauge AWG Needle Gauge Chart IV Cannula Sizes Suture Sizes Catheter French Sizes Drug Dosage See all 90+ calculators ›