Class 10 Exam  >  Class 10 Notes  >  Mathematics Class 10 ICSE  >  Revision Notes: Matrices

Revision Notes: Matrices | Mathematics Class 10 ICSE PDF Download

Important Terms

  • A set of mn numbers arranged in the form of a rectangular array of m rows and n columns is called an m x n matrix
  • Each number or entity in a matrix is called its element.
  • In a matrix, the horizontal lines are called rows, whereas the vertical lines are called columns.
  • If a matrix contains m rows and n columns then it is said to be a matrix of order m x n (read as m by n).
  • The total number of elements in a matrix is equal to the product of its number of rows and number of columns.
  • A matrix having only one row is known as a row matrix.
  • A matrix having only one column is known as a column matrix.
  • A matrix which has an equal number of rows and columns is called a square matrix.
  • Rectangular matrix: A matrix in which number of rows are not equal to the number of columns is called a rectangular matrix.
  • A matrix each of whose elements is zero is called a zero matrix or a null matrix.
  • A square matrix which has every non–diagonal element as zero is called a diagonal matrix.
  • A diagonal matrix in which each element of its leading diagonal is unity is called identity matrix.
  • Two matrices are said to be equal, if they are of the same order and have the same corresponding elements.
  • If A is a matrix, then its transpose is obtained by interchanging its rows and columns. Transpose of a matrix A is denoted by At.

Operations on matrices

  • Addition of Matrices: Let A and B be two matrices each of order m x n. Then their sum A + B is a matrix of order m  n and is obtained by adding the corresponding elements of A and B.
  • Subtraction of Matrices: Let A and B be two matrices each of order m x n. Then their difference A – B is a matrix of order m  n and is obtained by subtracting the corresponding elements of A and B.
  • In addition or subtraction of the matrices, the order of the resulting matrix is the same as the order of matrices added or subtracted.
  • Matrix addition is commutative
    i.e., A + B = B + A
  • Matrix addition is associative for any three matrices A, B and C.
    A + (B + C) = (A + B) + C.
  • If A and B are two matrices, A + X = B ⇒ X = B - A
  • Additive Identity: If any matrix is added to null (zero) matrix of the same order, or a null matrix is added to a matrix of the same order, the matrix remains unaltered and hence, the null matrix is said to be the additive identity in matrices.
    A null matrix is identity element for addition
    i.e., A + 0 = A = 0 + A.
  • If A and B are two matrices of the same order such that:
    A + B = B + A = a null matrix,
    then A is said to be the additive inverse of B and B is said to be the additive inverse of A. 
    Additive inverse of a matrix A is its negative A.
  • If O is the null or zero matrix of the same order as matrix A, then
    A + (–A) = (–A) + A = O
  • Let A and B are two matrices of the same order such that 
    A + X = B, where X is an unknown matrix; then X = B – A and the order of matrix X is same as that of A and B.
  • The multiplication of a matrix A by a number k gives a matrix of the same order as A, in which all the elements are k times the elements of A.
  • The product of two matrices A and B is defined if the number of columns of A is equal to the number of rows of B.
  • Let A = [aij] be an m × n matrix and B = [bjk] be an n × p matrix. Then the product of the matrices A and B is the matrix C of order m × p.
  • To get the (i, k)th element cik of the matrix C, we take the ith row of A and kth column of B, multiply them element wise and take the sum of all these products.
  • Matrix multiplication is not commutative. In general, AB ≠ BA.
  • The product of two non-zero matrices can be a zero matrix.
  • Let A, B and C are matrices.
    Then AB = AC, A ≠ 0 ⇒ it is not necessary that B = C.
    In general, cancellation law is not applicable in matrix multiplication.
  • Identity matrix: The unit matrix I is known as the identity matrix for multiplication.
    Let A be any square matrix and I be the unit matrix of same order, then,
    A x I = I x A = A.
  • Let A, B and C be any three matrices.
    Then (AB) C = A (BC)
    Thus, matrix multiplication is associative.
  • Let A and B are two matrices.
    Then AB = 0 ⇒ it is not necessary that A = 0 or B = 0
  • Let A and B are two matrices.
    Then If A = 0 or B = 0, then AB = 0 = BA
  • Let A, B and C be any three matrices.
    1. then A(B + C) = AB + AC and A (B - C) = AB - AC
    2. then (A + B) C = AC + BC and (A - B)C = AC - BC
      In general, matrix multiplication is distributive over addition and subtraction.
  • Laws of algebra are not applicable to matrices.
    That is,
    (A + B)≠ A2 + 2AB + B2
    and
    (A + B)(A - B) ≠ A2 - B2
The document Revision Notes: Matrices | Mathematics Class 10 ICSE is a part of the Class 10 Course Mathematics Class 10 ICSE.
All you need of Class 10 at this link: Class 10
74 videos|198 docs|30 tests

FAQs on Revision Notes: Matrices - Mathematics Class 10 ICSE

1. What are matrices in mathematics?
Ans. Matrices are rectangular arrays of numbers, symbols, or expressions, arranged in rows and columns. They are used to represent and solve mathematical problems, especially in linear algebra, where operations on matrices help in solving systems of linear equations.
2. How do you add and subtract matrices?
Ans. To add or subtract matrices, they must be of the same size (i.e., have the same number of rows and columns). You add or subtract corresponding elements from each matrix. For example, if A and B are two matrices, the sum C = A + B is obtained by adding each element \(c_{ij} = a_{ij} + b_{ij}\).
3. What is the process of multiplying matrices?
Ans. To multiply two matrices, the number of columns in the first matrix must equal the number of rows in the second matrix. The resulting matrix's element at position \(c_{ij}\) is found by taking the dot product of the ith row of the first matrix and the jth column of the second matrix. This involves multiplying corresponding elements and summing them up.
4. What is the determinant of a matrix, and why is it important?
Ans. The determinant is a special number that can be calculated from a square matrix. It provides important information about the matrix, such as whether it is invertible (a matrix with a non-zero determinant is invertible) and the volume scaling factor of the linear transformation described by the matrix. For a 2x2 matrix, the determinant can be computed as \(ad - bc\) for a matrix \(\begin{pmatrix} a & b \\ c & d \end{pmatrix}\).
5. How are inverse matrices calculated, and what is their significance?
Ans. The inverse of a matrix \(A\) is denoted as \(A^{-1}\) and is defined such that \(AA^{-1} = I\), where \(I\) is the identity matrix. To find the inverse of a 2x2 matrix \(\begin{pmatrix} a & b \\ c & d \end{pmatrix}\), the formula is \(A^{-1} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}\) provided \(ad - bc \neq 0\). The inverse matrix is significant for solving linear equations and understanding transformations in geometry.
Related Searches

ppt

,

past year papers

,

Viva Questions

,

study material

,

Revision Notes: Matrices | Mathematics Class 10 ICSE

,

pdf

,

Revision Notes: Matrices | Mathematics Class 10 ICSE

,

Sample Paper

,

Revision Notes: Matrices | Mathematics Class 10 ICSE

,

Semester Notes

,

shortcuts and tricks

,

MCQs

,

Important questions

,

video lectures

,

Objective type Questions

,

Free

,

Extra Questions

,

Summary

,

Exam

,

Previous Year Questions with Solutions

,

practice quizzes

,

mock tests for examination

;