Unit 1 - Notes
Unit 1: Matrix Algebra
1. Elementary Operations on a Matrix
Elementary operations (or transformations) are operations performed on the rows or columns of a matrix to simplify it without changing its fundamental properties (like rank or the solution set of corresponding linear equations).
There are three types of elementary row (and column) operations:
- Interchange of two rows (or columns):
- Notation: (Interchange -th and -th rows).
- Column Notation: .
- Multiplication of a row (or column) by a non-zero scalar:
- Notation: where .
- Addition of a scalar multiple of one row (or column) to another:
- Notation: (Add times the -th row to the -th row).
Note: Two matrices and are said to be equivalent () if one can be obtained from the other by a finite sequence of elementary operations.
2. Rank of a Matrix
The rank of a matrix , denoted by , is defined as the maximum number of linearly independent rows or columns in the matrix. Alternatively, it is the order of the largest non-zero minor of the matrix.
Finding Rank using Elementary Operations
To find the rank easily, we use elementary operations to reduce the matrix into standard forms:
A. Row Echelon Form
A matrix is in row echelon form if:
- All non-zero rows are above any rows of all zeros.
- The leading coefficient (the first non-zero number from the left, also called the pivot) of a non-zero row is always strictly to the right of the leading coefficient of the row above it.
- All entries in a column below a leading entry are zeros.
Rank Calculation: The rank is exactly the number of non-zero rows in its Row Echelon Form.
B. Normal Form (Canonical Form)
By applying both elementary row and column operations, any matrix of rank can be reduced to one of the following forms, known as the Normal Form:
where is the identity matrix of order .
Rank Calculation: The rank is , the order of the identity matrix obtained.
3. Inverse of a Matrix using Elementary Operations (Gauss-Jordan Method)
The inverse of a square non-singular matrix (i.e., ) can be found using elementary row operations.
Procedure:
- Write the matrix alongside an identity matrix of the same order to form an augmented matrix: .
- Apply a sequence of elementary row operations exclusively to transform the matrix into the identity matrix .
- Apply the exact same operations simultaneously to the identity matrix .
- Once the left side becomes , the right side will transform into .
Warning: Never mix row and column operations when finding the inverse using this method. Stick to only row operations.
4. Solution of Linear Simultaneous Equations
A system of linear equations in variables can be written in matrix form as:
Where:
- is the coefficient matrix.
- is the column matrix of variables.
- is the column matrix of constants.
Consistency of the System (Rouché-Capelli Theorem)
To analyze the system, we form the augmented matrix and find its rank.
- Consistent System (Solution Exists): If .
- Unique Solution: If (number of variables).
- Infinite Solutions: If . The system will have free variables (where is the rank).
- Inconsistent System (No Solution): If .
Gauss Elimination Method
This method uses elementary row operations to systematically solve the equations:
- Write the augmented matrix .
- Apply elementary row operations to reduce to an upper triangular matrix (Row Echelon Form).
- Rewrite the reduced matrix as a system of equations.
- Use back-substitution to find the values of the variables, starting from the last variable and working upwards.
5. Eigenvalues and Eigenvectors
For a square matrix of order , a scalar is called an eigenvalue of if there exists a non-zero column vector such that:
Here, is called the eigenvector corresponding to the eigenvalue .
Finding Eigenvalues
- Rewrite the equation as .
- For a non-trivial solution (since ), the determinant of the coefficient matrix must be zero:
This is called the Characteristic Equation of matrix . - Expanding this determinant yields a polynomial of degree in terms of . The roots of this polynomial () are the eigenvalues (or latent roots/characteristic roots).
Finding Eigenvectors
For each eigenvalue , substitute it back into the equation:
Solve this homogeneous system of linear equations to find the non-zero vector .
Properties of Eigenvalues
- The sum of the eigenvalues of a matrix is equal to the trace of the matrix (sum of main diagonal elements).
- The product of the eigenvalues is equal to the determinant of the matrix ().
- If is an eigenvalue of , then is an eigenvalue of .
- If is non-singular, and is an eigenvalue of , then is an eigenvalue of .
- The eigenvalues of a triangular or diagonal matrix are simply its diagonal elements.
6. Cayley-Hamilton Theorem
The Cayley-Hamilton theorem bridges matrix algebra and polynomial equations.
Statement:
Every square matrix satisfies its own characteristic equation.
If the characteristic polynomial of an matrix is:
Then substituting matrix for yields the zero matrix :
(Note: the constant term is multiplied by the identity matrix )
Applications of the Cayley-Hamilton Theorem
-
Finding the Inverse of a Matrix:
If , multiply the Cayley-Hamilton equation by :
Rearranging this gives an explicit formula for in terms of lower powers of :
(where ) -
Finding Higher Powers of a Matrix:
The theorem allows any matrix polynomial of degree to be reduced to a polynomial of degree at most .
Example: .
By multiplying by , one can recursively find , etc., without performing heavy matrix multiplications.