Mathematics IIUnit 314 min read
Matrix Algebra & Determinants: Properties, Operations & Applications
Unit 3 of Mathematics II covers matrix algebra (addition, multiplication, transpose, inverse) and determinants (properties, evaluation, applications), including cofactor expansion, rank, and linear independence—essential for solving systems, transformations, and abstract algebra.
Core Concepts & Definitions
1. Matrix Algebra
1.1 Matrix Basics
- A matrix of size is a rectangular array of scalars:
- Types:
- Square matrix: (e.g., , ).
- Diagonal matrix: Non-zero entries only on the diagonal ( for ).
- Identity matrix : Diagonal entries = 1, others = 0.
- Zero matrix: All entries = 0.
- Upper/lower triangular: Entries below/above the diagonal are zero.
1.2 Matrix Operations
| Operation | Definition | Example |
|---|---|---|
| Addition | if same dimensions; | |
| Scalar Multiplication | : Multiply each entry by scalar | |
| Transpose | : Swap rows and columns () | |
| Matrix Multiplication | if columns of = rows of ; |
Key Properties:
- Non-commutative: in general.
- Associative: .
- Distributive: .
Worked Example: Find where: Solution:
2. Matrix Inverse
flowchart TD
A[Augmented Matrix [A|I]] --> B[Row Operations]
B --> C[Row Reduced to [I|A⁻¹]]
C --> D[Extract A⁻¹]
style A fill:#f9f, style D fill:#bbfGaussian elimination process for finding matrix inverse
2.1 Definition
A matrix is invertible (or non-singular) if there exists a matrix such that:
- Only square matrices can have inverses.
- Conditions for invertibility:
- (non-zero determinant).
- Rows/columns are linearly independent.
2.2 Methods to Find
Method 1: Adjugate (Adjoint) Method
For a matrix: Example: Find for . Solution:
Method 2: Gaussian Elimination (Row Reduction)
Augment with and row-reduce to : Example: Find for . Solution: Thus,
2.3 Applications of Matrix Inverse
- Solving linear systems: .
- Computer graphics (transformations).
- Cryptography (e.g., Hill cipher).
3. Determinants
3.1 Definition
For a square matrix , the determinant is a scalar value that:
- Indicates if is invertible ().
- Measures the scaling factor of the linear transformation represented by .
3.2 Properties of Determinants
| Property | Description |
|---|---|
| Determinant of identity matrix is 1. | |
| Multiplicative property. | |
| Determinant of transpose is equal. | |
| Scaling by multiplies determinant by (for matrix). | |
| Row operations: | |
| - Swap rows: | |
| - Multiply row by : | |
| - Add multiple of one row to another: unchanged. | |
| if: | |
| - Any row/column is zero. | |
| - Two rows/columns are identical. | |
| - Rows/columns are linearly dependent. |
3.3 Evaluation of Determinants
Method 1: Cofactor Expansion (Laplace Expansion)
For an matrix, expand along a row or column: where is the minor (submatrix without row , column ).
Example: Compute for: Solution: Expand along the first row:
Method 2: Row Reduction (Upper Triangular Form)
- Use row operations to convert to upper triangular form.
- product of diagonal entries.
Example: Compute for: Solution:
- :
- :
- : Now, .
Method 3: Special Cases
- Diagonal/Upper/Lower Triangular: .
- 2×2 Matrix:
- 3×3 Matrix (Rule of Sarrus):
3.4 Applications of Determinants
- Solving linear systems: implies no unique solution (either no solution or infinitely many).
- Area/Volume scaling: gives the scaling factor of the linear transformation.
- Cramer’s Rule: For , , where replaces the -th column of with .
4. Rank of a Matrix
4.1 Definition
The rank of a matrix , , is the maximum number of linearly independent rows or columns.
4.2 Properties
- for matrix.
- for an invertible matrix.
- .
4.3 Finding Rank
Row Echelon Form (REF): Convert to REF and count non-zero rows. Example: Find the rank of: Solution:
- :
- :
- :
- Rank = 3 (all rows are non-zero).
Using Determinants:
- The rank is the largest such that some submatrix has non-zero determinant.
4.4 Applications
- Solving linear systems: Rank determines the number of free variables.
- Linear transformations: Rank indicates the dimension of the image space.
5. Linear Independence and Null Space
5.1 Linear Independence
A set of vectors is linearly independent if:
- For matrices: Columns (or rows) are linearly independent if the matrix has full column (or row) rank.
Example: Check if the columns of are linearly independent. Solution:
- Form a matrix with columns as vectors and check rank:
- Thus, columns are linearly independent.
5.2 Null Space (Kernel)
The null space of , , is the set of all solutions to :
- Basis for Null Space: Found by solving in REF.
- Dimension of Null Space = (for matrix).
Example: Find the basis for where: Solution:
- Convert to REF:
- Back-substitute:
- .
- .
- General solution:
- Basis: .
Verification: Check if is in for: Solution: Correction: The original question had , but . Likely a typo in the exam; verify with correct .
Exam Tip
Common Pitfalls & Strategies
Matrix Multiplication:
- Mistake: Assuming . Always check dimensions and compute carefully.
- Tip: Use the "dot product of rows and columns" rule.
Determinant Calculation:
- Mistake: Forgetting the sign in cofactor expansion.
- Tip: Expand along the row/column with the most zeros to simplify calculations.
Inverse Existence:
- Mistake: Assuming all square matrices are invertible. Always check .
- Tip: For matrices, compute .
Rank and Null Space:
- Mistake: Confusing rank with the number of non-zero rows in the original matrix (must be in REF).
- Tip: Always reduce to REF before counting rank.
Linear Independence:
- Mistake: Assuming columns are independent just because the matrix is square.
- Tip: Use determinant or row reduction to verify.
High-Score Techniques
- Show all steps: Partial credit is given for correct intermediate steps.
- Use properties: For determinants, use row operations to simplify before expanding.
- Verify answers: For inverses, multiply and to check if is obtained.
- Practice cofactor expansion: Memorize the pattern for matrices to save time.
Past Exam Patterns
- Direct computation: 60% of questions ask for determinant/inverse/rank calculations.
- Theoretical questions: 20% define concepts (e.g., null space, rank, linear independence).
- Application-based: 20% relate to solving systems or verifying properties (e.g., ).
Recommended Practice
- Drill cofactor expansion for and matrices.
- Solve systems using inverses and Cramer’s Rule.
- Find null spaces and bases for subspaces (common in TU/PU exams).
- Prove linear independence using determinants or row reduction.
Based on the TU BSc CSIT syllabus for Mathematics II (MTH168), unit 3.
Discussion
Loading…