JEE · Mathematics

Matrices and Determinants

Represent linear data with matrices, perform valid matrix operations, evaluate determinants, decide whether an inverse exists, and solve or classify simultaneous linear systems without illegal division by a zero determinant.

Subject
Mathematics
Syllabus unit
Matrices and Determinants
  • Main and Advanced both explicitly cover matrices and determinants
  • det(A) = 0 blocks inverse division; it does not by itself mean inconsistent
  • No invented weightage, question counts or trend percentages

Content status: draft. Verified academic content for this page has not been loaded yet, so the page is excluded from search indexing and the sitemap.

In short

A matrix is an ordered rectangular array. Matrix operations are controlled by dimensions, while a determinant is a scalar attached to a square matrix. For a square coefficient matrix A, A inverse exists only when det(A) is not equal to zero.

Syllabus mapping

  • Unit
    Matrices and Determinants
    Topics
    Matrices, matrix algebra and types, Matrices and determinants of orders two and three, Determinant evaluation, Area of a triangle using determinants, Adjoint and inverse of a square matrix, Consistency and solution of simultaneous linear equations using matrices, Elementary row and column transformations, Diagonal, symmetric and skew-symmetric matrices

What this chapter contains and why it matters

  • Question
    What is the chapter about?
    Direct answer
    Matrix representation, valid operations, determinant evaluation, inverse conditions, and solving or classifying simultaneous linear systems.
  • Question
    What is the central method choice?
    Direct answer
    Check dimensions before multiplying, check det(A) not equal to zero before using an inverse, and use elimination or transformations when det(A) = 0.
  • Question
    Where do most mistakes begin?
    Direct answer
    Multiplying incompatible matrices, dividing by a zero determinant, and equating det(A) = 0 with an inconsistent system.
  • Question
    What should come before Matrices and Determinants?
    Direct answer
    Quadratic Equations for algebraic manipulation and Coordinate Geometry for the triangle-area interpretation.
  • Question
    What comes after it?
    Direct answer
    Vectors and 3D Geometry extend array-based and determinant-based reasoning further.

The official JEE documents define content scope. They do not publish chapter weightage, so none is asserted here.

Official JEE syllabus mapping for Matrices and Determinants

Verified against the current JEE Main 2026 syllabus and JEE Advanced 2026 syllabus on 8 September 2026.

  • Concept group
    Matrix algebra and types
    JEE Main 2026
    Explicitly includes matrices, matrix algebra and types.
    JEE Advanced 2026
    Explicitly includes rectangular arrays, equality, addition, scalar multiplication, matrix products and transpose.
    Preparation note
    Both papers require the same core algebra of matrices.
  • Concept group
    Determinants and area application
    JEE Main 2026
    Explicitly includes determinants of orders two and three, determinant evaluation, and area of a triangle using determinants.
    JEE Advanced 2026
    Explicitly includes determinants up to order three.
    Preparation note
    Only Main names the triangle-area application explicitly.
  • Concept group
    Inverse, transformations and matrix types
    JEE Main 2026
    Explicitly includes adjoint and inverse of a square matrix, and consistency and solution of simultaneous linear equations using matrices.
    JEE Advanced 2026
    Explicitly includes elementary row and column transformations, adjoint, inverse up to order three, and diagonal, symmetric and skew-symmetric matrices with their properties.
    Preparation note
    Advanced names elementary transformations and special matrix types explicitly; treat these as Advanced-specific depth.

Sources: JEE Main 2026 syllabus and JEE Advanced 2026 syllabus, linked in the sources section below.

Before this chapter

Prerequisites: what you should know before Matrices and Determinants

  • Prerequisite
    Simultaneous linear equations
    You are ready if you can…
    Solve two or three linear equations by substitution or elimination.
    If not, repair this first
    Revise linear-equation solving.
  • Prerequisite
    Ordered arrays and indices
    You are ready if you can…
    Read and write an entry a sub i j in a rectangular array.
    If not, repair this first
    Revise index notation.
  • Prerequisite
    Basic coordinate geometry
    You are ready if you can…
    Plot coordinate points and interpret area informally.
    If not, repair this first
    Revise Coordinate Geometry.

