L
LLLOS.ai
Learn
L

Chapter 3 — Matrices

Class 12 · Mathematics

Overview

Chapter 3 — Matrices Master Diagram

This chapter (Mathematics NCERT — Chapter: Matrices) introduces matrices as a compact way to represent and manipulate collections of numbers and linear relationships. It builds on earlier algebra to present matrix notation, types of matrices (zero, diagonal, identity, symmetric, skew-symmetric, etc.), and core operations (addition, scalar multiplication, multiplication, transpose). The chapter explains elementary row and column operations, the concept of elementary matrices, and criteria for invertibility of a square matrix together with methods to find the inverse. A central theme is the relation between the rank of a matrix and the consistency of a system of linear equations (Rouché–Capelli idea): using rank and augmented matrices to determine whether systems have no solution, a unique solution, or infinitely many solutions. Importance: matrices are fundamental in linear algebra and appear throughout science, engineering, computer science and economics for solving linear systems, transformations, and data representation. By the end of the chapter the student will be able to perform matrix arithmetic, identify matrix types and properties, compute inverses, use elementary…

Learning Objectives

  • Define a matrix, its order, entries, main diagonal, zero matrix and identity matrix using standard notation
  • Classify matrices (row, column, rectangular, square, diagonal, scalar, upper/lower triangular) and provide examples
  • Explain equality of matrices and state necessary and sufficient conditions for two matrices to be equal
  • Perform addition, subtraction and scalar multiplication of matrices and apply their algebraic properties in computations
  • Compute the product of matrices, state the conditions for existence of a product and illustrate non-commutativity with examples
  • State and use properties of transpose to compute A^T and verify identities such as (AB)^T = B^T A^T
  • Identify symmetric and skew-symmetric matrices and express any square matrix as the sum of a symmetric and a skew-symmetric matrix
  • Compute the adjoint (adj A) and determinant of a square matrix and use them to find A^{-1} when the matrix is invertible

Topics in this chapter

11 topics · tap a topic title to jump straight to it.

🔢1

Introduction and Basic Definitions

📐 MATHEMATICAL FORMULA

Introduction and Basic Definitions

Core Principle: Order: A is m × n (m rows, n columns).

What is a matrix? A matrix is a rectangular array of numbers (or functions, symbols) arranged in rows and columns. An m × n matrix has m rows and n columns. Entries are denoted by a_{ij} where i is the row number and j is the column number.

Order of a matrix: The order (or size) of a matrix is written as m × n (m rows, n columns). Example: a 2 × 3 matrix has 2 rows and 3 columns.

Equality of matrices: Two matrices A and B are equal (A = B) iff they have the same order and all corresponding entries are equal: a_{ij} = b_{ij} for every i,j.

Types of matrices (common):

  • Row matrix: 1 × n (one row).
  • Column matrix: m × 1 (one column).
  • Square matrix: n × n (same number of rows and columns).
  • Zero (null) matrix: all entries 0, written O.
  • Diagonal matrix: square with nonzero entries only on the main diagonal.
  • Scalar matrix: a diagonal matrix with equal diagonal entries (λI).
  • Identity matrix: I_n, diagonal entries 1; acts as multiplicative identity.
  • Upper / lower triangular: entries below (or above) diagonal are zero.
  • Symmetric: A^T = A (a_{ij} = a_{ji}).
  • Skew-symmetric: A^T = −A (diagonal entries are 0).

Basic operations:

  • Addition: A + B is defined only when A and B have same order. (A + B)_{ij} = a_{ij} + b_{ij}.
  • Scalar multiplication: kA multiplies each entry by scalar k. (kA)_{ij} = k a_{ij}.
  • Matrix multiplication: If A is m × n and B is n × p, then AB is m × p with (AB)_{ij} = Σ_{k=1}^{n} a_{ik} b_{kj}. Note: AB need not equal BA; multiplication is generally not commutative.
  • Transpose: A^T is obtained by swapping rows and columns: (A^T)_{ij} = a_{ji}. Transpose converts m × n to n × m.
  • Inverse (for square matrices): A^{-1} exists for an n × n matrix A iff there exists a matrix B with AB = BA = I_n. A must be non-singular (det(A) ≠ 0) to have an inverse.

Important properties (valid when sizes match):

  • (A + B) + C = A + (B + C) (associativity of addition)
  • A + B = B + A (commutativity of addition)
  • A(BC) = (AB)C (associativity of multiplication)
  • A(B + C) = AB + AC and (A + B)C = AC + BC (distributivity)
  • (A^T)^T = A, (A + B)^T = A^T + B^T, (kA)^T = k A^T
  • (AB)^T = B^T A^T (note the reverse order)
  • If A is invertible, (A^{-1})^{-1} = A and (AB)^{-1} = B^{-1} A^{-1}
  • Trace: tr(A) = Σ_{i} a_{ii} (defined for square matrices). tr(AB) = tr(BA) when both products are defined.

Interpretation: Matrices represent linear data arrays, linear maps and transformations. An n × n matrix acts on n-dimensional vectors; multiplication by A transforms vectors (geometry) and encodes systems of linear equations (algebra).

How this helps solve problems: Representing coefficients of linear systems as an augmented matrix simplifies Gaussian elimination. Matrices compactly represent relations (graphs, networks), transformations (rotations, scalings in geometry) and data tables (statistics, economics).

📌 Examples
  • Spreadsheet: A table of exam scores for 5 students across 4 subjects can be stored as a 5×4 matrix; row i lists student i's marks, column j lists marks in subject j.
  • Linear equations: The system 2x + 3y = 5, 4x − y = 1 can be written as AX = B where A = [[2,3],[4,−1]], X = [x,y]^T, B = [5,1]^T. Use matrix methods to solve.
  • Computer graphics: A 2×2 matrix A = [[cosθ, −sinθ],[sinθ, cosθ]] rotates points in the plane by angle θ. Multiplying A by a coordinate vector gives the rotated point.
  • Networks/graphs: Adjacency matrix of a graph records connections; entry a_{ij} = 1 if node i is connected to node j, otherwise 0. Powers of the adjacency matrix count walks of given length.
  • Economics/Input–Output: An input–output matrix records how different sectors supply each other; used to analyze production dependencies.
🧮 Formulas
  1. \[Order: A is m × n (m rows\]
    \[n columns).\]
  2. \[Entry notation: A = [a_{ij}]\]
    \[i = 1..m\]
    \[j = 1..n.\]
  3. \[Equality: A = B ⇔ same order and a_{ij} = b_{ij} ∀ i,j.\]
  4. \[Addition: (A + B)_{ij} = a_{ij} + b_{ij} (A and B same order).\]
  5. \[Scalar multiplication: (kA)_{ij} = k·a_{ij}.\]
  6. \[Multiplication: If A (m×n) and B (n×p)\]
    \[(AB)_{ij} = Σ_{k=1}^{n} a_{ik} b_{kj}.\]
🔢2

Types of Matrices

📐 MATHEMATICAL FORMULA

Types of Matrices

Core Principle: Transpose: (A^T)_{ij} = A_{ji}.

Introduction
A matrix is a rectangular array of numbers arranged in rows and columns. In Class 12 (CBSE) we classify matrices by their shape and by special algebraic properties. Knowing types helps in solving systems, representing networks, images and linear transformations.

