ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Math Deficiency - I
    MD-001
    Progress0 / 38 topics
    Topics
    1. Sets: Definition, Representation, and Operations2. Relation and Function: Graphical Transformation of Functions3. Properties of Functions4. Composition and Inverses of Functions5. Domain and Range of Functions6. Maximum and Minimum Values of Functions7. Increasing and Decreasing Functions8. Zeros and Intercepts of Functions9. Piecewise Functions10. Continuity and Discontinuity of Functions11. Polynomials and Rational Functions12. Polynomial Long Division and Synthetic Division13. Solution of Rational Functions14. Absolute Valued Functions and Their Properties15. Asymptotes: Horizontal, Vertical, and Oblique16. Exponential Functions and Their Properties17. Logarithmic Functions and Their Properties18. Systems of Equations: Two Equations and Two Unknowns19. Systems of Equations: Three Equations and Three Unknowns20. Matrix Algebra: Addition, Subtraction, and Multiplication21. Row Operations and Row Echelon Forms22. Augmented Matrices23. Determinant of Matrices: 2x2 and Higher Order24. Cramer's Rule25. Inverse Matrices26. Series and Sequences27. Trigonometry: Angles in Radians and Degrees28. Right Triangle Trigonometry29. Law of Cosines and Sines30. Area of a Triangle31. Graphs of Trigonometric Functions32. Graphs of Inverse Trigonometric Functions33. Basic Trigonometric Identities34. Trigonometric Equations35. General Form of a Conic: Parabolas, Circles, Ellipses, and Hyperbolas36. Degenerate Conics37. Polar and Parametric Equations38. Polar and Rectangular Coordinates
    MD-001›Inverse Matrices
    Math Deficiency - ITopic 25 of 38

    Inverse Matrices

    12 minread
    2,052words
    Intermediatelevel

    Inverse Matrices

    An inverse matrix is a matrix that, when multiplied by the original matrix, yields the identity matrix. Not every matrix has an inverse; a matrix must be square (i.e., the number of rows must equal the number of columns) and non-singular (its determinant must be non-zero) to have an inverse.

    The concept of an inverse matrix is essential in solving systems of linear equations, finding matrix equations, and in various applications across mathematics, physics, and engineering.

    Definition of Inverse Matrix

    Given a square matrix AAA, if there exists a matrix A−1A^{-1}A−1 such that:

    A⋅A−1=A−1⋅A=IA \cdot A^{-1} = A^{-1} \cdot A = IA⋅A−1=A−1⋅A=I

    where III is the identity matrix (of the same order as AAA), then A−1A^{-1}A−1 is called the inverse of AAA.

    For a matrix AAA to have an inverse:

    • AAA must be square (n×nn \times nn×n).
    • det(A)≠0\text{det}(A) \neq 0det(A)=0, meaning the matrix is non-singular.

    If det(A)=0\text{det}(A) = 0det(A)=0, then AAA does not have an inverse, and the matrix is called singular.

    Identity Matrix

    The identity matrix III is a special type of square matrix where all the diagonal elements are 1, and all off-diagonal elements are 0. For example:

    For 2×22 \times 22×2:

    I2=[1001]I_2 = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}I2​=[10​01​]

    For 3×33 \times 33×3:

    I3=[100010001]I_3 = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{bmatrix}I3​=​100​010​001​​

    The identity matrix behaves like the number 1 in matrix multiplication. That is, for any matrix AAA:

    A⋅I=I⋅A=AA \cdot I = I \cdot A = AA⋅I=I⋅A=A

    How to Find the Inverse of a Matrix

    1. For a 2x2 Matrix

    For a 2×22 \times 22×2 matrix:

    A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}A=[ac​bd​]

    The inverse of AAA, denoted A−1A^{-1}A−1, is given by the formula:

    A−1=1det(A)[d−b−ca]A^{-1} = \frac{1}{\text{det}(A)} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}A−1=det(A)1​[d−c​−ba​]

    where det(A)=ad−bc\text{det}(A) = ad - bcdet(A)=ad−bc.

    Conditions: For the inverse to exist, the determinant must be non-zero (det(A)≠0\text{det}(A) \neq 0det(A)=0).

    Example:

    Given the matrix:

    A=[4726]A = \begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix}A=[42​76​]

    First, compute the determinant:

    det(A)=(4)(6)−(7)(2)=24−14=10\text{det}(A) = (4)(6) - (7)(2) = 24 - 14 = 10det(A)=(4)(6)−(7)(2)=24−14=10

    Since det(A)=10≠0\text{det}(A) = 10 \neq 0det(A)=10=0, the matrix has an inverse.

    Now, use the formula for the inverse of a 2×22 \times 22×2 matrix:

    A−1=110[6−7−24]A^{-1} = \frac{1}{10} \begin{bmatrix} 6 & -7 \\ -2 & 4 \end{bmatrix}A−1=101​[6−2​−74​]

    Thus:

    A−1=[610−710−210410]=[0.6−0.7−0.20.4]A^{-1} = \begin{bmatrix} \frac{6}{10} & \frac{-7}{10} \\ \frac{-2}{10} & \frac{4}{10} \end{bmatrix} = \begin{bmatrix} 0.6 & -0.7 \\ -0.2 & 0.4 \end{bmatrix}A−1=[106​10−2​​10−7​104​​]=[0.6−0.2​−0.70.4​]

    So, the inverse of matrix AAA is:

    A−1=[0.6−0.7−0.20.4]A^{-1} = \begin{bmatrix} 0.6 & -0.7 \\ -0.2 & 0.4 \end{bmatrix}A−1=[0.6−0.2​−0.70.4​]

    2. For a 3x3 Matrix

    For a 3×33 \times 33×3 matrix, the process of finding the inverse is more complex. One common method is to use the adjoint method (also called the adjugate matrix) and the determinant.

    Given a matrix A=[a11a12a13a21a22a23a31a32a33]A = \begin{bmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{bmatrix}A=​a11​a21​a31​​a12​a22​a32​​a13​a23​a33​​​, the inverse of AAA is given by:

    A−1=1det(A)⋅adj(A)A^{-1} = \frac{1}{\text{det}(A)} \cdot \text{adj}(A)A−1=det(A)1​⋅adj(A)

    Where:

    • adj(A) is the adjoint (or adjugate) of AAA, which is the transpose of the cofactor matrix of AAA.
    • det(A) is the determinant of AAA.

    The cofactor matrix involves calculating the cofactor for each element of the matrix, which is the signed determinant of the 2×22 \times 22×2 submatrix formed by deleting the row and column containing that element.

    Steps to find A−1A^{-1}A−1:

    1. Compute det(A)\text{det}(A)det(A).
    2. Compute the matrix of minors.
    3. Compute the cofactor matrix by applying signs (+ or -) to the minors.
    4. Find the adjoint (transpose of the cofactor matrix).
    5. Multiply the adjoint by 1det(A)\frac{1}{\text{det}(A)}det(A)1​.

    Example for a 3x3 Matrix:

    Given the matrix:

    A=[123014560]A = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{bmatrix}A=​105​216​340​​
    1. Find the determinant of AAA:
    det(A)=1⋅det[1460]−2⋅det[0450]+3⋅det[0156]\text{det}(A) = 1 \cdot \text{det}\begin{bmatrix} 1 & 4 \\ 6 & 0 \end{bmatrix} - 2 \cdot \text{det}\begin{bmatrix} 0 & 4 \\ 5 & 0 \end{bmatrix} + 3 \cdot \text{det}\begin{bmatrix} 0 & 1 \\ 5 & 6 \end{bmatrix}det(A)=1⋅det[16​40​]−2⋅det[05​40​]+3⋅det[05​16​] det(A)=1⋅(−24)−2⋅(−20)+3⋅(−5)\text{det}(A) = 1 \cdot (-24) - 2 \cdot (-20) + 3 \cdot (-5)det(A)=1⋅(−24)−2⋅(−20)+3⋅(−5) det(A)=−24+40−15=1\text{det}(A) = -24 + 40 - 15 = 1det(A)=−24+40−15=1

    Since det(A)=1≠0\text{det}(A) = 1 \neq 0det(A)=1=0, the inverse exists.

    1. Compute the adjugate and inverse. (This process involves finding the minors, cofactors, and adjugate matrix, which requires several intermediate steps).

    The final result for A−1A^{-1}A−1 will be:

    A−1=[−242054−5−14−4−1]A^{-1} = \begin{bmatrix} -24 & 20 & 5 \\ 4 & -5 & -1 \\ 4 & -4 & -1 \end{bmatrix}A−1=​−2444​20−5−4​5−1−1​​

    Properties of the Inverse Matrix

    1. Multiplicative Property:

      A⋅A−1=A−1⋅A=IA \cdot A^{-1} = A^{-1} \cdot A = IA⋅A−1=A−1⋅A=I

      The product of a matrix and its inverse is the identity matrix.

    2. Inverse of a Product:

      (AB)−1=B−1⋅A−1(AB)^{-1} = B^{-1} \cdot A^{-1}(AB)−1=B−1⋅A−1

      The inverse of a product of two matrices is the product of the inverses in reverse order.

    3. Inverse of the Transpose:

      (AT)−1=(A−1)T(A^T)^{-1} = (A^{-1})^T(AT)−1=(A−1)T

      The inverse of the transpose of a matrix is the transpose of the inverse.

    4. Inverse of a Scalar Multiple:

      (kA)−1=1kA−1,k≠0(kA)^{-1} = \frac{1}{k} A^{-1}, \quad k \neq 0(kA)−1=k1​A−1,k=0

      The inverse of a scalar multiple of a matrix is the scalar reciprocal times the inverse of the matrix.

    5. Double Inverse:

      (A−1)−1=A(A^{-1})^{-1} = A(A−1)−1=A

      The inverse of the inverse of a matrix is the matrix itself.


    Summary

    • An inverse matrix A−1A^{-1}A−1 is the matrix that satisfies A⋅A−1=IA \cdot A^{-1} = IA⋅A−1=I, where III is the identity matrix.
    • For a matrix to have an inverse, it must be square and have a non-zero determinant.
    • The inverse of a 2×22 \times 22×2 matrix is computed using a simple formula, while the inverse of a 3×33 \times 33×3 matrix (and higher order matrices) requires more complex procedures involving minors, cofactors, and adjugates.
    • Inverses have several important properties, such as the multiplicative property and the relationship with transposition and scalar multiplication.

    The inverse matrix is a crucial tool in solving systems of linear equations and is widely used in linear algebra and beyond.

    Previous topic 24
    Cramer's Rule
    Next topic 26
    Series and Sequences

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time12 min
      Word count2,052
      Code examples0
      DifficultyIntermediate