This is a readiness check, not a weightage or scoring-priority list.

Concepts in this chapter

1. Write dimensions before multiplying

If A is m by n and B is n by p, then AB is m by p; inner dimensions must agree.

Before performing matrix multiplication, write the dimensions of each matrix. The product exists only when the inner dimensions agree, and the result takes the outer dimensions.

2. Separate matrix operations from determinant operations

A determinant is only attached to a square matrix and is a distinct scalar concept from matrix arithmetic.

Matrix addition, scalar multiplication and matrix products are operations on the array itself. A determinant is a single scalar defined only for a square matrix and should not be confused with matrix-level operations.

3. Test det(A) not equal to zero before using an inverse

A inverse equals adjoint of A divided by det(A), valid only when det(A) is nonzero.

For inverse-based solving of AX = B, always test det(A) is not equal to zero first. If the determinant is zero, switch to elimination or consistency analysis rather than dividing by the determinant.

4. Track exactly which row or column changed

Row swaps, scaling and replacement each have a distinct, known effect on the determinant value.

When using elementary transformations, track exactly which row or column changed. Swapping two rows changes the determinant's sign, scaling one row by k multiplies the determinant by k, and adding a multiple of one row to another leaves the determinant unchanged.

5. Substitute any claimed solution back into the original equations

A computed solution must satisfy every original equation.

After solving a linear system, substitute the claimed solution back into the original equations to confirm it satisfies every one of them.

Method selector: determinant-to-system decision tree

Match the question signal to the correct first model before executing.

  • Question signal
    Simple 2x2 or 3x3 determinant
    First model
    Direct expansion or determinant properties
    Required check
    Matrix is square
  • Question signal
    Many zeros or easy simplification
    First model
    Determinant-preserving row/column transformations
    Required check
    Track every transformation applied
  • Question signal
    Matrix product
    First model
    Check dimensions before arithmetic
    Required check
    Inner dimensions equal
  • Question signal
    Unique linear system, det(A) not equal to zero
    First model
    Inverse method X = A inverse B
    Required check
    det(A) verified nonzero
  • Question signal
    Zero determinant
    First model
    Elimination or transformations to test consistency
    Required check
    Do not assume inconsistency automatically
  • Question signal
    Triangle coordinate area
    First model
    Determinant area formula with absolute value
    Required check
    Absolute value applied

Worked reasoning: solving a 2x2 linear system

Solve x + y = 5 and 2x - y = 1

Known: A = [[1,1],[2,-1]], X = [[x],[y]], B = [[5],[1]]. Find: X. Method choice: check the determinant before using an inverse.

det(A) = (1)(-1) - (1)(2) = -3, which is not equal to zero, so A is invertible and the system has a unique inverse-based solution. Solving gives x = 2, y = 3.

Validity check: substituting back, 2 + 3 = 5 and 2(2) - 3 = 1, so both original equations are satisfied.