Common Types (definitions and key properties)

  • Row matrix: has a single row. Example: [a1 a2 ... an].
  • Column matrix: has a single column. Example: \([a1; a2; ...; am]\).
  • Zero (null) matrix: all entries are 0. Denoted O. Property: A + O = A.
  • Square matrix: number of rows = number of columns (n × n). Many special matrices are square.
  • Rectangular matrix: rows ≠ columns (m × n with m ≠ n).
  • Diagonal matrix: square with nonzero entries only on the main diagonal. Off-diagonal entries are 0. Example: diag(d1,...,dn).
  • Scalar matrix: a diagonal matrix with all diagonal entries equal to the same scalar λ; equals λI.
  • Identity (unit) matrix: diagonal with 1s on the main diagonal, denoted I_n. Acts as multiplicative identity: AI_n = I_nA = A.
  • Upper (lower) triangular matrix: square matrix with all entries below (above) the main diagonal equal to 0. Determinant = product of diagonal entries.
  • Symmetric matrix: A = AT. So aij = aji. Occurs for undirected graphs, covariance matrices.
  • Skew-symmetric (antisymmetric) matrix: AT = −A. Diagonal entries must be 0 (since aii = −aii ⇒ aii = 0).
  • Orthogonal matrix: AT = A−1, equivalently ATA = I. Columns (and rows) form an orthonormal set.
  • Singular and non-singular matrices: A square matrix is non-singular (invertible) iff det(A) ≠ 0. If det(A) = 0 it is singular (no inverse).
  • Equal matrices: same order and corresponding entries equal.

Remarks and useful consequences

  • Transpose: AT is obtained by swapping rows and columns; many types are defined via transpose (symmetric, skew-symmetric, orthogonal).
  • Triangular matrices are easy for solving linear systems (forward/back substitution).
  • Diagonal/Scalar/Identity matrices are simple to invert (if diagonal entries ≠ 0) and to exponentiate.

Short summary table (informal)
Row/Column/Rectangular describe shape. Square matrices allow diagonal, triangular, symmetric, skew-symmetric, scalar, identity, orthogonal, singular/non-singular descriptions.

📌 Examples
  • Row matrix (1 × 4): [2 −1 0 5].
  • Column matrix (3 × 1): [[4], [0], [−3]].
  • Zero matrix (2 × 3): [[0,0,0],[0,0,0]] used to represent absence of connection in a network.
  • Diagonal matrix (3 × 3): [[2,0,0],[0,5,0],[0,0,−1]] used to scale coordinates by different factors.
  • Identity matrix I3 = [[1,0,0],[0,1,0],[0,0,1]] represents the do-nothing linear transformation.
  • Upper triangular matrix: [[1,2,3],[0,4,5],[0,0,6]] appears in Gaussian elimination intermediate steps.
🧮 Formulas
  1. \[Transpose: (A^T)_{ij} = A_{ji}.\]
  2. \[Symmetric: A = A^T.\]
  3. \[Skew-symmetric: A^T = −A (⇒ diagonal entries = 0).\]
  4. \[Identity: I_n A = A I_n = A.\]
  5. \[Scalar matrix: S = λ I_n.\]
  6. \[Determinant of triangular/diagonal matrix: det(A) = product of diagonal entries (∏_{i=1}^n a_{ii}).\]
⚖️3

Operations on Matrices

📐 MATHEMATICAL FORMULA

Operations on Matrices

Core Principle: Addition: A + B defined only if A and B have same order; (A + B)_{ij} = A_{ij} + B_{ij}

Overview: A matrix is a rectangular array of numbers arranged in rows and columns. Operations on matrices let us combine and transform matrices in ways that model many practical problems (graphics, systems of equations, economics, image processing).

Basic operations:

  • Addition and subtraction: Two matrices A and B can be added or subtracted only if they have the same order (same number of rows and columns). The operation is entry-wise: (A + B)ij = Aij + Bij.
  • Scalar multiplication: Multiply every entry of a matrix A by a scalar k: (kA)ij = k · Aij.
  • Matrix multiplication: Product AB is defined only when A is of order m × n and B is of order n × p. The result AB is of order m × p with entries
    C = AB, where Cij = Σk=1..n Aik · Bkj.
  • Transpose: The transpose of A (denoted AT) swaps rows and columns: (AT)ij = Aji. A is symmetric if A = AT, skew-symmetric if AT = −A.
  • Identity and zero matrices: In is the n×n identity with 1s on the diagonal and 0s elsewhere. For any compatible A, AI = IA = A. The zero matrix O has all entries 0 and A + O = A.

Important properties (for compatible sizes):

  • Associative (for multiplication): (AB)C = A(BC).
  • Distributive: A(B + C) = AB + AC, (A + B)C = AC + BC.
  • Transpose rules: (A + B)T = AT + BT, (kA)T = kAT, (AB)T = BTAT.
  • Non-commutativity: In general AB ≠ BA (even when both products are defined).
  • Inverse (square non-singular A): A−1 defined by AA−1 = A−1A = I; (AB)−1 = B−1A−1, and (A−1)T = (AT)−1.

Worked numeric examples:

Addition (A and B must be same order):

A = [[2,  -1],
     [0,   3]]
B = [[1,   4],
     [5,  -2]]

A + B = [[2+1,  -1+4],
         [0+5,   3+(-2)]] = [[3, 3], [5, 1]]

Multiplication (A is 2×3, B is 3×2):

A = [[1, 2, 0],
     [3, -1, 4]]   (2×3)
B = [[2, 1],
     [0, 3],
     [5, 2]]       (3×2)

AB is 2×2 with entries:
(AB)_{11} = 1*2 + 2*0 + 0*5 = 2
(AB)_{12} = 1*1 + 2*3 + 0*2 = 7
(AB)_{21} = 3*2 + (-1)*0 + 4*5 = 6 + 0 + 20 = 26
(AB)_{22} = 3*1 + (-1)*3 + 4*2 = 3 -3 +8 = 8

AB = [[2, 7], [26, 8]]

Transpose and symmetry example:

A = [[1, 4, -2],
     [4, 0,  3],
     [-2, 3, 5]]

A^T = A (so A is symmetric)

Tips/Checks:

  • Always check dimensions before adding or multiplying.
  • For multiplication think: rows of A dot columns of B.
  • Use identity matrix to check inverses; use transpose rules when manipulating expressions.

📌 Examples
  • Image processing: an image is a matrix of pixel intensities. Adding a constant matrix or scalar multiplies brightness; combining images uses weighted sums (scalar multiplication + addition).
  • 2D computer graphics: rotation and scaling of points use 2×2 matrices. Multiplying a vector of coordinates by a transform matrix rotates/scales the point.
  • Economics (Leontief input–output): matrices encode how sectors depend on each other; multiplying by a demand vector gives total outputs required.
  • Network paths: if A is an adjacency matrix of a graph, then A^2 gives the number of 2-step paths between nodes; powers of A count paths of different lengths.
  • Marking exam scores: storing scores as a matrix, adding matrices merges scores from two tests; scalar multiplication rescales grades (e.g., convert to percentage).
