next up previous
Next: Area of a parallelogram Up: Applications of Determinant Previous: Introduction

Definition of Determinant

Determinant is a function which as an input accepts $n\times n$ matrix and out put is a real or a complex number that is called the determinant of the input matrix. One way to define determinant of an $n\times n$ matrix $ A $ is the following formula:


\begin{displaymath}det(A)= \sum _{(i_1 i_2 \cdots i_n)} \pm a_{i_1}a_{i_2}\cdots a_{i_n} \end{displaymath}

Where the terms are summed over all permutations $(i_1 i_2 \cdots i_n) $, and the sign is + if the permutation is even, otherwise it is -.

There are easier ways to compute the determinant rather than using this formula. For example determinant of a $ 2\times 2 $ matrix $ A $ can be find by


\begin{displaymath}det(A)=
\left\vert \begin{array}{rr}
a & b \\
c & d\\
\end{array}\right\vert
=ad-bc\end{displaymath}

and determinant of a $ 3\times 3$ matrix $ A $ can be find by writing the first two columns of $ A $ as columns 4 and 5 and then compute the sum of the products entries of the first three diagonals from left to right mines the sum of the products entries of the first three diagonals from right to left.



 3 by 3,  Determinant

There are other ways of computing the determinant of a given matrix, for example row operations can be used to reduce the matrix to a triangular matrix whose determinant is the product of the diagonal entries, another way is using cofactor expansion. In MATLAB you can use the command " det(A)" to compute the determinant of a given square matrix $ A $.

You may find more information about determinant in the following web sites:

1. Determinant and Inverse of Matrices
2. Determinant
3. Determinants


next up previous
Next: Area of a parallelogram Up: Applications of Determinant Previous: Introduction
Ali A. Daddel 2000-09-15