learn.howToCalculate
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 계산기를 사용해 보세요
직접 시도해 보세요 →