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›Determinant of Matrices: 2x2 and Higher Order
    Math Deficiency - ITopic 23 of 38

    Determinant of Matrices: 2x2 and Higher Order

    12 minread
    2,049words
    Intermediatelevel

    Determinant of Matrices: 2x2 and Higher Order

    The determinant of a square matrix is a scalar value that can be computed from its elements and encodes important properties of the matrix, such as whether the matrix is invertible or the volume scaling factor of the linear transformation it represents. The determinant of a matrix is often used in systems of equations, eigenvalue problems, and matrix inversions.

    Determinant of 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 determinant of AAA (denoted as det(A)\text{det}(A)det(A) or ∣A∣|A|∣A∣) is given by the formula:

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

    Example:

    Given the matrix:

    A=[3425]A = \begin{bmatrix} 3 & 4 \\ 2 & 5 \end{bmatrix}A=[32​45​]

    The determinant is:

    det(A)=(3)(5)−(4)(2)=15−8=7\text{det}(A) = (3)(5) - (4)(2) = 15 - 8 = 7det(A)=(3)(5)−(4)(2)=15−8=7

    Thus, det(A)=7\text{det}(A) = 7det(A)=7.

    Determinant of a 3x3 Matrix

    For a 3×33 \times 33×3 matrix:

    A=[abcdefghi]A = \begin{bmatrix} a & b & c \\ d & e & f \\ g & h & i \end{bmatrix}A=​adg​beh​cfi​​

    The determinant of AAA is calculated using the formula:

    det(A)=a(ei−fh)−b(di−fg)+c(dh−eg)\text{det}(A) = a(ei - fh) - b(di - fg) + c(dh - eg)det(A)=a(ei−fh)−b(di−fg)+c(dh−eg)

    This formula expands the determinant by cofactor expansion along the first row.

    Example:

    Given the matrix:

    A=[123456789]A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \\ 7 & 8 & 9 \end{bmatrix}A=​147​258​369​​

    The determinant is:

    det(A)=1⋅(5⋅9−6⋅8)−2⋅(4⋅9−6⋅7)+3⋅(4⋅8−5⋅7)\text{det}(A) = 1 \cdot (5 \cdot 9 - 6 \cdot 8) - 2 \cdot (4 \cdot 9 - 6 \cdot 7) + 3 \cdot (4 \cdot 8 - 5 \cdot 7)det(A)=1⋅(5⋅9−6⋅8)−2⋅(4⋅9−6⋅7)+3⋅(4⋅8−5⋅7)

    Simplifying each term:

    det(A)=1⋅(45−48)−2⋅(36−42)+3⋅(32−35)\text{det}(A) = 1 \cdot (45 - 48) - 2 \cdot (36 - 42) + 3 \cdot (32 - 35)det(A)=1⋅(45−48)−2⋅(36−42)+3⋅(32−35) det(A)=1⋅(−3)−2⋅(−6)+3⋅(−3)\text{det}(A) = 1 \cdot (-3) - 2 \cdot (-6) + 3 \cdot (-3)det(A)=1⋅(−3)−2⋅(−6)+3⋅(−3) det(A)=−3+12−9=0\text{det}(A) = -3 + 12 - 9 = 0det(A)=−3+12−9=0

    Thus, det(A)=0\text{det}(A) = 0det(A)=0, indicating that the matrix is singular (non-invertible).


    Determinant of Higher-Order Matrices (4x4 and Beyond)

    For matrices of order greater than 3×33 \times 33×3, such as 4×44 \times 44×4, the determinant can be computed using cofactor expansion or Laplace expansion. This process involves expanding the determinant along a row or column and calculating the determinants of smaller submatrices.

    Cofactor Expansion:

    For an n×nn \times nn×n matrix AAA, the determinant is expanded along the first row (or any row/column) using the formula:

    det(A)=∑i=1n(−1)i+jaijdet(Aij)\text{det}(A) = \sum_{i=1}^{n} (-1)^{i+j} a_{ij} \text{det}(A_{ij})det(A)=i=1∑n​(−1)i+jaij​det(Aij​)

    Where:

    • aija_{ij}aij​ is the element in the iii-th row and jjj-th column.
    • AijA_{ij}Aij​ is the (n−1)×(n−1)(n-1) \times (n-1)(n−1)×(n−1) submatrix obtained by deleting the iii-th row and jjj-th column from AAA.
    • The sign (−1)i+j(-1)^{i+j}(−1)i+j is called the cofactor.

    4x4 Determinant Example:

    For a 4×44 \times 44×4 matrix:

    A=[abcdefghijklmnop]A = \begin{bmatrix} a & b & c & d \\ e & f & g & h \\ i & j & k & l \\ m & n & o & p \end{bmatrix}A=​aeim​bfjn​cgko​dhlp​​

    The determinant of AAA can be computed as:

    det(A)=a⋅det([fghjklnop])−b⋅det([eghiklmop])+c⋅det([efhijlmnp])−d⋅det([efgijkmno])\text{det}(A) = a \cdot \text{det}\left(\begin{bmatrix} f & g & h \\ j & k & l \\ n & o & p \end{bmatrix}\right) - b \cdot \text{det}\left(\begin{bmatrix} e & g & h \\ i & k & l \\ m & o & p \end{bmatrix}\right) + c \cdot \text{det}\left(\begin{bmatrix} e & f & h \\ i & j & l \\ m & n & p \end{bmatrix}\right) - d \cdot \text{det}\left(\begin{bmatrix} e & f & g \\ i & j & k \\ m & n & o \end{bmatrix}\right)det(A)=a⋅det​​fjn​gko​hlp​​​−b⋅det​​eim​gko​hlp​​​+c⋅det​​eim​fjn​hlp​​​−d⋅det​​eim​fjn​gko​​​

    This expansion continues recursively, reducing the problem to smaller and smaller matrices until you reach 2×22 \times 22×2 matrices, which can be directly computed.


    Properties of Determinants

    1. Multiplicative Property: The determinant of a product of two square matrices is the product of their determinants:

      det(AB)=det(A)⋅det(B)\text{det}(AB) = \text{det}(A) \cdot \text{det}(B)det(AB)=det(A)⋅det(B)
    2. Determinant of Transpose: The determinant of the transpose of a matrix is equal to the determinant of the matrix:

      det(AT)=det(A)\text{det}(A^T) = \text{det}(A)det(AT)=det(A)
    3. Determinant of Inverse: If a matrix AAA is invertible, the determinant of its inverse is the reciprocal of the determinant of AAA:

      det(A−1)=1det(A)\text{det}(A^{-1}) = \frac{1}{\text{det}(A)}det(A−1)=det(A)1​
    4. Effect of Row Operations on Determinants:

      • Row swapping: If two rows of a matrix are swapped, the determinant changes sign.
      • Row scaling: Multiplying a row by a scalar kkk multiplies the determinant by kkk.
      • Row addition: Adding a multiple of one row to another does not change the determinant.
    5. Singular Matrices: If the determinant of a matrix is 0 (det(A)=0\text{det}(A) = 0det(A)=0), the matrix is singular and does not have an inverse.

    6. Determinant of a Diagonal Matrix: The determinant of a diagonal matrix is the product of its diagonal elements:

      det(D)=d1⋅d2⋅⋯⋅dn\text{det}(D) = d_1 \cdot d_2 \cdot \dots \cdot d_ndet(D)=d1​⋅d2​⋅⋯⋅dn​

      where DDD is a diagonal matrix and d1,d2,…,dnd_1, d_2, \dots, d_nd1​,d2​,…,dn​ are the diagonal elements.

    7. Determinant of a Scalar Multiple: If AAA is an n×nn \times nn×n matrix and kkk is a scalar, then:

      det(kA)=kn⋅det(A)\text{det}(kA) = k^n \cdot \text{det}(A)det(kA)=kn⋅det(A)

      where kAkAkA denotes the matrix obtained by multiplying each element of AAA by kkk.


    Summary

    • Determinant of a 2x2 Matrix: For a matrix [abcd]\begin{bmatrix} a & b \\ c & d \end{bmatrix}[ac​bd​], the determinant is det(A)=ad−bc\text{det}(A) = ad - bcdet(A)=ad−bc.
    • Determinant of a 3x3 Matrix: The determinant can be calculated using cofactor expansion.
    • Determinant of Higher-Order Matrices (4x4 and Beyond): Determinants can be calculated through cofactor expansion, recursively breaking the matrix down into smaller submatrices until you reach 2×22 \times 22×2 matrices.
    • Properties: Determinants have important properties, such as being multiplicative and affecting matrix invertibility, and they can be impacted by row operations.

    Understanding how to compute determinants and the properties they have is crucial in solving systems of linear equations, finding matrix inverses, and more advanced topics like eigenvalues and eigenvectors.

    Previous topic 22
    Augmented Matrices
    Next topic 24
    Cramer's Rule

    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,049
      Code examples0
      DifficultyIntermediate