MDETERM()

Syntax. MDETERM(array)

Definition. This function returns the determinant of an array.

Argument

  • array (required) A numeric array with an equal number of rows and columns

Background. The calculation of the determinant is based on a numeric array. An array can be given as the following:

  • A cell range (for example, A1:C3)

  • An array constant (for example, {1.2.3;4.5.6;7.8.9})

  • A name for a cell range or an array constant

If the cells in the array are empty or contain text, the MDETERM() function returns the #VALUE! error. If the array does not have an equal number of rows and columns, the MDETERM() function returns the #VALUE! error.

Determinants are generally used for solving systems of equations. If the determinant is zero, the equation has no (definite) solution.

To calculate the determinant of array A, use the following formulas:

  • If A is a 1x1 array:

    det(A) = a1,1

  • If A is a 2x2 array:

    det(A) = a11 • a22 – a12 • a21

  • If A is an 3x3 array:

    det(A) = a11 • a22 • a33 + a12 • a23 • a31 + a13 • a21 • a32 – a13 • a22 • a31 – a12 • a21 • a33 – a11 • a23 • a32

Gottfried Leibniz (German philosopher and mathematician, 1646–1716) developed the Leibniz formula as a common formula for an n • n array:

image with no caption

Example. See the example for the MINVERSE() function.

See Also

MINVERSE(), MMULT(), TRANSPOSE()

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.191.195.111