🧮 Formulas
  1. \[Addition: A + B defined only if A and B have same order\]
    \[(A + B)_{ij} = A_{ij} + B_{ij}\]
  2. \[Scalar product: (kA)_{ij} = k · A_{ij}\]
  3. \[Matrix product: If A (m×n) and B (n×p)\]
    \[then AB is m×p with (AB)_{ij} = Σ_{k=1}^n A_{ik} B_{kj}\]
  4. \[Transpose: (A^T)_{ij} = A_{ji}\]
    \[(AB)^T = B^T A^T\]
    \[(A + B)^T = A^T + B^T\]
  5. \[Identity: For I_n\]
    \[AI_n = A and I_n A = A (when sizes compatible)\]
  6. \[Inverse (square A): A A^{-1} = A^{-1} A = I\]
    \[(AB)^{-1} = B^{-1} A^{-1}\]
🔢4

Transpose, Symmetric and Skew-Symmetric Matrices

📐 MATHEMATICAL FORMULA

Transpose, Symmetric and Skew-Symmetric Matrices

Core Principle: Definition: (A^T)_{ij} = A_{ji}

Transpose (AT)
For any m×n matrix A = [aij], the transpose AT is the n×m matrix obtained by interchanging rows and columns: (AT)ij = aji. Geometrically, taking a transpose reflects the matrix entries across the main diagonal.

Symmetric matrix
A square matrix A (n×n) is symmetric if AT = A. Equivalently, aij = aji for all i,j. The main diagonal entries may be any real numbers and off-diagonal entries appear in equal pairs.

Skew-symmetric (antisymmetric) matrix
A square matrix A is skew-symmetric if AT = −A. Equivalently, aij = −aji for all i,j. In particular, all diagonal entries satisfy aii = 0.

Important facts and consequences

  • Basic transpose properties: (AT)T = A, (A + B)T = AT + BT, (kA)T = kAT, and (AB)T = BTAT.
  • Every square matrix A can be written uniquely as the sum of a symmetric and a skew-symmetric matrix:
    A = S + K where S = (A + AT)/2 (symmetric) and K = (A − AT)/2 (skew-symmetric).
  • Diagonal entries of any skew-symmetric matrix are zero.
  • Symmetric matrices often arise from inner products and covariances; skew-symmetric matrices appear in representations of cross products and infinitesimal rotations.

How to check quickly

  • Compute AT and compare to A. If equal → symmetric. If equal to −A → skew-symmetric. If neither, it is neither.
  • To decompose, compute S = (A + AT)/2 and K = (A − AT)/2 and verify A = S + K.

Short example (illustrative calculation)
Let A = [[2, 3], [3, 5]]. Then AT = [[2, 3], [3, 5]] = A, so A is symmetric.
Let B = [[0, 4], [−4, 0]]. Then BT = [[0, −4], [4, 0]] = −B, so B is skew-symmetric.

📌 Examples
  • Example 1 — Transpose: A = [[1, 2, 3], [4, 5, 6]] ⇒ A^T = [[1, 4, 7], [2, 5, 8], [3, 6, 9]] (rows ↔ columns).
  • Example 2 — Symmetric check: A = [[7, -2], [-2, 3]]; A^T = A, so A is symmetric.
  • Example 3 — Skew-symmetric check: C = [[0, 5, -1], [-5, 0, 2], [1, -2, 0]]; C^T = -C, diagonal zeros, so C is skew-symmetric.
  • Example 4 — Decomposition: For A = [[1, 4], [2, 3]] compute A^T = [[1, 2], [4, 3]]; S = (A + A^T)/2 = [[1, 3], [3, 3]] (symmetric); K = (A - A^T)/2 = [[0, 1], [-1, 0]] (skew-symmetric).
🧮 Formulas
  1. \[Definition: (A^T)_{ij} = A_{ji}\]
  2. \[Basic properties: (A^T)^T = A\]
    \[(A + B)^T = A^T + B^T\]
    \[(kA)^T = k A^T\]
    \[(AB)^T = B^T A^T\]
  3. \[Symmetric: A^T = A\]
  4. \[Skew-symmetric: A^T = -A (⇒ a_{ii} = 0 for all i)\]
  5. \[Decomposition: A = (A + A^T)/2 + (A - A^T)/2 = S + K\]
    \[where S^T = S and K^T = -K\]
🧫5

Elementary Row and Column Operations; Echelon Forms

📐 MATHEMATICAL FORMULA

Elementary Row and Column Operations; Echelon Forms

Core Principle: If A is square and we perform row swap Ri ↔ Rj then det(new) = − det(A).

Overview. Elementary row and column operations are simple manipulations of rows or columns of a matrix used to simplify matrices and solve linear systems. Echelon forms (row echelon form and reduced row echelon form) are canonical forms reached by these operations that make the structure of a system — pivots, rank and free variables — explicit.

Elementary operations (row version). There are three types of elementary row operations on an m × n matrix A:

  • R1: Row swap — interchange two rows, Ri ↔ Rj.
  • R2: Row scaling — multiply a row by a nonzero scalar k, k·Ri.
  • R3: Row replacement — add a scalar multiple of one row to another, Ri → Ri + k·Rj.

Column operations C1, C2, C3 are analogous (operate on columns). Row operations preserve the solution set of a linear system represented by the augmented matrix (except column operations generally change the solution set unless applied to both coefficient matrix and constants in a compatible way).

Effect on determinant (for square matrices):

  • Swapping two rows multiplies determinant by −1.
  • Multiplying a row by scalar k multiplies determinant by k.
  • Adding a scalar multiple of one row to another leaves determinant unchanged.

Elementary matrices. Each elementary row operation corresponds to left-multiplication by an elementary matrix E (invertible). If E is elementary, then performing that operation on A is equivalent to EA. Similarly, column operations correspond to right multiplication by elementary matrices.

Echelon forms.

  • Row echelon form (REF):
    • All nonzero rows are above any zero rows.
    • The leading entry (first nonzero entry from left) of each nonzero row is to the right of the leading entry of the row above it.
    • Entries below each leading entry are zero.
  • Reduced row echelon form (RREF):
    • It is in REF, and each leading entry is 1.
    • Each leading 1 is the only nonzero entry in its column (zeros both below and above).
    • RREF is unique for a given matrix; REF is not unique.

Pivots, rank and solutions. Pivot positions (leading entries) determine the rank. rank(A) = number of pivots = dimension of column space. For an m×n system Ax = b, after reducing the augmented matrix to RREF, you can read off whether the system is inconsistent (row [0 ... 0 | c] with c ≠ 0), has a unique solution (pivot in every variable column), or infinitely many solutions (free variables exist).

How to obtain REF/RREF (Gaussian and Gauss–Jordan elimination). Steps (row operations only):

  1. Start with the leftmost nonzero column as the pivot column.
  2. Swap rows to move a nonzero entry into the pivot position if needed.
  3. Scale the pivot row to make pivot = 1 (for RREF) or leave as nonzero (for REF).
  4. Use row replacement to make entries below (Gaussian) and above (Gauss–Jordan) the pivot zero.
  5. Repeat for the submatrix that lies below and to the right of the pivot.

Practical notes. Use row operations to solve linear systems, compute rank, find inverses (apply operations to [A | I] to get [I | A^{-1}] when A is invertible), and to simplify matrices for determinant computation (tracking determinant changes).

Real-life connection. Many applications reduce to linear systems: circuit analysis (Kirchhoff laws), balancing chemical equations, resource allocation, and least-squares fitting. Row operations and echelon forms are the standard tools to solve these systems efficiently.

