Search for a tool
Determinant of a Matrix

Tool to compute a matrix determinant. The determinant of a square matrix M is a useful value computed from its inner elements and denoted det(M) or |M|.

Results

Determinant of a Matrix -

Tag(s) : Matrix

Share
Share
dCode and more

dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!


Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!


Feedback and suggestions are welcome so that dCode offers the best 'Determinant of a Matrix' tool for free! Thank you!

Determinant of a Matrix

Matrix 2x2 Determinant Calculator

Loading...
(if this message do not disappear, try to refresh this page)

Matrix 3x3 Determinant Calculator

Loading...
(if this message do not disappear, try to refresh this page)

Matrix 4x4 Determinant Calculator

Loading...
(if this message do not disappear, try to refresh this page)

Matrix NxN Determinant Calculator

Loading...
(if this message do not disappear, try to refresh this page)

Answers to Questions (FAQ)

What is the matrix determinant? (Definition)

The determinant of a matrix is a value associated with a matrix (or with the vectors defining it), this value is very practical in various matrix calculations.

How to calculate a matrix determinant?

For a 2x2 square matrix (order 2), the calculation is:

$$ \begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc $$

Example: $$ \begin{vmatrix} 1 & 2 \\ 3 & 4 \end{vmatrix} = 1 \times 4 - 2 \times 3 = -2 $$

For higher size matrix like order 3 (3x3), compute:

$$ \begin{vmatrix} a & b & c \\ d & e & f \\ g & h & i \end{vmatrix} = a \begin{vmatrix} e & f \\ h & i \end{vmatrix} - b \begin{vmatrix} d & f \\ g & i \end{vmatrix} + c \begin{vmatrix} d & e \\ g & h \end{vmatrix} \\ = aei-afh+bfg-bdi+cdh-ceg $$

The calculated sub-matrices are called minors of the original matrix.

The idea is the same for higher matrix sizes:

For an order 4 determinant of a 4x4 matrix:

$$ \begin{vmatrix} a & b & c & d \\ e & f & g & h \\ i & j & k & l \\ m & n & o & p \end{vmatrix} = a \begin{vmatrix} f & g & h \\ j & k & l \\ n & o & p \end{vmatrix} - b \begin{vmatrix} e & g & h \\ i & k & l \\ m & o & p \end{vmatrix} + c \begin{vmatrix} e & f & h \\ i & j & l \\ m & n & p \end{vmatrix} - d \begin{vmatrix} e & f & g \\ i & j & k \\ m & n & o \end{vmatrix} \\ = \\ a(fkp − flo − gjp + gln + hjo − hkn) − b(ekp − elo − gip + glm + hio − hkm) + c(ejp − eln − fip + flm + hin − hjm) − d(ejo − ekn − fio + fkm + gin − gjm) \\ = \\ afkp − aflo − agjp + agln + ahjo − ahkn − bekp + belo + bgip − bglm − bhio + bhkm + cejp − celn − cfip + cflm + chin − chjm − dejo + dekn + dfio − dfkm − dgin + dgjm $$

How to calculate the determinant for a non square matrix?

The determinant of a non-square matrix is not defined, it does not exist according to the definition of the determinant.

What is the formula for calculating the determinant of a matrix of order n?

There is no other formula than the explanation above for the general case of a matrix of order n.

How to compute the determinant of a matrix 1x1?

For a 1x1 matrix, the determinant is the only item of the matrix.

Example: $$ | 1 | = 1 $$

What is the determinant of an identity matrix?

An identity matrix has for determinant $ 1 $.

Example: $$ \begin{vmatrix} 1 & 0 \\ 0 & 1 \end{vmatrix} = 1 \times 1 - 0 \times 0 $$

Example: $$ \begin{vmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{vmatrix} = ( 1 \times 1 \times 1) - (1 \times 0 \times 0) + (0 \times 0 \times 0) - (0 \times 0 \times 1) + (0 \times 0 \times 0) - (0 \times 1 \times 0) = 1 $$

Only the term corresponding to the multiplication of the diagonal will be 1 and the other terms will be null.

What is the determinant of a transpose matrix?

A transpose matrix has the same determinant as the untransposed matrix and hence a matrix has the same determinant as its own transpose matrix.

How to find a matrix determinant from its eigenvalues?

The determinant of a matrix is the product of its eigenvalues (including complex values and potential multiplicity).

This property is valid for any size of square matrix (2x2, 3x3, 4x4, 5x5, etc.)

Source code

dCode retains ownership of the "Determinant of a Matrix" source code. Except explicit open source licence (indicated Creative Commons / free), the "Determinant of a Matrix" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Determinant of a Matrix" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Determinant of a Matrix" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.

Cite dCode

The copy-paste of the page "Determinant of a Matrix" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Determinant of a Matrix on dCode.fr [online website], retrieved on 2024-11-18, https://www.dcode.fr/matrix-determinant

Need Help ?

Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!

Questions / Comments

Feedback and suggestions are welcome so that dCode offers the best 'Determinant of a Matrix' tool for free! Thank you!


https://www.dcode.fr/matrix-determinant
© 2024 dCode — The ultimate 'toolkit' to solve every games / riddles / geocaching / CTF.
 
Feedback