Enter a square matrix and transformed vector values. See invertibility checks, inverse matrices, and steps. Download clean reports and inspect coordinate behavior visually today.
| Item | Values |
|---|---|
| Matrix A | [[2,1,0],[1,2,1],[0,1,2]] |
| Transformed Vector y | [4,8,8] |
| Recovered Vector x | [1,2,3] |
| Determinant | 4 |
| Meaning | The matrix is invertible, so the original vector exists uniquely. |
Let T(x) = Ax, where A is a square matrix. If det(A) ≠ 0, then A is invertible and the inverse transformation exists.
y = Ax x = A^-1y det(A) ≠ 0 => inverse exists r = Ax - y ||r|| = sqrt(sum of squared residual components)
The calculator first tests invertibility through the determinant. Next, it uses Gauss-Jordan elimination to build A-1. It then multiplies the inverse matrix by the transformed vector y to recover the original vector x. Finally, it verifies the result by computing A × x and the residual norm.
It recovers the original input vector x from a transformed vector y when the rule is y = Ax and the matrix A has an inverse.
An inverse exists when the matrix is square and its determinant is not zero. That means the mapping is one-to-one and onto.
The determinant is the fastest invertibility test here. A zero determinant means the matrix is singular, so no unique inverse transformation exists.
They describe structural information about the transformation. Full rank supports invertibility, while nullity shows how many input directions collapse to zero.
It measures how closely the verified vector A × x matches the entered transformed vector. Smaller values indicate a more accurate numerical recovery.
Yes. The inputs accept integers, decimals, and negative numbers. The calculations are handled numerically and displayed using your selected precision.
That usually means the determinant is zero. In that case, the matrix compresses space and cannot be reversed uniquely.
It compares recovered original coordinates with transformed coordinates. This helps you inspect how the matrix changes magnitude and direction component by component.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.