📌 Examples
  • Example 1 — Solve a 2×2 system by row operations: Solve x + 2y = 5, 3x + 4y = 11. Augmented matrix: [ [1 2 | 5], [3 4 | 11] ]. R2 → R2 − 3R1 gives [ [1 2 | 5], [0 −2 | −4] ]. R2 → (−1/2)R2 gives [ [1 2 | 5], [0 1 | 2] ]. R1 → R1 − 2R2 gives RREF [ [1 0 | 1], [0 1 | 2] ]. Solution: x = 1, y = 2.
  • Example 2 — Find RREF of a 3×3 matrix: A = [[1 2 1],[2 4 0],[−1 −2 1]]. Form augmented with zero column if solving homogeneous. Use row ops: R2 → R2 − 2R1 → [1 2 1; 0 0 −2; −1 −2 1], R3 → R3 + R1 → [1 2 1; 0 0 −2; 0 0 2]. R3 ↔ R2 → [1 2 1; 0 0 2; 0 0 −2], R3 → R3 + R2 → [1 2 1; 0 0 2; 0 0 0], scale R2 → (1/2)R2 and eliminate above to produce RREF: [1 2 0; 0 0 1; 0 0 0]. From RREF, pivot columns are 1 and 3, rank = 2.
  • Example 3 — Real-life: Balancing a chemical equation using row operations. For reaction a C2H6 + b O2 → c CO2 + d H2O, set up linear relations for C, H, O atoms and solve the homogeneous system using row reduction to find integer coefficients (free variables scaled to smallest integers). Row operations reveal free variables and relationships between coefficients.
🧮 Formulas
  1. \[If A is square and we perform row swap Ri ↔ Rj then det(new) = − det(A).\]
  2. \[If a row is multiplied by scalar k then det(new) = k · det(A).\]
  3. \[If we add k times row Rj to row Ri (Ri → Ri + k·Rj) then det(new) = det(A).\]
  4. \[Elementary row operation corresponds to left-multiplication: E · A is A after that row operation\]
    \[E is invertible and E^{-1} is also elementary.\]
  5. \[rank(A) = number of pivot columns in any REF = dimension of column space ≤ min(m,n).\]
  6. \[System consistency: For augmented matrix [A | b]\]
    \[if RREF has a row [0 0 ... 0 | c] with c ≠ 0 then system is inconsistent.\]
🔢6

Rank of a Matrix

📐 MATHEMATICAL FORMULA

Rank of a Matrix

Core Principle: rank(A) = dimension of row space = dimension of column space

Rank of a Matrix

Definition: The rank of a matrix A (denoted rank(A)) is the maximum number of linearly independent rows or columns of A. Equivalently, it is the dimension of the row space or the column space of A. Row-rank = column-rank, so the two definitions are consistent.

Why it matters: Rank tells how many independent directions (degrees of freedom) a matrix or the corresponding linear transformation has. It determines solvability and number of solutions of linear systems, invertibility of square matrices, and the dimension of image of a linear map.

Methods to find rank

  • Row-reduction (recommended): Reduce A to its row-reduced echelon form (RREF) using elementary row operations. The number of nonzero rows in RREF = rank(A).
  • Using minors: The rank is the largest integer r such that there exists at least one nonzero r×r minor (determinant of an r×r submatrix). If all (r+1)×(r+1) minors are zero but some r×r minor is nonzero, rank = r.

Small worked example (row reduction)

Find the rank of A =

[1  2  3
 2  4  6
 1  0 -1]
Row-reduce:
R2 -> R2 - 2R1  gives R2 = [0 0 0]
R3 -> R3 - R1   gives R3 = [0 -2 -4]
Now swap R2 and R3 (or continue):
R2 = [0 -2 -4]  => R2 -> (-1/2)R2 = [0 1 2]
R1 -> R1 - 2R2  => R1 = [1 0 -1]
Two nonzero rows remain, so rank(A) = 2.

Important consequences

  • If A is n×n, A is invertible iff rank(A) = n (equivalently det(A) ≠ 0).
  • Rank(A) ≤ min(number of rows, number of columns).
  • Rank(A) = Rank(A^T).
  • Rank(AB) ≤ min(rank(A), rank(B)).
  • Rank-nullity theorem (for an m×n matrix viewed as linear map R^n → R^m): rank(A) + nullity(A) = n, where nullity(A) is the dimension of the solution space of Ax = 0.
  • Rouché–Capelli theorem: A linear system Ax = b is consistent iff rank(A) = rank([A|b]). If consistent, number of free variables = n - rank(A).

Tips: Use row reduction for numerical/school problems. Use minors when a theoretical bound or exact minor is easier to compute. For large numerical matrices, singular value decomposition (SVD) gives numerical rank via nonzero singular values (useful in data applications).

📌 Examples
  • Computational example (already shown): A = [[1,2,3],[2,4,6],[1,0,-1]] → rank(A) = 2 by row-reduction.
  • Square matrix invertibility: For a 3×3 matrix B, if rank(B) = 3 then B is invertible; if rank(B) < 3 then B is singular (det(B) = 0).
  • PCA / Data science: The covariance matrix of a dataset has rank equal to the number of linearly independent features. If some features are linear combinations of others, the covariance matrix is rank-deficient and effective dimensionality is lower.
  • Computer graphics / transformations: A 3×3 transformation matrix for 3D space with rank 2 maps 3D space to a plane (loses one dimension) — useful for modeling projection onto a plane.
  • Network flows / equations: In modeling electrical circuits or chemical reactions, rank tells how many independent equations exist. If rank < number of variables, parameters can be chosen freely (degrees of freedom).
🧮 Formulas
  1. \[rank(A) = dimension of row space = dimension of column space\]
  2. \[rank(A) ≤ min(m\]
    \[n) for A of size m×n\]
  3. \[rank(A) = number of nonzero rows in RREF(A)\]
  4. \[rank(A) = r ⇔ some r×r minor ≠ 0 and all (r+1)×(r+1) minors = 0\]
  5. \[rank(A) = rank(A^T)\]
  6. \[rank(AB) ≤ min(rank(A)\]
    \[rank(B))\]
🔢7

Inverse of a Matrix

📐 MATHEMATICAL FORMULA

Inverse of a Matrix

Core Principle: Inverse condition: A is invertible ⇔ det(A) ≠ 0 (for square A).

Definition: For a square matrix A of order n, a matrix B of the same order is called an inverse of A if AB = BA = I_n, where I_n is the n×n identity matrix. If such B exists, A is called invertible (or non-singular) and the inverse is denoted A-1. The inverse (when it exists) is unique.

When does an inverse exist? An n×n matrix A has an inverse iff det(A) ≠ 0. If det(A) = 0, A is singular and non-invertible.

Key properties:

  • Uniqueness: if B and C both satisfy AB = BA = I, then B = C.
  • Inverse of a product: (AB)-1 = B-1A-1 (order reverses).
  • Inverse of a transpose: (AT)-1 = (A-1)T.
  • Scalar multiple: if k ≠ 0, (kA)-1 = (1/k) A-1.
  • Inverse of inverse: (A-1)-1 = A.
  • Special matrices: For an orthogonal matrix Q, Q-1 = QT. For a diagonal matrix D with nonzero diagonal entries d_i, D-1 is diagonal with entries 1/d_i.

