Solution of Important questions of NCERT Chapter 3 Matrices
Basic Concepts Based on Chapter 3 (Matrix) Class 12
Definition
:
A matrix is an ordered rectangular array of numbers or functions. The
numbers or functions are called the elements or the entries of the matrix.
A matrix
having m rows and n columns is called a matrix of order m x n
In general
a matrix of order m x n can be arranged
in a rectangular array as
\[\begin{bmatrix} a_{11} & a_{12} & a_{13} &...... & a_{1n} \\ a_{21} & a_{22} & a_{23} &...... & a_{2n} \\ a_{31} &a_{32} & a_{33} &...... & a_{3n} \\ ....& .... & ... & ...... & .... \\ ....& .... & ... & ...... & .... \\ a_{m1}&a_{m2} &a_{m3} & ...... &a_{mn} \end{bmatrix}_{m\times n}\]
a11
means an element in the first row and first column, a23 means an
element in the second row and in the third column and so on.
In short a
matrix can be written as A = [aij]m
x n , where aij represent
the elements of the matrix, m is the number of rows and n is the number of
columns.
If the
matrix has only one column then it is called column matrix.
\[\begin{bmatrix} a\\b \\c \end{bmatrix}\]
Row
Matrix : If a
matrix has only one row then it is
called a row matrix.
\[\begin{bmatrix} a & b &c \end{bmatrix}\]
Square
Matrix : A matrix in which
number of rows and columns are equal is called a square matrix. For Example:
\[\begin{bmatrix} a &b \\c &d \end{bmatrix}_{2\times 2}\; \; \; or\; \; \; \begin{bmatrix} a &b &c \\d & e &f \\ 1& 2 &3 \end{bmatrix}_{3\times 3}\]
Diagonal
Matrix : A square matrix is
said to be diagonal matrix if its all non diagonal elements are zero. For
example :
\[\begin{bmatrix} a &0 &0 \\ 0 &b &0 \\ 0 & 0 & c \end{bmatrix}\]
Scalar
Matrix : A diagonal matrix is
said to be scalar matrix if its all diagonal elements are equal. For Example :
\[\begin{bmatrix} 5 &0 &0 \\ 0 &5 &0 \\ 0 & 0 & 5 \end{bmatrix}\]
Identity
Matrix : A diagonal matrix is
said to be identity matrix if its all diagonal elements are 1. Example :
\[\begin{bmatrix} 1 &0 &0 \\ 0 &1 &0 \\ 0 & 0 & 1 \end{bmatrix}\]
Zero
Matrix :
A square matrix is said
to be zero matrix if its all elements are zero.
\[O=\begin{bmatrix} 0 &0 &0 \\ 0 &0 &0 \\ 0 & 0 & 0 \end{bmatrix}\]
Equal
Matrices : Two matrices A and B
are said to be equal if
a) Matrices A and
B are of same order
b) Corresponding
elements of matrix A and B are equal.
Addition of
two matrices :
Addition of two
matrices is possible if they are of same order
Addition
of two matrices is done by adding their corresponding elements.
Example : \[\begin{bmatrix} a &b &c \\ x& y & z\\ p & q & r \end{bmatrix}+\begin{bmatrix} 1&2 &3 \\ 4 & 5 & 6\\ 7 & 8 & 9 \end{bmatrix}=\begin{bmatrix} a+1&b+2 &c+3 \\ x+4 & y+5 & z+6\\ p+7 & q+8 & r+9 \end{bmatrix}\]
Addition of two
matrices is not possible if they are not of same order.
Multiplication
of a matrix with a scalar
Let A is a matrix and k
is a scalar, then multiplication of scalar k with matrix A is obtained by
multiplying each element of matrix A by a scalar k.\[If\;
matrix\; A=\begin{bmatrix} x &y &z \\ p & q &r \\ a&b
&c \end{bmatrix} \; and \; scalar\; k=2,\; then\] \[2A=2\begin{bmatrix} x
&y &z \\ p & q &r \\ a&b &c \end{bmatrix}=\begin{bmatrix}
2x &2y &2z \\ 2p & 2q &2r \\ 2a & 2b &2c
\end{bmatrix}\]
Properties
of matrix addition
If A and B
are two matrices then
Commutativity
Matrix
addition holds the commutative law : A +
B = B + A
Associative
law
Matrix
addition holds the associative law
: (A + B) + C = A + (B + C)
Existence
of Identity : If zero
matrix O is added to any matrix A then matrix A is remain unchanged. A + O = O + A = A ⇒ O is the identity matrix in Matrix addition.
Existence
of additive inverse: If A is a matrix
then A + (-A) = (-A) + A = O, then -A is
said to be the Additive inverse of
matrix A.
Multiplication
of matrices
Product of two matrices
A and B
is defined if number of columns of first matrix A is equal to the number of rows of matrix B
Example : If A and B are two matrices such that:
\[A=\left [ a_{ij} \right ]_{m\times n}\; \; and\; \; B=\left [ b_{ij} \right ]_{p\times q}\]Then product AB exists
if n = p and the order of the resulting
matrix AB is m x q
Note : If product AB is defined then product BA need not to be defined
Product AB and BA both
are defined if A and B both are the square matrices of same order.
Example : If A and B are two matrices such that :
\[A = \begin{bmatrix} 2 &4 &-3 \\ 1 &4 & 3 \end{bmatrix}\: \: and\: \: B=\begin{bmatrix} 2 &-3 \\ 4 &5 \\ 1 & 2 \end{bmatrix}\]
Order of
matrix A is 2 x 3, and the order of
matrix B = 3 x 2. Number of
columns of first matrix is equal to the number of rows of second matrix.
Therefore product of A and B is defined. And the order of the resulting matrix
become 2 x 2
\[AB=\begin{bmatrix} 2\times 2+4\times4+(-3)\times1 &\; \; \; \; \; 2\times-3+4\times5+(-3)\times2 \\ 1\times2+4\times4+3\times1&1\times-3+4\times5+3\times2 \end{bmatrix}\]
Comments
Post a Comment