Ask iit jee aieee pet cbse icse state board community Discussion Response Post to: Determinants- Must SEE
Forum Index -> Community shelf -> View Full Question Email  
Author Message
Tarin Bansal (3906)

Blazing goIITian


Tarin Bansal's Avatar

total posts: 3134    
Offline
In linear algebra, a determinant is a function depending on n that associates a scalar det(A) to every n×n square matrix A. The fundamental geometric meaning of a determinant is as the scale factor for volume when A is regarded as a linear transformation. Determinants are important both in calculus, where they enter the substitution rule for several variables, and in multilinear algebra.
For a fixed positive integer n, there is a unique determinant function for the n×n matrices over any commutative ring R. In particular, this is true when R is the field of real or complex numbers.
A determinant of A is also sometimes denoted by |A|, but this notation is ambiguous: it is also used to for certain matrix norms, and for the square root of AA * .
 

Determinants of 2-by-2 matrices

The 2×2 matrix
A=egin{bmatrix}a&b\ c&dend{bmatrix}
has determinant
det(A)=ad-bc ,.
The interpretation when the matrix has real number entries is that this gives the area of the parallelogram with vertices at (0,0), (a,c), (b,d), and (a + b, c + d), with a sign factor (which is ?1 if A as a transformation matrix flips the unit square over).
A formula for larger matrices will be given below .

Applications

Determinants are used to characterize invertible matrices (namely as those matrices, and only those matrices, with non-zero determinants), and to explicitly describe the solution to a system of linear equations with Cramer's rule. They can be used to find the eigenvalues of the matrix A through the characteristic polynomial
p(x) = det(xI - A) ,
where I is the identity matrix of the same format as A.
One often thinks of the determinant as assigning a number to every sequence of n vectors in Bbb{R}^n, by using the square matrix whose columns are the given vectors. With this understanding, the sign of the determinant of a basis can be used to define the notion of orientation in Euclidean spaces. The determinant of a set of vectors is positive if the vectors form a right-handed coordinate system, and negative if left-handed.
Determinants are used to calculate volumes in vector calculus: the absolute value of the determinant of real vectors is equal to the volume of the parallelepiped spanned by those vectors. As a consequence, if the linear map f: Bbb{R}^nightarrow Bbb{R}^n is represented by the matrix A, and S is any measurable subset of Bbb{R}^n, then the volume of f(S) is given by left| det(A)ight| 	imes operatorname{volume}(S). More generally, if the linear map f: Bbb{R}^nightarrow Bbb{R}^m is represented by the m-by-n matrix A, and S is any measurable subset of Bbb{R}^{n}, then the n-dimensional volume of f(S) is given by sqrt{det(A^	op A)} 	imes operatorname{volume}(S). By calculating the volume of the tetrahedron bounded by four points, they can be used to identify skew lines.
The volume of any tetrahedron, given its vertices a, b, c, and d, is (1/6)·|det(a?b, b?c, c?d)|, or any other combination of pairs of vertices that form a simply connected graph.

General definition and computation

Suppose A = (A_{i,j}) , is a square matrix.
If A is a 1-by-1 matrix, then det(A) = A_{1,1} ,
If A is a 2-by-2 matrix, then det(A) = A_{1,1}A_{2,2} - A_{2,1}A_{1,2} ,
For a 3-by-3 matrix A, the formula is more complicated:
egin{matrix} det(A) & = & A_{1,1}A_{2,2}A_{3,3} + A_{1,3}A_{2,1}A_{3,2} + A_{1,2}A_{2,3}A_{3,1}\ & & - A_{1,3}A_{2,2}A_{3,1} - A_{1,1}A_{2,3}A_{3,2} - A_{1,2}A_{2,1}A_{3,3}. end{matrix},
For a general n-by-n matrix, the determinant was defined by Gottfried Leibniz with what is now known as the Leibniz formula:
det(A) = sum_{sigma in S_n} sgn(sigma) prod_{i=1}^n A_{i, sigma(i)}
The sum is computed over all permutations ? of the numbers {1,2,...,n} and sgn(?) denotes the signature of the permutation ?: +1 if ? is an even permutation and ?1 if it is odd (see even and odd permutations).
This formula contains n! (factorial) summands and is therefore impractical to use it to calculate determinants for large n.
In general, determinants can be computed with the Gauss algorithm using the following rules:
  • If A is a triangular matrix, i.e. A_{i,j} = 0 , whenever i > j, then det(A) = A_{1,1} A_{2,2} cdots A_{n,n} ,
  • If B results from A by exchanging two rows or columns, then det(B) = -det(A) ,
  • If B results from A by multiplying one row or column with the number c, then det(B) = c,det(A) ,
  • If B results from A by adding a multiple of one row to another row, or a multiple of one column to another column, then det(B) = det(A) ,
