How to Calculate Determinants

104 28
    • 1
      Image 1: First-Term Calculation.

      Calculate the determinant of the bottom right 2 X 2 sub-matrix (D1). Multiply that value by the upper-left value in the matrix. These values are highlighted in Image 1.
      D1 = 3*1 - 5*2 = 3 - 10 = -7
      a11 * D1 = 2*(-7) = -14

    • 2
      Second-Term Calculation.

      Repeat this step for the top-center value and its associated 2 X 2 sub-matrix (D2).
      D2 = 4*1 - 2*(-3) = 4 + 6 = 10
      a12 * D2 = 1*10 = 10

    • 3
      3rd-Term Calculation

      Repeat this step for the top-right value and its associated 2 X 2 matrix (D3).
      D3 = 4*5 - 3*(-3) = 20 + 9 = 29
      a13 * D3 = 3 * 29 = 87

    • 4). Use these 3 values to calculate the determinant for the full 3 X 3 matrix. The equation is:
      D = a11*D1 - a12*D2 + a13* D3
      D = -14 - 10 + 87 = 59

Source...
Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.