How to compute the inverse:

  • 2×2 formula (fast): For A = [[a, b], [c, d]], if det(A)=ad-bc ≠ 0 then A-1 = (1/(ad-bc)) [[d, -b], [-c, a]].
  • Adjoint (classical) method for n×n: A-1 = (1/det(A)) adj(A), where adj(A) is the transpose of the cofactor matrix. Steps: compute all cofactors Cij, form cofactor matrix [Cij], transpose it to get adj(A), then divide by det(A).
  • Gauss–Jordan elimination (recommended for computation): Augment A with I: [A | I]. Apply row operations to transform A to I. The transformed right block becomes A-1: [I | A-1]. If you cannot reach I (a zero row appears on left), A is singular.

Notes on non-square matrices: Non-square matrices do not have two-sided inverses. They may have a left-inverse or right-inverse if rank conditions permit. For general least-squares or non-square cases, one uses the Moore–Penrose pseudo-inverse A+.

Example of use: Finding A-1 lets you solve linear systems Ax = b by x = A-1b (when A is invertible). In many applications the inverse is not computed explicitly; instead numerical methods solve the system directly for stability and efficiency.

Common pitfalls: Do not attempt to compute inverse when det(A)=0. For numerical work, computing explicit inverses can be unstable; prefer solving linear systems via decomposition (LU, QR) when possible.

📌 Examples
  • Solving linear systems: For A x = b (A invertible), x = A^-1 b. Example: A = [[2,1],[1,1]], b = [5,3] → compute A^-1 and find x.
  • Computer graphics: 2D/3D transformation matrices (rotation, scaling). To reverse a transformation use its inverse (e.g., undo a rotation by applying the transpose if rotation matrix is orthogonal).
  • Cryptography (Hill cipher): Encryption uses matrix multiplication; decryption requires the inverse of the key matrix modulo 26.
  • Economics input-output model: If (I - A) is invertible, (I - A)^-1 gives total output multipliers.
  • Electrical circuits: Nodal or mesh analysis yields linear systems; invertible conductance matrices give unique circuit solutions.
🧮 Formulas
  1. \[Inverse condition: A is invertible ⇔ det(A) ≠ 0 (for square A).\]
  2. \[Identity property: A A^-1 = A^-1 A = I.\]
  3. \[2×2 inverse: For A = [[a,b],[c,d]]\]
    \[A^-1 = (1/(ad - bc)) [[d, -b], [-c\]
    \[a]] (if ad - bc ≠ 0).\]
  4. \[Adjoint formula: A^-1 = (1/det(A)) · adj(A)\]
    \[where adj(A) = (cofactor matrix)^T.\]
  5. \[Product rule: (AB)^-1 = B^-1 A^-1 (for invertible A and B).\]
  6. \[Transpose rule: (A^T)^-1 = (A^-1)^T.\]
🟰8

System of Linear Equations — Matrices Method and Consistency

📐 MATHEMATICAL FORMULA

System of Linear Equations — Matrices Method and Consistency

Core Principle: Matrix form: A x = b

Overview: A system of linear equations is a collection of linear equations involving the same set of variables. In matrix language a system is written as A x = b, where A is the coefficient matrix, x is the column vector of unknowns and b is the constant column vector. Matrices provide systematic methods to find solutions and to determine whether solutions exist.

Key concepts:

  • Augmented matrix: Formed by concatenating A and b as [A | b]. Row operations on [A | b] are used in elimination methods.
  • Rank: The rank of a matrix is the maximum number of linearly independent rows (or columns). Denote rank(A) and rank([A | b]).
  • Rouché-Capelli theorem: The system A x = b is consistent (has at least one solution) iff rank(A) = rank([A | b]). If consistent, then
    • unique solution when rank(A) = number of unknowns n,
    • infinitely many solutions when rank(A) < n.
  • Homogeneous system A x = 0 is always consistent (x = 0). If rank(A) < n it has nontrivial solutions.

Matrices methods to solve systems:

  • Inverse method: If A is square and invertible (det(A) != 0), then the unique solution is x = A^{-1} b. This is direct but requires computing A^{-1}.
  • Gaussian elimination / Row reduction: Use elementary row operations on the augmented matrix [A | b] to reach row echelon or reduced row echelon form. Read solutions by back-substitution or from reduced form. This method also determines rank and consistency.
  • Cramer’s rule (for square systems with det(A) != 0): each variable x_i = det(A_i)/det(A), where A_i is A with column i replaced by b. Useful for theoretical purposes and small systems only.

Elementary row operations (preserve solution set):

  • Swap two rows,
  • Multiply a row by a nonzero constant,
  • Add a multiple of one row to another row.

Interpreting solutions geometrically:

  • Two variables: each linear equation is a line in the plane. Unique solution = intersection point; infinite solutions = coincident lines; no solution = parallel distinct lines.
  • Three variables: each equation is a plane in 3D. Solutions correspond to intersection of planes: point, line, plane (infinitely many) or empty (no common intersection).

How to check consistency quickly:

  • Form [A | b] and perform row reduction until you can read ranks (count nonzero rows in echelon form).
  • Apply Rouché-Capelli: if rank(A) = rank([A | b]) system is consistent; otherwise inconsistent.

Tip: For computational work use Gaussian elimination (stable and systematic). For small square systems, inverse or Cramer’s rule is fine.

📌 Examples
  • Unique solution using inverse method: Solve x + 2y = 5, 3x + y = 10. Matrix form A = [[1,2],[3,1]], b = [5,10]. det(A) = 1*1 - 2*3 = -5 ≠ 0 so invertible. Inverse A^{-1} = (1/det) [[1,-2],[-3,1]] = (-1/5)[[1,-2],[-3,1]]. x = A^{-1} b = (-1/5)[[1,-2],[-3,1]] [5,10]^T = [3,1].
  • Infinitely many solutions (dependent equations): 2x + 4y = 6 and x + 2y = 3. Augmented matrix rows are proportional so rank(A) = rank([A|b]) = 1 < 2 (number of unknowns) → infinitely many solutions. Express parametric form: let y = t then x = 3 - 2t.
  • No solution (inconsistent): 2x + 4y = 6 and x + 2y = 4. Rows of A are proportional but constants are not (6 vs 8), so rank(A) = 1 but rank([A|b]) = 2 → inconsistent, no solution.
  • Homogeneous system with nontrivial solutions: For A = [[1,2,3],[2,4,6],[0,1,1]] the first two rows are dependent, so rank(A) &lt; 3. Thus A x = 0 has nontrivial solutions; find free variables by row reduction to get parametric solution.
  • 3x3 rank check example: Consider A x = b with A = [[1,0,1],[0,1,2],[1,1,3]] and some b. Compute rank(A) (here det(A) = 1* (1*3 - 2*1) - 0 + 1*(0*1 - 1*1) = (1) - 1 = 0 so rank &lt; 3). Use row reduction on [A|b] to decide consistency and find solution set (either infinite or none depending on b).