Explicitly, starting out with some matrix, use the last three rules to convert it into a triangular matrix, then use the first rule to compute its determinant.
It is also possible to expand a determinant along a row or column using Laplace's formula, which is efficient for relatively small matrices. To do this along row i, say, we write
det(A) = sum_{j=1}^n A_{i,j}C_{i,j} = sum_{j=1}^n A_{i,j} (-1)^{i+j} M_{i,j}
where the Ci,j represent the matrix cofactors, i.e. Ci,j is ( ? 1)i + j times the minor Mi,j, which is the determinant of the matrix that results from A by removing the i-th row and the j-th column.

Example

Suppose we want to compute the determinant of
A = egin{bmatrix}-2&2&-3\ -1& 1& 3\ 2 &0 &-1end{bmatrix}
We can go ahead and use the Leibniz formula directly:
det(A), =, (-2)cdot 1 cdot (-1) + (-3)cdot 0 cdot (-1) + 2cdot 3cdot 2
    - (-3)cdot 1 cdot 2 - (-2)cdot 3 cdot 0 - 2cdot (-1) cdot (-1)
  =, 2 + 0 + 12 - (-6) - 0 - 2 = 18.,
Alternatively, we can use Laplace's formula to expand the determinant along a row or column. It is best to choose a row or column with many zeros, so we will expand along the second column:
det(A), =, (-1)^{1+2}cdot 2 cdot det egin{bmatrix}-1&3\ 2 &-1end{bmatrix} + (-1)^{2+2}cdot 1 cdot det egin{bmatrix}-2&-3\ 2&-1end{bmatrix}
  =, (-2)cdot((-1)cdot(-1)-2cdot3)+1cdot((-2)cdot(-1)-2cdot(-3))
  =, (-2)(-5)+8 = 18.,
A third way (and the method of choice for larger matrices) would involve the Gauss algorithm. When doing computations by hand, one can often shorten things dramatically by smartly adding multiples of columns or rows to other columns or rows; this doesn't change the value of the determinant, but may create zero entries which simplifies the subsequent calculations. In our example, adding the second column to the first one is especially useful:
egin{bmatrix}0&2&-3\ 0 &1 &3\ 2 &0 &-1end{bmatrix}
and this determinant can be quickly expanded along the first column:
det(A), =, (-1)^{3+1}cdot 2cdot det egin{bmatrix}2&-3\ 1&3end{bmatrix}
  =, 2cdot(2cdot3-1cdot(-3)) = 2cdot 9 = 18.,

Properties

