Key Points

Matrices

16 Sections
  • Matrix Definition and Order

    A matrix is a rectangular array of numbers or functions, called elements, arranged in rows and columns. A matrix with mm rows and nn columns has an order of m×nm \times n.

  • Equality of Matrices

    Two matrices A=[aij]A = [a_{ij}] and B=[bij]B = [b_{ij}] are equal if they have the same order and their corresponding elements are equal. This means aij=bija_{ij} = b_{ij} for all values of ii and jj.

  • Types of Matrices

    Key types include: Column Matrix (one column), Row Matrix (one row), Square Matrix (number of rows equals number of columns), and Zero or Null Matrix (all elements are zero).

  • Diagonal, Scalar, and Identity Matrices

    A square matrix is a Diagonal Matrix if all its non-diagonal elements are zero. A diagonal matrix is a Scalar Matrix if all its diagonal elements are equal. A square matrix is an Identity Matrix, denoted by II, if all its diagonal elements are 1 and all other elements are 0.

  • Matrix Addition

    The sum of two matrices of the same order is a matrix obtained by adding their corresponding elements. If A=[aij]A = [a_{ij}] and B=[bij]B = [b_{ij}], then A+B=[aij+bij]A+B = [a_{ij} + b_{ij}]. Matrix addition is commutative and associative.

  • Scalar Multiplication of a Matrix

    To multiply a matrix A=[aij]A = [a_{ij}] by a scalar constant kk, we multiply every element of AA by kk. The resulting matrix is kA=[kaij]kA = [k \cdot a_{ij}].

  • Condition for Matrix Multiplication

    The product of two matrices AA and BB, denoted ABAB, is defined only if the number of columns in matrix AA is equal to the number of rows in matrix BB.

  • Matrix Multiplication Process

    If AA is an m×nm \times n matrix and BB is an n×pn \times p matrix, their product ABAB is an m×pm \times p matrix C=[cik]C = [c_{ik}], where cik=j=1naijbjkc_{ik} = \sum_{j=1}^{n} a_{ij}b_{jk}. This is the sum of products of elements of the ii-th row of AA with the kk-th column of BB.

  • Properties of Matrix Multiplication

    Matrix multiplication is associative, so (AB)C=A(BC)(AB)C = A(BC). It is distributive, so A(B+C)=AB+ACA(B+C) = AB+AC. However, it is not commutative in general, so ABBAAB \neq BA. The product of two non-zero matrices can be a zero matrix.

  • Transpose of a Matrix

    The transpose of a matrix AA, denoted by AA' or ATA^T, is obtained by interchanging its rows and columns. If the order of AA is m×nm \times n, the order of AA' is n×mn \times m.

  • Properties of Transpose

    Important properties of the transpose are: (A)=A(A')' = A, (kA)=kA(kA)' = kA', (A+B)=A+B(A+B)' = A' + B', and the reversal law for multiplication (AB)=BA(AB)' = B'A'.

  • Symmetric Matrix

    A square matrix AA is called symmetric if its transpose is equal to the matrix itself, which means A=AA' = A. In a symmetric matrix, aij=ajia_{ij} = a_{ji} for all ii and jj.

  • Skew-Symmetric Matrix

    A square matrix AA is called skew-symmetric if its transpose is equal to its negative, which means A=AA' = -A. In a skew-symmetric matrix, aij=ajia_{ij} = -a_{ji} for all i,ji, j, and all diagonal elements are zero.

  • Decomposition into Symmetric and Skew-Symmetric

    Any square matrix AA can be expressed as the sum of a symmetric matrix PP and a skew-symmetric matrix QQ, where P=12(A+A)P = \frac{1}{2}(A + A') and Q=12(AA)Q = \frac{1}{2}(A - A').

  • Invertible Matrix

    A square matrix AA is invertible if there exists a square matrix BB of the same order such that AB=BA=IAB = BA = I, where II is the identity matrix. The matrix BB is called the inverse of AA and is denoted by A1A^{-1}.

  • Properties of Inverse Matrices

    The inverse of a square matrix, if it exists, is unique. If AA and BB are invertible matrices of the same order, then (AB)1=B1A1(AB)^{-1} = B^{-1}A^{-1}. This is known as the reversal law for inverses.

Quick Revision Tips

  • • Review these points before exams
  • • Make flashcards for better retention
  • • Connect points to real-world examples
  • • Practice explaining each point in your own words