如何计算Matrix Inverse
learn.whatIsHeading
The inverse A⁻¹ satisfies AA⁻¹ = I (identity matrix). Exists only when det(A) ≠ 0. Used to solve systems of equations: Ax=b → x = A⁻¹b.
分步指南
- 1For 2×2: A⁻¹ = (1/det) × [[d,−b],[−c,a]]
- 2For larger: row reduction (Gauss-Jordan elimination)
例题解析
输入
A = [[3,1],[5,2]] · det=1
结果
A⁻¹ = [[2,-1],[-5,3]]
Verify: AA⁻¹ = [[1,0],[0,1]] ✓
准备好计算了吗?尝试免费的 Matrix Inverse 计算器
自己尝试一下 →