🧮 Formulas
  1. \[Matrix form: A x = b\]
  2. \[Augmented matrix: [A | b]\]
  3. \[Rouché-Capelli theorem: system consistent iff rank(A) = rank([A | b])\]
  4. \[Cases: if rank(A) = rank([A | b]) = n → unique solution\]
    \[if rank(A) = rank([A | b]) &lt\]
    \[n → infinitely many solutions\]
    \[if rank(A) &lt\]
    \[rank([A | b]) → no solution\]
  5. \[Inverse method (square A\]
    \[det(A) ≠ 0): x = A^{-1} b\]
  6. \[2x2 inverse formula: for A = [[a,b],[c,d]] with det = ad - bc ≠ 0\]
    \[A^{-1} = (1/det) [[d,-b],[-c,a]]\]
🇮🇳9

Linear Dependence and Independence

📐 MATHEMATICAL FORMULA

Linear Dependence and Independence

Core Principle: Linear combination: c1 v1 + c2 v2 + ... + ck vk = 0

Definition: A set of vectors {v1, v2, ..., vk} in R^n is linearly dependent if there exist scalars c1, c2, ..., ck, not all zero, such that c1 v1 + c2 v2 + ... + ck vk = 0 (the zero vector). If the only solution is c1 = c2 = ... = ck = 0, the set is linearly independent.

Understanding the idea:

  • Linear dependence means at least one vector in the set can be expressed as a linear combination of the others.
  • Linear independence means no vector in the set can be written using the others; each adds a new direction.

Matrix viewpoint: Put vectors as columns of a matrix A = [v1 v2 ... vk]. Then the relation c1 v1 + ... + ck vk = 0 is A c = 0, where c = (c1,...,ck)^T. The columns are linearly independent iff the only solution of A c = 0 is the trivial solution c = 0.

Tests and consequences:

  • Rank test: Columns of A are independent iff rank(A) = number of columns. If rank < number of columns the columns are dependent.
  • Square matrix (n × n): columns are independent iff det(A) ≠ 0.
  • Geometric meaning in low dimensions:
    • In R^2: two vectors are independent iff they are not scalar multiples (not collinear).
    • In R^3: three vectors are independent iff they are not coplanar (they span 3D space).
  • Independence is required for a set to be a basis. The maximum size of an independent set in R^n is n (dimension).

Worked idea (small check): For vectors v1 = (1,2), v2 = (2,4) in R^2, check c1 v1 + c2 v2 = 0. This gives two scalar equations: c1 + 2 c2 = 0 and 2 c1 + 4 c2 = 0; these are the same equation, so there is a nontrivial solution (for example c1 = 2, c2 = -1). Hence v1 and v2 are linearly dependent (v2 = 2 v1).

Why it matters: Linear independence tells us whether vectors provide new information/direction. In solving systems, it tells if variables are uniquely determined. In data and signal processing, independence relates to redundancy and uniqueness of features.

📌 Examples
  • Example 1 (R^2): v1 = (1, 0), v2 = (0, 1). Solve c1 v1 + c2 v2 = 0. This gives c1 = 0, c2 = 0, so they are linearly independent.
  • Example 2 (R^2): v1 = (1, 2), v2 = (2, 4). Since v2 = 2 v1, they are linearly dependent. Any relation c1 v1 + c2 v2 = 0 has nontrivial solutions (e.g., c1 = 2, c2 = -1).
  • Example 3 (R^3 using matrix): A = [v1 v2 v3] with v1 = (1,0,0), v2 = (0,1,0), v3 = (1,1,0). Columns satisfy v3 = v1 + v2, so dependent (rank(A) = 2 &lt; 3).
  • Real-life: In mechanics, three force vectors acting on a rigid body in a plane may be dependent if one force equals the vector sum of the other two—meaning one force is redundant for equilibrium calculations.
  • Real-life: In data compression, dependent features (columns) mean redundancy. Removing dependent features reduces storage without losing information up to linear relations.
🧮 Formulas
  1. \[Linear combination: c1 v1 + c2 v2 + ... + ck vk = 0\]
  2. \[Trivial solution: c1 = c2 = ... = ck = 0 (implies independence if it is the only solution)\]
  3. \[Matrix form: A c = 0\]
    \[columns of A are independent ⇔ nullspace(N(A)) = {0}\]
  4. \[Rank criterion: columns independent ⇔ rank(A) = number of columns\]
  5. \[Determinant test (square n × n): columns independent ⇔ det(A) ≠ 0\]
  6. \[Geometric test in R^2: two vectors v and w independent ⇔ w ≠ λ v for any scalar λ\]
🔢10

Properties and Identities of Matrices

📐 MATHEMATICAL FORMULA

Properties and Identities of Matrices

Core Principle: A + B = B + A (commutativity of addition)

Overview: A matrix is a rectangular array of numbers. Class 12 studies algebraic rules (properties) and important identities that matrices satisfy. These rules help manipulate matrix expressions, solve linear systems, and understand linear transformations.

Basic operations and definitions

  • Zero matrix O: all entries 0. Identity matrix I: square matrix with 1s on diagonal, 0 elsewhere.
  • Addition and scalar multiplication: defined entrywise. Product AB defined when number of columns of A equals number of rows of B.

Key properties (with brief reasoning)

  • Addition: A + B = B + A (commutative), (A + B) + C = A + (B + C) (associative).
  • Scalar distributivity: k(A + B) = kA + kB and (k + l)A = kA + lA.
  • Multiplication associative: A(BC) = (AB)C when sizes conform. This follows from combining linear combinations in order.
  • Multiplication not generally commutative: AB and BA may both exist but usually AB ≠ BA. Exception: special matrices that commute.
  • Distributive laws: A(B + C) = AB + AC and (A + B)C = AC + BC.
  • Identity and zero: AI = IA = A (if sizes conform). A0 = 0 and 0A = 0.

Transpose properties

  • (A^T)^T = A.
  • (A + B)^T = A^T + B^T.
  • (kA)^T = k A^T for scalar k.
  • Important identity: (AB)^T = B^T A^T (order reverses).

Inverse properties (for square matrices)

  • If A is invertible (non-singular), there exists A^{-1} with AA^{-1} = A^{-1}A = I.
  • Product inverse: (AB)^{-1} = B^{-1} A^{-1} when A and B are invertible.
  • Transpose of inverse: (A^{-1})^T = (A^T)^{-1}.
  • Determinant: det(AB) = det(A) det(B). If det(A) ≠ 0 then A is invertible.

Special matrices and identities

  • Symmetric: A^T = A. Real symmetric matrices represent e.g. covariance matrices.
  • Skew-symmetric: A^T = −A. Diagonals are zero.
  • Orthogonal: A^T = A^{-1}. Orthogonal matrices preserve lengths and angles (rotations, reflections).
  • Idempotent: A^2 = A (projections). Geometric meaning: applying transformation twice same as once.
  • Involutory: A^2 = I (self-inverse transformations like 180° rotation in some contexts).
  • Nilpotent: A^k = O for some k ≥ 1 (eventually sends vectors to zero).
  • Decomposition: Every square matrix A can be written as sum of symmetric and skew-symmetric parts: A = (1/2)(A + A^T) + (1/2)(A - A^T).

Other useful identities

  • trace(AB) = trace(BA) for square matrices (useful in proofs, not implying AB = BA).
  • adj(AB) = adj(B) adj(A) (adjoint/rearrangement identity) when A and B are square.

