Class XII Mathematics

Chapter 3: Matrices and Determinants

Standard NCERT & CBSE aligned study curriculum. Master concepts, track accuracy, revise weak areas, and challenge yourself with 9 customized practice modes.

Chapter Overview

Welcome to Class XII Mathematics: Matrices and Determinants. This chapter forms a core structural component of the math syllabus, designed to build analytical rigor and key formula models.

Use the detailed subtopic guide below to review standard definitions, key mathematical rules, and study guidelines.

Prerequisite Concepts

Linear Equations in Two VariablesPair of Linear Equations

Detailed Subtopics Study Guide

Review detailed conceptual explanations, mathematical equations, and guidelines for each subtopic in this chapter:

1Matrix operations and properties

Concept Explanation

A matrix is a rectangular grid array of elements. Operations include addition (add corresponding elements), scalar multiplication, and matrix multiplication (row-by-column product). Matrix multiplication is not commutative.

Mathematical Representation
(AB)_{ij} = \sum_{k} a_{ik} b_{kj}, \quad AB \neq BA \text{ in general}
Study Guideline: For matrix multiplication AB, the number of columns in A must equal the number of rows in B. The resulting matrix has size (rows of A) x (columns of B).

2Transpose, symmetric, and skew-symmetric matrices

Concept Explanation

The transpose Aᵀ is formed by swapping rows and columns. A square matrix is Symmetric if Aᵀ = A, and Skew-Symmetric if Aᵀ = -A. The diagonal elements of a skew-symmetric matrix are always 0.

Mathematical Representation
(A^T)_{ij} = A_{ji}, \quad A^T = A \, (\text{Symmetric}), \quad A^T = -A \, (\text{Skew-Symmetric})
Study Guideline: Every square matrix can be uniquely expressed as the sum of a symmetric matrix 0.5*(A+Aᵀ) and a skew-symmetric matrix 0.5*(A-Aᵀ).

3Determinant of square matrix

Concept Explanation

A determinant is a scalar value calculated from a square matrix that captures key geometric properties. A matrix is invertible if and only if its determinant is non-zero (non-singular).

Mathematical Representation
\det(A) = |A|, \quad \det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc
Study Guideline: Expand determinants along the row or column with the most zeroes to minimize calculation steps.

4Adjoint and inverse of matrix

Concept Explanation

The adjoint (adj A) is the transpose of the cofactor matrix. The inverse matrix A⁻¹ satisfies A * A⁻¹ = I, and is calculated using the adjoint and determinant.

Mathematical Representation
A^{-1} = \frac{1}{|A|} \text{adj}(A) \quad \text{where } |A| \neq 0
Study Guideline: If the determinant |A| is 0, the matrix is singular and does not have an inverse. Verify determinant before calculating the adjoint.

5Solving system of linear equations using matrix inverse

Concept Explanation

A system of linear equations can be represented as AX = B. If A is non-singular, the system has a unique solution calculated by multiplying both sides by the inverse of A.

Mathematical Representation
A X = B \implies X = A^{-1} B \quad \text{where } |A| \neq 0
Study Guideline: This method is known as Matrix Method. Calculate det(A), then adjoint(A), then inverse(A), and multiply by vector B.