Skip to main content

วิธีการคำนวณ 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.

คำแนะนำทีละขั้นตอน

  1. 1For 2×2: A⁻¹ = (1/det) × [[d,−b],[−c,a]]
  2. 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 ฟรี

ลองด้วยตัวคุณเอง→

การตั้งค่า