learn.howToCalculate
learn.whatIsHeading
The determinant of a square matrix encodes whether it's invertible (det≠0), the volume scaling of the linear transformation, and orientation change. det=0 → singular matrix.
단계별 가이드
- 12×2: det [[a,b],[c,d]] = ad − bc
- 23×3: cofactor expansion along first row
- 3det<0 → transformation reverses orientation
풀어진 예시
입력
2×2 matrix [[a,b],[c,d]]
결과
det = ad − bc
For [[3,1],[2,4]]: det = 12−2 = 10
계산할 준비가 되셨나요? 무료 Matrix Determinant 계산기를 사용해 보세요
직접 시도해 보세요 →