কীভাবে Matrix Inverse গণনা করবেন
Matrix Inverse কি?
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 ক্যালকুলেটর চেষ্টা করুন
নিজে চেষ্টা করে দেখুন →