maths.freeLinear Algebra › Matrix inverse

Matrix inverse

The 2×2 formula and Gauss–Jordan elimination for the rest.

A⁻¹ is the matrix that undoes A. For 2×2 there is a formula; for anything bigger, row-reduce [A | I] until A becomes I, and the identity becomes A⁻¹ — every row operation is shown.

काम में एक अच्छी मिसाल: inverse of [[1,2],[3,4]]

Inverse of [[1,2],[3,4]]

\left[\begin{matrix}1 & 2\\3 & 4\end{matrix}\right]

चरण द्वारा कदम

  1. \det A = -2

    A matrix is invertible only when its determinant is non-zero.

  2. A^{-1} = \frac{1}{\det A}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix} = \frac{1}{-2}\left[\begin{matrix}4 & -2\\-3 & 1\end{matrix}\right]

    For 2×2: swap the diagonal, negate the off-diagonal, divide by the determinant.

  3. A^{-1} = \left[\begin{matrix}-2 & 1\\\frac{3}{2} & - \frac{1}{2}\end{matrix}\right]

जवाब दिखाएँ
A^{-1} = \left[\begin{matrix}-2 & 1\\\frac{3}{2} & - \frac{1}{2}\end{matrix}\right]

अपने आप की कोशिश करें

अधिक में Linear Algebra