Multiplicative Inverse Calculator
Find the value that multiplies with your original to give 1 — for real numbers, fractions, or 2×2 and 3×3 matrices — with full step-by-step working.
What is a multiplicative inverse?
The multiplicative inverse (or reciprocal) of a value is whatever you multiply it by to get the multiplicative identity — the number 1 for ordinary arithmetic, or the identity matrix I for matrices.
The idea is the same across all three cases, but the mechanics differ.
Multiplicative inverse, piece by piece
The same idea — find the y so that x · y = 1 — plays out differently for numbers, fractions, and matrices. Each card below covers one case and shows when the inverse does not exist.
Inverse of a real number
For any nonzero x, the inverse is 1/x. Multiplying the two gives 1 by construction.
Inverse of a fraction
Flip numerator and denominator. Their product (a·b)/(b·a) collapses to 1.
Inverse of a matrix
For a 2×2, divide the adjugate by the determinant. If det A = 0 the matrix is singular and no inverse exists.
Why zero has no inverse
An inverse of 0 would need to satisfy 0 · y = 1, but 0 · anything = 0. That's why 1 / 0 is undefined and the calculator refuses to invert 0.
Features of this calculator
- Three modes on one page: real number (1/x), fraction (b/a) and matrix (A⁻¹)
- Matrix mode supports 2×2 and 3×3 using the standard adjugate / determinant formula
- Detects the non-invertible cases — 0 for numbers, 0-numerator for fractions, det A = 0 for matrices
- Fraction results are auto-simplified using the GCD
- Every mode shows a verification step so you can see the product returns 1 (or the identity matrix)
- Clean handling of decimals and negatives throughout
Frequently asked questions
+Why doesn't zero have a multiplicative inverse?
Because no number multiplied by 0 gives 1 — the product is always 0. There's simply no value that satisfies the definition x · x⁻¹ = 1 when x = 0, so 1/0 is left undefined.
+What is a singular matrix?
A square matrix whose determinant is 0. Such a matrix has no inverse, because the formula A⁻¹ = (1/det A) · adj(A) would divide by zero. Singular matrices arise when the rows (or columns) are linearly dependent — one row is a combination of the others.
+Is reciprocal the same as multiplicative inverse?
For numbers and fractions, yes — the two words mean exactly the same thing. For matrices we usually say "inverse" rather than "reciprocal", but the definition is the same: whatever you multiply the original by to get the identity.
+What's the multiplicative inverse of 1 and −1?
1⁻¹ = 1 and (−1)⁻¹ = −1. They're each their own inverse, because 1·1 = 1 and (−1)·(−1) = 1.
+Does every non-zero matrix have an inverse?
No. Only square matrices can have inverses at all, and among square matrices, only those with a non-zero determinant. Non-square matrices have generalized inverses (like the Moore–Penrose pseudoinverse), but not a true multiplicative inverse.