Next Page Previous Page Home Tools & Aids Search Handbook
6. Process or Product Monitoring and Control
6.5. Tutorials
6.5.3. Elements of Matrix Algebra

6.5.3.2.

Determinant and Eigenstructure

A matrix determinant is difficult to define but a very useful number Unfortunately, not every square matrix has an inverse (although most do). Associated with any square matrix is a single number that represents a unique function of the numbers in the matrix. This scalar function of a square matrix is called the determinant. The determinant of a matrix A is denoted by |A|. A formal definition for the deteterminant of a square matrix A = (aij) is somewhat beyond the scope of this Handbook. Consult any good linear algebra textbook if you are interested in the mathematical details.
Singular matrix As is the case of inversion of a square matrix, calculation of the determinant is tedious and computer assistance is needed for practical calculations. If the determinant of the (square) matrix is exactly zero, the matrix is said to be singular and it has no inverse.
Determinant of variance-covariance matrix Of great interest in statistics is the determinant of a square symmetric matrix D whose diagonal elements are sample variances and whose off-diagonal elements are sample covariances. Symmetry means that the matrix and its transpose are identical (i.e., A = A'). An example is
D =
 [s1**2  s1*s2*r12  ...  s1*sp*r1p;
  s2*s1*r21  s2**2  ...  s2*sp*r2p;
                 ....             ;
  sp*s1*rp1  sp*s2*rp2  ...  sp**2]

where s1 and s2 are sample standard deviations and rij is the sample correlation.

D is the sample variance-covariance matrix for observations of a multivariate vector of p elements. The determinant of D, in this case, is sometimes called the generalized variance.

Characteristic equation In addition to a determinant and possibly an inverse, every square matrix has associated with it a characteristic equation. The characteristic equation of a matrix is formed by subtracting some particular value, usually denoted by the greek letter lambda (lambda), from each diagonal element of the matrix, such that the determinant of the resulting matrix is equal to zero. For example, the characteristic equation of a second order (2 x 2) matrix A may be written as
Definition of the characteristic equation for 2x2 matrix
|A - lambda*I| = |a11-lambda   a12; a21   a22-lambda| = 0
Eigenvalues of a matrix For a matrix of order p, there may be as many as p different values for lambda that will satisfy the equation. These different values are called the eigenvalues of the matrix.
Eigenvectors of a matrix Associated with each eigenvalue is a vector, v, called the eigenvector. The eigenvector satisfies the equation

Av = lambdav
Eigenstructure of a matrix If the complete set of eigenvalues is arranged in the diagonal positions of a diagonal matrix V, the following relationship holds

AV = VL

This equation specifies the complete eigenstructure of A. Eigenstructures and the associated theory figure heavily in multivariate procedures and the numerical evaluation of L and V is a central computing problem.

Home Tools & Aids Search Handbook Previous Page Next Page