Summary of Determinants

🎨 Determinants Overview
  • Determinants provide a value for square matrices (only applicable for square matrices). 🎲

  • The determinant is used in linear algebra to determine properties of matrices, such as invertibility. πŸ”‘

🌟 Second Order Determinant
  • For a 2x2 matrix:

    A=(aamp;bΒ camp;d)A = \begin{pmatrix} a & b \ c & d \end{pmatrix}

  • The determinant is calculated as:

    ∣A∣=adβˆ’bc|A| = ad - bc

  • This corresponds to the difference between the product of the main diagonal and the product of the other diagonal. πŸŽ‰

✨ Example of 2x2 Determinant
  • For matrix

    (2amp;5Β 3amp;8)\begin{pmatrix} 2 & 5 \ 3 & 8 \end{pmatrix}:

    ∣A∣=2Γ—8βˆ’3Γ—5=16βˆ’15=1|A| = 2 \times 8 - 3 \times 5 = 16 - 15 = 1 🎈

πŸ” Finding Unknowns in Determinants
  • Unknowns can appear in determinants; solve for the unknown via the determinant equation. πŸ”Ž

  • Example:

    x2βˆ’4(1amp;0Β 1amp;0)=0x^2 - 4 \begin{pmatrix} 1 & 0 \ 1 & 0 \end{pmatrix} = 0

    results in the quadratic equation:

    x2βˆ’4=0β‡’x=Β±2x^2 - 4 = 0 \Rightarrow x = \pm 2 πŸ’‘

🎈 Third Order Determinant
  • For a 3x3 matrix:

    A=(a<em>11amp;a</em>12amp;a<em>13Β a</em>21amp;a<em>22amp;a</em>23Β a<em>31amp;a</em>32amp;a33)A = \begin{pmatrix} a<em>{11} &amp; a</em>{12} &amp; a<em>{13} \ a</em>{21} &amp; a<em>{22} &amp; a</em>{23} \ a<em>{31} &amp; a</em>{32} &amp; a_{33} \end{pmatrix}

  • The determinant is denoted as:

    ∣A∣|A|

  • To compute, understand the concept of minor determinants associated with elements of the matrix. 🌟

🧩 Minor Determinants
  • Minor is obtained by deleting the row and column of a given element.

  • Sign of the minor determinant depends on the order of the row and column:

    • Even: Positive (+) ✨

    • Odd: Negative (βˆ’) ⚠

βœ” Sign Rule for Minors
  • Example: - Element: a11a_{11} β†’ sign is + (1 + 1 = 2, even)

    • Element: a12a_{12} β†’ sign is βˆ’ (1 + 2 = 3, odd)

πŸŽ‰ Expanding the Third Order Determinant
  • Expanding can use any row or column: - ∣A∣=a<em>11β‹…M</em>11βˆ’a<em>12β‹…M</em>12+a<em>13β‹…M</em>13|A| = a<em>{11} \cdot M</em>{11} - a<em>{12} \cdot M</em>{12} + a<em>{13} \cdot M</em>{13}

    • Where MijM_{ij} are minor determinants. πŸ€

🌈 Determinant of Triangular Matrices
  • Value equals the product of the diagonal elements. πŸ’«

πŸš€ Application: Area of Triangle Using Determinants
  • Determine area using vertices coordinates: - If vertices are X(a,b),Y(c,d),Z(e,f)X(a, b), Y(c, d), Z(e, f) then:

    Area=12∣A∣Area = \frac{1}{2} |A|

    • Area calculated as the absolute value. πŸ“