Why these matter (applications): Properties let you simplify expressions, compute inverses of products, analyze linear maps (rotations, projections), and use matrices in probability (Markov chains), networks (adjacency matrices), computer graphics (transformations), statistics (covariance matrices), and engineering.

📌 Examples
  • 1) Non-commutativity: Let A = [[1,2],[0,1]], B = [[0,1],[1,0]]. Compute AB = [[2,1],[1,0]] and BA = [[0,1],[1,2]]. Since AB ≠ BA, multiplication is not generally commutative.
  • 2) Transpose of product: Let A = [[1,2],[3,4]], B = [[0,1],[1,0]]. AB = [[2,1],[4,3]]. Now (AB)^T = [[2,4],[1,3]]. B^T = B and A^T = [[1,3],[2,4]], so B^T A^T = [[2,4],[1,3]] = (AB)^T, verifying (AB)^T = B^T A^T.
  • 3) Inverse of product: Let A = [[1,0],[0,2]] (A^{-1} = [[1,0],[0,1/2]]) and B = [[0,1],[1,0]] (B^{-1} = B). Then (AB)^{-1} should be B^{-1} A^{-1} = B A^{-1}. Compute AB = [[0,1],[0,2]]; invertible check and compute to verify identity on conforming invertible matrices.
  • 4) Symmetric + skew decomposition: For A = [[1,3],[0,2]], A^T = [[1,0],[3,2]]. Symmetric part S = (A + A^T)/2 = [[1,1.5],[1.5,2]], skew part K = (A - A^T)/2 = [[0,1.5],[-1.5,0]]. Then A = S + K.
  • 5) Idempotent (projection): P = [[1,0],[0,0]] satisfies P^2 = P. Geometric meaning: projects any vector onto x-axis; applying P twice same as once.
🧮 Formulas
  1. \[A + B = B + A (commutativity of addition)\]
  2. \[(A + B) + C = A + (B + C) (associativity of addition)\]
  3. \[k(A + B) = kA + kB and (k + l)A = kA + lA (scalar distributivity)\]
  4. \[A(B + C) = AB + AC and (A + B)C = AC + BC (distributivity of multiplication)\]
  5. \[A(BC) = (AB)C (associativity of multiplication)\]
  6. \[(AB)^T = B^T A^T (transpose of product)\]
🔢11

Applications and Problem Types

📐 MATHEMATICAL FORMULA

Applications and Problem Types

Core Principle: Matrix form of a linear system: A x = b

