SSC CGL Exam  >  SSC CGL Notes  >  General Intelligence and Reasoning  >  Overview: Matrix

Overview: Matrix

Introduction

An m × n matrix is a rectangular array of numbers with m rows and n columns. A typical m × n matrix A is written as

Introduction

The matrix above may be represented compactly as A = [aij]m×n. Each entry aij is called the (i, j)th element of A. The element aij lies in the ith row and jth column of the matrix.

Introduction

Important formulas for matrices

Let A and B be square matrices of order n, and let In denote the n × n identity (unit) matrix. The following formulas and properties involving the adjoint (or classical adjoint) and determinant are useful.

(a) A(adj A) = |A| I_n = (adj A)A
(b) |adj A| = |A|n-1
    (Thus A · adj A is always a scalar matrix.)
(c) adj(adj A) = |A|^(n-2) A
(d) adj(A + B) does not have a simple general expansion analogous to determinants; treat on a case-by-case basis.
(e) adj(AB) = (adj B)(adj A)
(f) adj(Am) = (adj A)m, for integer m ≥ 1
(g) adj(kA) = kn-1adj A, for scalar k ∈ ℝ
(h) adj(I_n) = I_n
(i) adj(0) = 0
(j) If A is symmetric then adj A is also symmetric
(k) If A is diagonal then adj A is diagonal
(l) If A is triangular then adj A is triangular
(m) If A is singular then |adj A| = 0

Types of matrices

  • Symmetric matrix: A square matrix A = [aij] is symmetric if aij = aji for all i, j.
  • Skew-symmetric matrix: A square matrix A is skew-symmetric if aij = -aji for all i, j. In particular, diagonal entries of a real skew-symmetric matrix are zero.
  • Hermitian and skew-Hermitian matrices: For complex matrices, a matrix A is Hermitian if A equals its conjugate transpose. The conjugate transpose is denoted in the original text as Aθ (that is, take the transpose and then the complex conjugate of each entry). A matrix is skew-Hermitian if it equals the negative of its conjugate transpose.
  • Types of matrices
    Types of matrices
  • Orthogonal matrix: A square real matrix A is orthogonal if \(AA^{T}=I_n\) (equivalently \(A^{T}A=I_n\)), so \(A^{-1}=A^{T}\).
  • Idempotent matrix: A is idempotent if \(A^{2}=A\).
  • Involutory matrix: A is involutory if \(A^{2}=I\) (equivalently \(A^{-1}=A\)).
  • Nilpotent matrix: A square matrix A is nilpotent if \(A^{p}=0\) for some positive integer p.

Trace of a matrix

The trace of a square matrix is the sum of the elements on its main diagonal. For an n × n matrix A = [aij],

The trace is denoted by tr(A).

  • (i) tr(λA) = λ·tr(A) for any scalar λ.
  • (ii) tr(A + B) = tr(A) + tr(B) for n × n matrices A and B.
  • (iii) tr(AB) = tr(BA) whenever the products AB and BA are defined (square matrices of the same order).
Trace of a matrix

Matrix transpose

The transpose of a matrix A is the matrix obtained by interchanging its rows and columns. The transpose is denoted by AT or A'. If A has order m × n then AT has order n × m.

Matrix transpose
Matrix transpose

Properties of transpose

  • (i) \((A^{T})^{T}=A\).
  • (ii) \((A+B)^{T}=A^{T}+B^{T}\).
  • (iii) \((AB)^{T}=B^{T}A^{T}\).
  • (iv) \((kA)^{T}=kA^{T}\) for scalar k.
  • (v) \((A_{1}A_{2}\cdots A_{n})^{T}=A_{n}^{T}\cdots A_{2}^{T}A_{1}^{T}\).
  • (vi) \(I^{T}=I\).
  • (vii) tr(A)=tr(AT).
Properties of transpose

Properties of matrix multiplication

  • (i) Matrix multiplication is generally non-commutative: AB ≠ BA in general.
  • (ii) Matrix multiplication is associative: \((AB)C=A(BC)\) whenever sizes are compatible.
  • (iii) Multiplication is distributive over addition: \(A(B+C)=AB+AC\) and \((A+B)C=AC+BC\).

Adjoint of a matrix

The adjoint (classical adjoint) of an n × n matrix A, denoted by adj A or \(\operatorname{adj}A\), is the transpose of the cofactor matrix of A. Each entry of adj A is the cofactor of the corresponding entry of A, placed in transposed position.

Adjoint of a matrix

Inverse of a matrix

An n × n matrix A has an inverse A-1 if and only if A is non-singular, i.e., \(|A|\ne 0\). When the inverse exists, it satisfies \(AA^{-1}=A^{-1}A=I_n\).

The inverse of A (when \(|A|\ne 0\)) can be written in terms of the adjoint:

\(A^{-1}=\dfrac{1}{|A|}\operatorname{adj}A\).

Inverse of a matrix

Order of a matrix and basic notes

The order of a matrix is given by the number of rows by number of columns, denoted m × n. For example:

Order of a matrix and basic notes