The determinant is a multiplicative map in the sense that
det(AB) = det(A)det(B) , for all n-by-n matrices A and B.
This is generalized by the Cauchy-Binet formula to products of non-square matrices.
It is easy to see that det(rI_n) = r^n , and thus
det(rA) = det(rI_n cdot A) = r^n det(A) , for all n-by-n matrices A and all scalars r.
The matrix A (over the real or complex numbers, or some other field) is invertible if and only if det(A)?0; in this case we have
det(A^{-1}) = det(A)^{-1} ,
Expressed differently: the vectors v1,...,vn in Rn form a basis if and only if det(v1,...,vn) is non-zero.
A real matrix and its transpose have the same determinant:
det(A^	op) = det(A) ,.
The determinants of a complex matrix and of its conjugate transpose are conjugate:
det(A^*) = det(A)^* ,.
(Note the conjugate transpose is identical to the transpose for a real matrix)
If A and B are similar, i.e., if there exists an invertible matrix X such that A = X ? 1BX, then by the multiplicative property,
det(A) = det(B) ,
This means that the determinant is a similarity invariant. Because of this, the determinant of some linear transformation T : V ? V for some finite dimensional vector space V is independent of the basis for V. The relationship is one-way, however: there exist matrices which have the same determinant but are not similar.
If A is a square n-by-n matrix with real or complex entries and if ?1,...,?n are the (complex) eigenvalues of A listed according to their algebraic multiplicities, then
det(A) = lambda_{1}lambda_{2} cdots lambda_{n}
This follows from the fact that A is always similar to its Jordan normal form, an upper triangular matrix with the eigenvalues on the main diagonal.
From this connection between the determinant and the eigenvalues, one can derive a connection between the trace function, the exponential function, and the determinant:
det(exp(A)) = exp(operatorname{tr}(A)).
Performing the substitution A mapsto ln A in the above equation yields
det(A) = e^{mbox{tr}(ln A)}. \

Derivative

The determinant of real square matrices is a polynomial function from Bbb{R}^{n 	imes n} to Bbb{R}, and as such is everywhere differentiable. Its derivative can be expressed using Jacobi's formula:
d ,det(A) = operatorname{tr}(operatorname{adj}(A) ,dA)
where adj(A) denotes the adjugate of A. In particular, if A is invertible, we have
d ,det(A) = det(A) ,operatorname{tr}(A^{-1} ,dA)
or, more colloquially,
det(A + X) - det(A) approx det(A) ,operatorname{tr}(A^{-1} X)
if the entries in the matrix X are sufficiently small. The special case where A is equal to the identity matrix I yields
det(I + X) approx 1 + operatorname{tr}(X).

Generalizations and related functions

As was pointed out above, it is possible to unambiguously define the determinant of any linear map f : V ? V, if V is a finite-dimensional vector space.
It makes sense to define the determinant for matrices whose entries come from any commutative ring. The computation rules, the Leibniz formula and the compatibility with matrix multiplication remain valid, except that now a matrix A is invertible if and only if det(A) is an invertible element of the ground ring.
Abstractly, one may define the determinant as a certain anti-symmetric multilinear map as follows: if R is a commutative ring and M = Rn denotes the free R-module with n generators, then
det: M^nightarrow R
is the unique map with the following properties:
  • det is R-linear in each of the n arguments.
  • det is anti-symmetric, meaning that if two of the n arguments are equal, then the determinant is zero.
  • det(e_1,ldots,e_n) = 1, where ei is that element of M which has a 1 in the i-th coordinate and zeros elsewhere.
Linear algebraists prefer to use the multilinear map approach to define determinant, whereas combinatorialists may prefer the Leibniz formula. (Of course, even when using the above abstract approach, one has to use the Leibniz formula to show that such a multilinear map actually exists.)
The Pfaffian is an analog of the determinant for 2n	imes 2n antisymmetric matrices. It is a polynomial of degree n, and its square is equal to the determinant of the matrix.
There is no direct generalisation of determinants, or of the notion of volume, to spaces of infinite dimension. There are various approaches possible, including the use of the extension of the trace of a matrix, and functional determinants.
 
PLEASE LEAVE YOUR VALUABLE COMMENTS AND RATE ME.

Tarin Bansal 3rd year undergraduate B.E. (Hons.) Electronics & Instrumentation BITS-Pilani Goa Campus Check out - www.theideacauldron.com
0 people liked this
 
Free Sign Up!

Preparing for IIT-JEE ?

Arihant Revision Package for IIT JEE - Books, Practice Tests + Rank Predictor


@ INR 1,995/-

For Quick Info

Name

Mobile No.

Sponsored Ads