Overview
In Class 12 Matrices, the main applications revolve around solving systems of linear equations, studying consistency of systems, homogeneous vs non-homogeneous systems, and modelling simple real-world situations (allocation/mixing, transformations, Markov processes). Matrices provide compact notation and efficient methods (Cramer's rule, inverse of a matrix, row reduction/rank) to obtain solutions and to determine whether solutions exist and whether they are unique.

Core ideas and procedures

  • Representing a system: A linear system of m equations in n unknowns can be written as A x = b, where A is an m×n coefficient matrix, x is an n×1 column vector of unknowns and b is an m×1 constant vector.
  • Solving when A is square and invertible (n×n): If det(A) ≠ 0 then the unique solution is x = A-1 b.
  • Cramer's rule (square systems): If det(A) ≠ 0 then each unknown x_i = det(A_i)/det(A), where A_i is A with its i-th column replaced by b.
  • Rank and consistency (Rouché–Capelli theorem): Form the augmented matrix [A|b]. The system A x = b is consistent iff rank(A) = rank([A|b]). If consistent and rank(A) = n (number of unknowns) the solution is unique; if rank(A) < n there are infinitely many solutions (parameters appear).
  • Homogeneous systems: A x = 0 is always consistent (x = 0). It has non-trivial solutions iff rank(A) < n. For an n×n matrix A, a non-trivial solution exists iff det(A) = 0.
  • Finding A-1: For a square matrix, compute A-1 using adjoint/determinant (for small matrices) or elementary row operations (augment with I and row-reduce).

Typical problem types & strategies

  • Solve a system of 2 or 3 linear equations: try matrix inverse if det ≠ 0, otherwise use row reduction to find general solution.
  • Determine parametric values for which a system is consistent/inconsistent: compute rank(A) and rank([A|b]) as functions of the parameter and compare.
  • Find conditions for non-trivial solutions of homogeneous systems: set det(A)=0 (for square A) or check rank < n.
  • Modeling problems: translate real-world constraints into linear equations, form A and b, then solve by appropriate method.

Short solution workflow

  1. Translate the word problem into linear equations and form A, x, b.
  2. If A is square compute det(A). If det(A) ≠ 0 use x = A-1b or Cramer's rule.
  3. If det(A) = 0 or A is rectangular, compute ranks of A and [A|b] by row-reduction to decide consistency and find general solution (introduce parameters for free variables).
  4. Interpret the solution in context (e.g., non-negative constraints for real-life quantities).

Practical tips

  • Use row-reduction (Gaussian elimination) to find rank and solutions; it works for square and rectangular matrices.
  • For 2×2 matrices use the closed-form inverse and Cramer's rule for quick calculation.
  • Always check the applicability conditions: Cramer's rule and A-1 require det(A) ≠ 0.
📌 Examples
  • Solve the system x + 2y = 5, 3x - y = 4 by writing A x = b. Here A = [[1,2],[3,-1]], det(A) = -7 ≠ 0 so x = A^-1 b or apply Cramer's rule to get unique solution.
  • Find value(s) of parameter k for which the system x + y = 2, 2x + ky = 3 is consistent. Form A and augmented matrix [A|b], compute ranks depending on k. If rank(A) = rank([A|b]) the system is consistent; if k = 2 check for infinite solutions or inconsistency.
  • Homogeneous example: For A being a 3×3 matrix, determine if A x = 0 has non-trivial solutions by checking det(A). If det(A)=0 then there exist infinitely many non-trivial solutions; find them by row-reduction and express in terms of free parameters.
  • Transformation example: Rotate a point (x,y) by angle θ using rotation matrix R = [[cosθ, -sinθ],[sinθ, cosθ]]. New coordinates are R [x;y]. E.g., rotate (1,0) by 90° to get (0,1).
  • Markov-chain steady state: For transition matrix P, steady state vector s satisfies P s = s (an eigenvector for eigenvalue 1). Solve (P - I)s = 0 with the condition sum(s_i)=1 to get long-term proportions.
🧮 Formulas
  1. \[Matrix form of a linear system: A x = b\]
  2. \[Unique solution when A is invertible: x = A^-1 b\]
  3. \[Inverse of a 2×2 matrix: For A = [[a,b],[c,d]]\]
    \[A^-1 = (1/(ad - bc)) [[d, -b],[-c\]
    \[a]] when ad - bc ≠ 0\]
  4. \[Inverse via adjoint: A^-1 = (1/det(A)) adj(A)\]
    \[when det(A) ≠ 0\]
  5. \[Cramer's rule: x_i = det(A_i) / det(A) for i = 1..n\]
    \[where A_i replaces i-th column by b\]
  6. \[Rouché–Capelli consistency condition: system A x = b is consistent iff rank(A) = rank([A|b])\]

Key Concepts

Matrix
A rectangular array of numbers (or elements) arranged in rows and columns.
Order of a matrix
The size of a matrix given by number of rows × number of columns (m × n).
Row matrix
A matrix having exactly one row (1 × n).
Column matrix
A matrix having exactly one column (m × 1).
Square matrix
A matrix with equal number of rows and columns (n × n).
Zero (Null) matrix
A matrix all of whose entries are zero.
Diagonal matrix
A square matrix whose nonzero entries occur only on the main diagonal.
Scalar matrix
A diagonal matrix in which all diagonal entries are equal to a scalar λ.
Identity (Unit) matrix
A diagonal matrix with 1's on the main diagonal (denoted I_n); acts as multiplicative identity.
Transpose of a matrix
The matrix obtained by interchanging rows and columns; denoted A^T.
Symmetric matrix
A square matrix equal to its transpose (A^T = A).
Skew-symmetric matrix
A square matrix satisfying A^T = -A; diagonal entries must be zero.
Upper triangular matrix
A square matrix with all entries below the main diagonal equal to zero.
Lower triangular matrix
A square matrix with all entries above the main diagonal equal to zero.
Determinant
A scalar value computed from a square matrix that, among other things, indicates invertibility (det ≠ 0).
Adjoint (Adjugate) of a matrix
The transpose of the cofactor matrix of a square matrix; used to compute the inverse.
Inverse of a matrix
For a square matrix A, A^−1 is such that A·A^−1 = A^−1·A = I, and exists only if det(A) ≠ 0.
Singular matrix
A square matrix that is not invertible; equivalently its determinant is zero.
Rank of a matrix
The maximum number of linearly independent rows or columns of the matrix.
Elementary row operations
Three operations on rows used in row reduction: (i) swap two rows, (ii) multiply a row by a nonzero scalar, (iii) add a multiple of one row to another.

Practice Questions

  1. Define the order of a matrix and state the condition for two matrices to be equal. / आव्यूह की कोटि (order) को परिभाषित कीजिए तथा दो आव्यूहों के बराबर होने की शर्त बताइए।
    Show answer

    The order of a matrix with m rows and n columns is m × n. Two matrices are equal iff they have the same order and a_ij = b_ij for all i, j. / m पंक्तियों और n स्तंभों वाले आव्यूह की कोटि m × n होती है। दो आव्यूह तभी बराबर होते हैं जब उनकी कोटि समान हो और सभी i, j के लिए a_ij = b_ij हो।

  2. If A is of order 2×3 and B is of order 3×2, state whether AB and BA exist and give their orders; what does this illustrate? / यदि A की कोटि 2×3 और B की कोटि 3×2 है, तो बताइए कि AB और BA अस्तित्व में हैं या नहीं और उनकी कोटि दीजिए; यह क्या दर्शाता है?
    Show answer

    AB exists with order 2×2 and BA exists with order 3×3. Since AB ≠ BA, this illustrates that matrix multiplication is generally non-commutative. / AB अस्तित्व में है जिसकी कोटि 2×2 है तथा BA अस्तित्व में है जिसकी कोटि 3×3 है। चूँकि AB ≠ BA, यह दर्शाता है कि आव्यूह गुणन सामान्यतः क्रमविनिमेय नहीं होता।

  3. Prove that (AB)^T = B^T A^T order is reversed; verify the rule for transpose of a sum too. / सिद्ध कीजिए कि (AB)^T = B^T A^T में क्रम उलट जाता है; योग के परिवर्त का नियम भी सत्यापित कीजिए।
    Show answer

    (AB)^T = B^T A^T (order reverses), while (A + B)^T = A^T + B^T (order preserved). These follow from (A^T)_ij = a_ji applied to each product/sum entry. / (AB)^T = B^T A^T (क्रम उलटता है), जबकि (A + B)^T = A^T + B^T (क्रम वही रहता है)। ये (A^T)_ij = a_ji को प्रत्येक प्रविष्टि पर लगाने से प्राप्त होते हैं।

  4. Show that every square matrix can be written as the sum of a symmetric and a skew-symmetric matrix. / दर्शाइए कि प्रत्येक वर्ग आव्यूह को एक सममित और एक विषम-सममित आव्यूह के योग के रूप में लिखा जा सकता है।
    Show answer

    Write A = S + K where S = (A + A^T)/2 is symmetric (S^T = S) and K = (A − A^T)/2 is skew-symmetric (K^T = −K). / A = S + K लिखिए, जहाँ S = (A + A^T)/2 सममित है (S^T = S) तथा K = (A − A^T)/2 विषम-सममित है (K^T = −K)।

  5. Why are all diagonal entries of a skew-symmetric matrix zero? / विषम-सममित आव्यूह की सभी विकर्ण प्रविष्टियाँ शून्य क्यों होती हैं?
    Show answer

    For skew-symmetric A, a_ij = −a_ji, so for i = j we get a_ii = −a_ii, giving 2a_ii = 0, hence a_ii = 0. / विषम-सममित A के लिए a_ij = −a_ji, अतः i = j के लिए a_ii = −a_ii, जिससे 2a_ii = 0, अतः a_ii = 0।

  6. State the three elementary row operations and the condition under which an n×n matrix A is invertible. / तीन प्रारंभिक पंक्ति संक्रियाएँ बताइए तथा वह शर्त जिसके अंतर्गत n×n आव्यूह A व्युत्क्रमणीय होता है।
    Show answer

    Operations: (i) swap two rows, (ii) multiply a row by a nonzero scalar, (iii) add a multiple of one row to another. A is invertible iff det(A) ≠ 0 (rank A = n). / संक्रियाएँ: (i) दो पंक्तियाँ बदलना, (ii) किसी पंक्ति को अशून्य अदिश से गुणा करना, (iii) एक पंक्ति का गुणज दूसरी में जोड़ना। A तभी व्युत्क्रमणीय है जब det(A) ≠ 0 (रैंक A = n) हो।

  7. Using the adjoint method, find A^{-1} for A = [[2,1],[1,1]]. / आसंजी (adjoint) विधि का प्रयोग करके A = [[2,1],[1,1]] का A^{-1} ज्ञात कीजिए।
    Show answer

    det(A) = 2·1 − 1·1 = 1; adj(A) = [[1,−1],[−1,2]], so A^{-1} = (1/1)[[1,−1],[−1,2]] = [[1,−1],[−1,2]]. / det(A) = 2·1 − 1·1 = 1; adj(A) = [[1,−1],[−1,2]], अतः A^{-1} = (1/1)[[1,−1],[−1,2]] = [[1,−1],[−1,2]]।

  8. State Rouché–Capelli theorem and use rank to classify the solutions of AX = b. / रूशे–कैपेली प्रमेय बताइए तथा हल वर्गीकृत करने के लिए रैंक का प्रयोग कीजिए (AX = b)।
    Show answer

    AX = b is consistent iff rank(A) = rank([A|b]); if this common rank = n there is a unique solution, if < n there are infinitely many; if rank(A) < rank([A|b]) the system is inconsistent. / AX = b संगत है यदि rank(A) = rank([A|b]); यदि यह उभयनिष्ठ रैंक = n है तो अद्वितीय हल, यदि < n है तो अनंत हल; यदि rank(A) < rank([A|b]) है तो निकाय असंगत है।

Related Laws & Principles

Explore all

Foundational laws & principles connected to this chapter — tap to open in the Laws Explorer.

Loading related laws…
Sourced from 153 content files · LLOS Learn · browse all chapters