A matrix is a rectangular arrangement of numbers organised into rows and columns, while a determinant is a single value calculated from a square matrix. Matrices are used to represent and solve systems of equations, while determinants help determine whether a matrix has an inverse and whether a system has a unique solution. These Matrices and Determinants JEE Notes cover matrix types, operations, transpose, determinants, properties, minors, cofactors, adjoint, inverse and Cramer's Rule for quick revision.
Matrices and Determinants JEE Notes: Matrix Basics and Types of Matrices
What is a Matrix?
A matrix is a rectangular arrangement of numbers called elements, arranged in rows and columns. A matrix having m rows and n columns is called an m × n matrix, where m × n represents its order.
The element in the ith row and jth column is represented as $$a_{ij}$$.
Types of Matrices
| Type | Definition |
|---|---|
| Row Matrix | Matrix having only one row |
| Column Matrix | Matrix having only one column |
| Square Matrix | Number of rows equals number of columns |
| Zero Matrix | All elements are zero |
| Diagonal Matrix | All non-diagonal elements are zero |
| Scalar Matrix | Diagonal matrix with equal diagonal elements |
| Identity Matrix | Diagonal elements are 1 and remaining elements are zero |
| Upper Triangular Matrix | All elements below the main diagonal are zero |
| Lower Triangular Matrix | All elements above the main diagonal are zero |
JEE Tip: Every identity matrix is a scalar matrix, and every scalar matrix is a diagonal matrix. These relationships are frequently tested in JEE questions.
Matrix Operations, Transpose and Special Matrices
Addition and Scalar Multiplication
Two matrices can be added or subtracted only when they have the same order. Addition is performed element-wise.
If $$A=[a_{ij}]$$ and $$B=[b_{ij}]$$, then:
$$A+B=[a_{ij}+b_{ij}]$$
For scalar multiplication, every element is multiplied by the scalar.
$$kA=[ka_{ij}]$$
Matrix Multiplication
Matrix multiplication is not performed element by element. The number of columns of the first matrix must equal the number of rows of the second matrix.
If A is an m × p matrix and B is a p × n matrix, then AB exists and has order m × n.
Important properties:
- $$AB$$ is generally not equal to $$BA$$.
- Matrix multiplication is associative: $$(AB)C=A(BC)$$.
- $$AI=IA=A$$.
- Two non-zero matrices can have a zero product.
Transpose of a Matrix
The transpose of a matrix is obtained by converting rows into columns and columns into rows.
If A is an m × n matrix, then $$A^T$$ is an n × m matrix.
Properties of transpose:
- $$(A^T)^T=A$$
- $$(A+B)^T=A^T+B^T$$
- $$(AB)^T=B^TA^T$$
Symmetric and Skew-Symmetric Matrices
| Matrix Type | Condition |
|---|---|
| Symmetric Matrix | $$A^T=A$$ |
| Skew-Symmetric Matrix | $$A^T=-A$$ |
For a skew-symmetric matrix, every diagonal element is always zero.
Determinants and Their Properties
A determinant is a scalar value associated with a square matrix. It helps determine whether a matrix has an inverse and whether a system of equations has a unique solution.
Determinant of a 2 × 2 Matrix
For:
$$A=\begin{bmatrix}a&b;\\c&d;\end{bmatrix}$$
The determinant is:
$$|A|=ad-bc$$
Determinant of a 3 × 3 Matrix
For a 3 × 3 matrix, the determinant can be expanded along any row or column.
$$ \begin{vmatrix} a&b;&c;\\ d&e;&f;\\ g&h;&i; \end{vmatrix} = a(ei-fh)-b(di-fg)+c(dh-eg) $$
Properties of Determinants
| Property | Result |
|---|---|
| Transpose | $$|A^T|=|A|$$ |
| Interchanging two rows | Sign of determinant changes |
| Two identical rows | Determinant becomes zero |
| Adding multiple of one row to another | Determinant remains unchanged |
| Scalar multiplication | $$|kA|=k^n|A|$$ |
| Product of matrices | $$|AB|=|A||B|$$ |
JEE Tip: Use row and column operations to create zeros before expanding a determinant. This reduces calculation time significantly.
Minors, Cofactors, Adjoint and Inverse
Minors and Cofactors
The minor of an element is the determinant obtained after deleting its row and column.
The cofactor is:
$$C_{ij}=(-1)^{i+j}M_{ij}$$
Adjoint of a Matrix
The adjoint of a matrix is the transpose of its cofactor matrix.
$$A\cdot adj(A)=|A|I$$
Inverse of a Matrix
A matrix has an inverse only when its determinant is not zero.
$$A^{-1}=\frac{adj(A)}{|A|}$$
A matrix with determinant zero is called a singular matrix and does not have an inverse.
Solving Linear Equations Using Cramer's Rule
Cramer's Rule is used to solve a system of linear equations when the determinant of the coefficient matrix is non-zero.
For a system:
$$AX=B$$
The variables are calculated as:
$$x=\frac{D_x}{D},\quad y=\frac{D_y}{D},\quad z=\frac{D_z}{D}$$
Where D is the determinant of the coefficient matrix and Dx, Dy, Dz are determinants obtained by replacing corresponding columns with constants.
For more practice, solve JEE questions regularly and revise important concepts using the JEE Mains Formula Sheet.
Matrices and Determinants Formula Sheet
| Concept | Formula / Result |
|---|---|
| Transpose | $$ (A^T)^T=A $$ |
| Transpose of product | $$ (AB)^T=B^TA^T $$ |
| Symmetric Matrix | $$A^T=A$$ |
| Skew-Symmetric Matrix | $$A^T=-A$$ |
| 2 × 2 Determinant | $$|A|=ad-bc$$ |
| Determinant of product | $$|AB|=|A||B|$$ |
| Scaled Matrix | $$|kA|=k^n|A|$$ |
| Cofactor | $$C_{ij}=(-1)^{i+j}M_{ij}$$ |
| Adjoint relation | $$A\cdot adj(A)=|A|I$$ |
| Inverse of Matrix | $$A^{-1}=\frac{adj(A)}{|A|}$$ |
| Inverse of Product | $$ (AB)^{-1}=B^{-1}A^{-1} $$ |
| Cramer's Rule | $$x=\frac{D_x}{D},y=\frac{D_y}{D},z=\frac{D_z}{D}$$ |
JEE Important Points, Common Mistakes and Quick Revision
Points JEE Repeatedly Tests
- Matrix addition and subtraction are possible only when matrices have the same order.
- Matrix multiplication depends on matching inner dimensions and is generally not commutative.
- The identity matrix behaves like the number 1 during matrix multiplication.
- The transpose of a product reverses the order of multiplication.
- A symmetric matrix remains unchanged after transpose.
- A skew-symmetric matrix always has zero diagonal elements.
- Only square matrices have determinants.
- Adding a multiple of one row to another does not change the determinant.
- Interchanging two rows changes the sign of the determinant.
- A matrix has an inverse only when its determinant is non-zero.
- Cramer's Rule can be applied only when the coefficient determinant is not zero.
- A system with a non-zero determinant always has a unique solution.
Common Mistakes to Avoid
- Assuming AB = BA: Matrix multiplication is generally not commutative.
- Ignoring matrix order: Always check dimensions before addition or multiplication.
- Forgetting transpose order: The transpose of a product reverses the order of matrices.
- Using determinant properties incorrectly: Multiplying a matrix by a scalar changes the determinant by the scalar raised to the order of the matrix.
- Confusing minors and cofactors: Cofactors include the sign factor while minors do not.
- Finding inverse without checking determinant: A singular matrix cannot have an inverse.
- Applying Cramer's Rule when determinant is zero: It is valid only for non-singular systems.
- Expanding determinants unnecessarily: Use row and column operations to simplify calculations.
Quick Revision Notes for Matrices and Determinants
- A matrix is an arrangement of numbers in rows and columns.
- Order of a matrix is represented by rows × columns.
- Identity matrix acts as the multiplicative identity.
- Matrix multiplication is associative but not commutative.
- Transpose changes rows into columns.
- Symmetric matrices satisfy the condition $$A^T=A$$.
- Skew-symmetric matrices satisfy the condition $$A^T=-A$$.
- Determinants are defined only for square matrices.
- Determinant properties help simplify long calculations.
- Adjoint is obtained by transposing the cofactor matrix.
- Inverse exists only for non-singular matrices.
- Cramer's Rule helps solve linear equations using determinants.
Group