Formula sheet

  • if A is m by n and B is n by p, then A B is m by p

    Dimension rule for matrix multiplication

    m
    number of rows of A
    n
    number of columns of A, equal to number of rows of B
    p
    number of columns of B

    Use whenMatrix multiplication

    Common trapMultiplying because outer dimensions match without checking inner dimensions

  • determinant of a two by two matrix a b c d equals a d minus b c

    Determinant of a 2 by 2 matrix

    a, b, c, d
    entries of the 2 by 2 matrix

    Use whenInverse, area, or system checks for a 2 by 2 matrix

    Common trapSign reversal

  • A times adjoint of A equals adjoint of A times A equals determinant of A times the identity matrix

    Relationship between a square matrix, its adjoint and its determinant

    A
    square matrix
    I
    identity matrix of the same order

    Use whenDeriving the inverse of a square matrix

    Common trapUsing this identity on a nonsquare matrix

  • A inverse equals adjoint of A divided by determinant of A, valid only when determinant of A is not zero

    Inverse of a square matrix via its adjoint

    A
    square matrix with det(A) not equal to zero

    Use whenFinding the inverse of a square matrix

    Common trapDividing by a zero determinant

  • determinant of A B equals determinant of A times determinant of B

    Determinant of a product of two square matrices of the same order

    A
    square matrix
    B
    square matrix of the same order as A

    Use whenSimplifying a determinant of a product

    Common trapApplying this to nonsquare products

  • area equals one half times the absolute value of the three by three determinant of the coordinate rows with a trailing one in each row

    Area of a triangle from three coordinate points using a determinant

    x1, y1
    first vertex coordinates
    x2, y2
    second vertex coordinates
    x3, y3
    third vertex coordinates

    Use whenMain explicit area-of-a-triangle application

    Common trapOmitting the absolute value

  • X equals A inverse times B, valid only when A is square and its determinant is not zero

    Unique solution of the linear system AX = B

    A
    square coefficient matrix with det(A) not equal to zero
    B
    column matrix of constants

    Use whenSolving a system with a nonsingular square coefficient matrix

    Common trapAssuming every system has this inverse form

Common mistakes and what they actually indicate

  • Multiplying matrices with incompatible inner dimensions.

    Execution error

    Why it happens

    Matrix multiplication is only defined when the number of columns of the first matrix equals the number of rows of the second.

    How it is corrected

    Write out both dimensions before attempting a product.

  • Assuming matrix multiplication is commutative.

    Knowledge gap

    Why it happens

    In general AB is not equal to BA, and both products may not even exist.

    How it is corrected

    Check dimensions and entries separately for AB and BA before comparing them.

  • Taking a determinant of a nonsquare matrix.

    Knowledge gap

    Why it happens

    A determinant is only defined for a square matrix.

    How it is corrected

    Confirm the matrix is square before attempting to evaluate a determinant.

  • Writing A inverse without checking det(A) is not equal to zero.

    Decision / selection error

    Why it happens

    The inverse-by-adjoint formula divides by det(A), which is invalid when det(A) is zero.

    How it is corrected

    Compute det(A) and confirm it is nonzero before writing an inverse.

  • Concluding that det(A) = 0 automatically means the system is inconsistent.

    Decision / selection error

    Why it happens

    A zero determinant only rules out a unique inverse-based solution; the system could be inconsistent or have infinitely many solutions.

    How it is corrected

    Continue with elimination or allowed transformations to distinguish inconsistency from dependent equations.

  • Confusing row operations on a matrix with their effect on the determinant value.

    Execution error

    Why it happens

    Row swap, row scaling and row replacement each change the determinant differently, or not at all.

    How it is corrected

    Track exactly which transformation was applied and its known determinant effect.

  • Omitting the absolute value from the triangle-area determinant formula.

    Execution error

    Why it happens

    The raw determinant can be negative, but an area cannot be negative.

    How it is corrected

    Always take the absolute value of the determinant before multiplying by one half.

FAQ

Matrices and Determinants — questions

Straight answers about how Rank Sarthi fits into serious exam preparation.

A square matrix A has an inverse only when det(A) is not equal to zero.

Sources and provenance

Use only official Main and Advanced syllabus documents for scope claims. Keep the triangle-area application, elementary transformations and special matrix types labelled with the correct paper-specific scope. Do not publish counts or trends.

Contributor requirements for this page

  • Written by: unassigned. Ideal author type: Mathematics education editor.
  • Academically reviewed by: unassigned. Reviewer specialisation: linear algebra foundations, determinants and JEE Mathematics. Minimum qualification: postgraduate Mathematics, Applied Mathematics or equivalent.
  • Review scope: operation dimensions, determinant properties, adjoint/inverse conditions, system-consistency language, row/column transformations, triangle-area formula and worked solution.