![]() |
Algebra of Matrices denotes the various algebraic operations performed on a matrix. It includes operations such as Addition, Subtraction, and Multiplication. Matrices the the arrangement of numbers or any other mathematical elements in the form of rectangular arrays. In this article, we will learn the various algebraic operations performed on the matrices, and solve some of the examples on the algebra of the matrices. Table of Content What is Algebra of Matrices?
The algebraic operations that can be performed on the matrices are namely:
Learn, Matrices Addition of MatricesAddition of matrices is the summing of all the given matrices to obtain a single matrix after the operation. The operation is performed on the matrices (plural of matrix), such that element (say aij) in the resultant matrix at some position (say i and j) is equal to the addition operation performed on the elements at same position (i, j) of all the matrix. Suppose we have n matrices, M1, M2, M3, M4, M5 ….. upto Mn, and addition operation is performed on them and result is stored in R matrix, then for all the elements in R ( Rij , where i is the row number and j is the column number of the element in the matrix R) can be individually represented as,
Since every element is result of the operation performed on element at same position in all the matrices, thus the iff (if and only if) condition for addition of matrix is that the number of rows and columns in the all the involved matrices should be same, or in other terms the order of all the matrices should be same. Also the resultant matrix obtained after the operation is of the same order as of the involved matrices. ![]() Example: Find the sum of the matrices when the given matrices are, [Tex]A = \begin{bmatrix} a_{11} && a_{12} \\ a_{21} && a_{22} \end{bmatrix} and B = \begin{bmatrix} b_{11} && b_{12} \\ b_{21} && b_{22} \end{bmatrix}[/Tex]. Solution:
Properties of Matrix AdditionConsider the A, B and C as there matrices and O is the zero matrix of same dimensions then the following properties hold:
Learn, Addition of Matrices Subtraction of MatricesSubtraction of matrices is the operation defined on the matrix to obtain a single matrix by subtracting corresponding elements of the two matrices. The two matrices which undergoes subtraction should be of same order and the resultant matrix is also of the same order. Example: Find the difference between two matrices given as when the given matrices are, A = [Tex]A = \begin{bmatrix} a_{11} && a_{12} \\ a_{21} && a_{22} \end{bmatrix}[/Tex] and [Tex]B = \begin{bmatrix} b_{11} && b_{12} \\ b_{21} && b_{22} \end{bmatrix}[/Tex] Solution:
Properties of Matrix SubtractionConsider the A, B and C as there matrices and O is the zero matrix of same dimensions then the following properties hold:
Multiplication of MatrixMatrix multiplication is the operation operation performed on a set of matrices or with a set of matrices and a number to obtain a single matrix of order different from the involved matrices. The matrix multiplication can further have two ways based on whether the multiplication is with another matrix or a number. Scalar Multiplication of MatricesWhen the matrix is multiplied with a scalar quantity it is called scalar multiplication, and the resultant is a singular matrix of same dimension (rows and columns) just all the elements are multiplied with that scalar quantity. Example: Given k and a matrix A [Tex]\begin{bmatrix} a_{11} && a_{12} \\ a_{21} && a_{22} \end{bmatrix}[/Tex]. Find the value of kA. Solution:
How to Multiply Two Matrices?When two matrices are multiplied a resultant matrix with changed dimensions is obtained. In matrix multiplication the two matrices must follow the rule which is, the number of rows in the second matrix should be equal to the number of columns in the first matrix, i.e if we have two matrices A (dimension a1 x b1 ) and B (dimension a2 x b2), then A x B is only possible if and only if b1 = a1 and the resultant matrix will have a dimension of a1 x b2.
Example: Given matrix A = [Tex]\begin{bmatrix} a_{11} && a_{12} \\ a_{21} && a_{22} \end{bmatrix}[/Tex] and matrix B = [Tex]\begin{bmatrix} b_{11} && b_{12} \\ b_{21} && b_{22} \end{bmatrix}[/Tex]. What will be the result of A × B. Solution:
Properties of Matrix MultiplicationConsider the A, B and C as there matrices and O is the zero matrix of same dimensions then the following properties hold:
Learn, Matrix Multiplication Transpose of Matrix
It is denoted by AT , where A is the original matrix. Note: If the order of the original matrix is m x n, then the dimension of the transpose matrix will be n x m. If we have a matrix [Tex]A = \begin{bmatrix} a_{11} && a_{12} && a_{13}\\ a_{21} && a_{22} && a_{23} \\ a_{31} && a_{32} && a_{33}\end{bmatrix}[/Tex], then the transpose matrix AT will be, [Tex]A^T = \begin{bmatrix} a_{11} && a_{21} && a_{31} \\ a_{12}&&a_{22}&&a_{32} \\ a_{13}&&a_{23}&&a_{33}\end{bmatrix}[/Tex] Properties of Transpose of Matrix
Learn, Transpose of Matrix Negative of Matrix
Negative of the matrix is similar to scalar multiplication of the matrix with -1. The negative of matrix is denoted by -A, where A is the original matrix. If we have the matrix [Tex]A = \begin{bmatrix} a_{11} && a_{12} && a_{13}\\ a_{21} && a_{22} && a_{23} \\ a_{31} && a_{32} && a_{33}\end{bmatrix}[/Tex], then the negative of the matrix will be, [Tex]-A = \begin{bmatrix} -a_{11} && -a_{12} && -a_{13}\\ -a_{21} && -a_{22} && -a_{23} \\ -a_{31} && -a_{32} && -a_{33}\end{bmatrix}[/Tex] Properties of Negative of Matrix
Determinant of Matrix
It is represented by det(A) or | A |, where A is the original matrix. Note: The determinant is defined only for the square matrix i.e is the matrix in which the number of rows and columns are equal. Determinant of a 2×2 MatrixIf we have a 2×2 matrix [Tex]A = \begin{bmatrix} a&b\\c&d \end{bmatrix}[/Tex] , the |A| = ac – bd Read More, Determinant of 2×2 Matrix Determinant of a 3×3 MatrixIf we have a 3×3 matrix [Tex]A = \begin{bmatrix} a&b&c\\ d&e&f\\g&h&i \end{bmatrix}[/Tex], then | A | = a(ei – fh) – b(di – fg) + c(dh – eg) Read More, Determinant of 3×3 Matrix How to Calculate Determinant?
Learn, Determinant of Matrix Symmetric Matrix
These matrices are symmetric about the main diagonal of the matrix and are defined for the square matrices only. For symmetric matrix we can say that,
Example of symmetric matrix: [Tex]A = \begin{bmatrix} x&a&b \\ a&y&c \\ b&c&z \end{bmatrix}[/Tex] Skew-Symmetric Matrix
Learn, Symmetric and Skew Symmetric Matrix Conditions for any matrix to be skew-symmetric:
For skew-symmetric matrix we can say that:
Example of skew-symmetric matrix: [Tex]A = \begin{bmatrix} 0&a&b \\ -a&0&c \\ -b&-c&0\end{bmatrix}[/Tex] Related Reads Solved Examples of Algebra of MatricesExample 1: Given a matrix A3×3 = [Tex]\begin{bmatrix} 1 && 3 && 5\\ 7 && 9 && 11 \\ 13 && 15 && 17 \end{bmatrix}[/Tex] and B3×3 = [Tex]\begin{bmatrix} 2 && 4 && 6 \\ 8 && 10 && 12 \\ 14 && 16 && 18 \end{bmatrix}[/Tex] what will be the resultant matrix when addition is performed on these two matrices ? Solution:
Example 2: Given a matrix A2×2 = [Tex]\begin{bmatrix} 1 && 3\\ 5 && 7 \end{bmatrix}[/Tex] and B2×2 = [Tex]\begin{bmatrix} 2 && 4 \\ 6 && 8 \end{bmatrix}[/Tex] what will be the resultant matrix when addition is performed on these two matrices ? Solution:
Example 3: Given k = 2 and matrix A = [Tex]\begin{bmatrix} 1 && 2 && 4 \\ 3 && 6 && 9 \end{bmatrix}[/Tex] is given below, return the resultant matrix after performing scalar multiplication with k. Solution:
Example 4: Given a matrix A2×3 = [Tex]\begin{bmatrix} 1&&2&&3 \\ 4&&5&&6 \end{bmatrix}[/Tex] and B3×2 = [Tex]\begin{bmatrix}1&&2 \\ 3&&4 \\ 5&&6 \end{bmatrix}[/Tex] what will be the resultant matrix when multiplication is performed on these two matrices ? Solution:
Example 5: Calculate the determinant of matrix [Tex]A = \begin{bmatrix} 1&2\\3&4\end{bmatrix}[/Tex]. Solution:
Algebra of Matrices – Practice QuestionsQ1: Given identity matrix I of dimension 3×3, take any arbitrary matrix A of same dimension and prove that, IA = AI = A. Q2: Given zero matrix O of dimension 2×2, take any arbitrary matrix A of same dimension prove that the O + A = A + O = A. Q3: Consider the matrix A = [Tex]\begin{bmatrix} 1 && 3\\ 5 && 7 \end{bmatrix}[/Tex] and B = [Tex]\begin{bmatrix} 2 && 4 \\ 6 && 8 \end{bmatrix}[/Tex]prove that matrix addition is commutative. Frequently Asked Question (FAQs) on Algebra of MatrixWhat is a Matrix?
What is Dimension of Matrix?
What is an Identity Matrix?
Is Matrix Multiplication Commutative?
What is the Determinant of a Matrix?
What is Transpose of a Matrix?
Can we find the Determinant on non-square or rectangular Matrix?
|
Reffered: https://www.geeksforgeeks.org
Class 12 |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 14 |