ID EN
#Math

MDETERM

Excel Functions

Get matrix determinant of given array

Syntax

EXCEL
=MDETERM(array)

Arguments

Parameter Description
array A square array of numbers only.

Return Value

A number representing the matrix determinant

Details

The MDETERM function returns the matrix determinant of a given array, which must be a square matrix containing numbers only, and no empty values. In mathematics, the matrix determinant is a scalar value (single value) that is a function of the entries in a square matrix. The determinant is a special number that can help characterize some properties of the matrix. For example, if the determinant is zero, the matrix will not have an inverse. The MDETERM function takes just one argument, array, which can be provided as a range or an array constant. Array must be a square matrix with the same numbers of rows and columns. To get the matrix determinant for the 2 x 2 array shown in B7:C8, the formula in E7 is: The equivalent formula with an array constant is: To get the matrix determinant for the

Examples

Examples

To get the matrix determinant for the 2 x 2 array shown in B7:C8, the formula in E7 is:

EXCEL
=MDETERM(B7:C8) // returns -1
Examples

The equivalent formula with an array constant is:

EXCEL
=MDETERM({4,3;3,2}) // returns -1
Examples

To get the matrix determinant for the 3 x 3 array shown in I7:K9, the formula in M7 is:

EXCEL
=MDETERM(I7:K9) // returns 1
Examples

The equivalent formula with an array constant is:

EXCEL
=MDETERM({1,0,5;2,1,6;3,4,0}) // returns 1

See Also

MMULT MUNIT MINVERSE