The matrix shown above has order 2 × 3.

  • Note (a): A matrix is an arrangement of quantities in rows and columns.
  • Note (b): Elements of a matrix may be real or complex. A matrix all of whose elements are real is called a real matrix.
  • Note (c): An m × n matrix has m·n elements.

Illustration 1: Construct a 3×4 matrix A = [aij], whose elements are given by aij = 2i + 3j.

Sol:

Compute the element in the ith row and jth column by substituting i and j in the formula aij=2i+3j.

a11=2·1+3·1=5

a12=2·1+3·2=8

a13=2·1+3·3=11

a14=2·1+3·4=14

a21=2·2+3·1=7

a22=2·2+3·2=10

a23=2·2+3·3=13

a24=2·2+3·4=16

a31=2·3+3·1=9

a32=2·3+3·2=12

a33=2·3+3·3=15

a34=2·3+3·4=18

Illustration 1: Construct a 3×4 matrix A = [aij], whose elements are given by aij = 2i + 3j.

Illustration 2: Construct a 3×4 matrix whose elements are given by: aij =

Illustration 2: Construct a 3×4 matrix whose elements are given by: aij =

Sol:

The method is identical to Illustration 1: substitute respective row and column indices i and j into the given formula for aij to obtain each entry.

Illustration 2: Construct a 3×4 matrix whose elements are given by: aij =
Illustration 2: Construct a 3×4 matrix whose elements are given by: aij =

Hence the required matrix is:

Illustration 2: Construct a 3×4 matrix whose elements are given by: aij =

Trace - further properties and example

Let A = [aij]n×n and B = [bij]n×n, and let λ be a scalar. Then

  • tr(λA) = λ·tr(A)
  • tr(A + B) = tr(A) + tr(B)
  • tr(AB) = tr(BA)
Trace - further properties and example

Transpose of a matrix - definition and example

The transpose of a matrix A is obtained by turning its rows into columns (or columns into rows). If A is m × n then AT is n × m. For example, the transpose of the following matrix is shown:

Transpose of a matrix - definition and example

Properties of transpose (summary)

  • (AT)T = A
  • (A + B)T = AT + BT
  • (AB)T = BTAT
  • (kA)T = kAT
  • (A1A2 ··· An)T = AnT ··· A2TA1T
  • IT = I
  • tr(A) = tr(AT)

Problems on matrices

Illustration 3: If

Problems on matrices

then prove that (AB)T = BTAT.

Solution:

Obtain the product AB explicitly (using the usual rule: row of A times column of B) and then form the transpose of the resulting matrix to get (AB)T.

Obtain BT and AT individually by transposing B and A respectively.

Multiply BT and AT in that order to get BTAT.

Compare the entries of (AB)T and BTAT; they are equal, which proves (AB)T=BTAT.

Problems on matrices
Problems on matrices

Illustration 4: If

Problems on matrices

Then what is (B')'A' equal to?

Sol:

Use the properties of transpose. Note that (B')' means the transpose of the transpose of B, that is (BT)T=B.

Therefore (B')'A' = BAT.

Problems on matrices
The document Overview: Matrix is a part of the SSC CGL Course General Intelligence and Reasoning for SSC CGL.
All you need of SSC CGL at this link: SSC CGL

FAQs on Overview: Matrix

1. What is a matrix?
A matrix is a rectangular array of numbers, symbols, or expressions arranged in rows and columns. It is denoted using brackets and its size is determined by the number of rows and columns it contains.
2. How do you add two matrices together?
To add two matrices, they must have the same dimensions. You simply add the corresponding elements of the matrices together. For example, if matrix A has elements aij and matrix B has elements bij, then the sum of matrix A and matrix B, denoted as A + B, will have elements aij + bij.
3. What is the determinant of a matrix?
The determinant of a square matrix is a scalar value that is computed using a specific formula. It provides information about the matrix, such as whether it is invertible or singular. The determinant of a 2x2 matrix [a b; c d] is given by the formula ad - bc.
4. How do you multiply two matrices together?
To multiply two matrices, the number of columns in the first matrix must be equal to the number of rows in the second matrix. The product of matrix A and matrix B, denoted as AB, is obtained by multiplying the corresponding elements of the matrices and summing them up. The element at row i and column j of the resulting matrix is obtained by multiplying the elements of row i of matrix A with the corresponding elements of column j of matrix B and adding them.
5. What is the inverse of a matrix?
The inverse of a square matrix A is another matrix, denoted as A^(-1), such that when multiplied with A, it results in the identity matrix. The inverse of a matrix exists only if its determinant is non-zero. It is used to solve linear equations and various other mathematical operations.
Explore Courses for SSC CGL exam
Get EduRev Notes directly in your Google search
Related Searches
practice quizzes, Semester Notes, mock tests for examination, Previous Year Questions with Solutions, shortcuts and tricks, Free, video lectures, Overview: Matrix, Viva Questions, Overview: Matrix, Sample Paper, Extra Questions, Exam, Objective type Questions, Summary, study material, past year papers, Overview: Matrix, Important questions, ppt, MCQs, pdf ;