Matrices

Chapter 3

Matrices

3.1 Overview

3.1.1 A matrix is an ordered rectangular array of numbers (or functions). For example,

$ A=\begin{bmatrix} x & 4 & 3 \\ 4 & 3 & x \\ 3 & x & 4 \end{bmatrix} $

The numbers (or functions) are called the elements or the entries of the matrix.

The horizontal lines of elements are said to constitute rows of the matrix and the vertical lines of elements are said to constitute columns of the matrix.

3.1.2 Order of a Matrix

A matrix having $m$ rows and $n$ columns is called a matrix of order $m \times n$ or simply $m \times n$ matrix (read as an $m$ by $n$ matrix).

In the above example, we have $A$ as a matrix of order $3 \times 3$ i.e., $3 \times 3$ matrix.

In general, an $m \times n$ matrix has the following rectangular array :

$ A=[a _{i j}] _{m \times n}=\begin{bmatrix} a _{11} & a _{12} & a _{13} \ldots & a _{1 n} \\ a _{21} & a _{22} & a _{23} \ldots & a _{2 n} \\ \vdots & & & & \\ a _{m 1} & a _{m 2} & a _{m 3} \ldots & a _{m n} & \\ m \times n \end{bmatrix} $ $ 1 \leq i \leq m, 1 \leq j \leq n \quad i, j \in \mathbf{N} .$

The element, $a _{i j}$ is an element lying in the $i^{\text{th }}$ row and $j^{\text{th }}$ column and is known as the $(i, j)^{\text{th }}$ element of A. The number of elements in an $m \times n$ matrix will be equal to $m n$.

3.1.3 Types of Matrices

(i) A matrix is said to be a row matrix if it has only one row.

(ii) A matrix is said to be a column matrix if it has only one column.

(iii) A matrix in which the number of rows are equal to the number of columns, is said to be a square matrix. Thus, an $m \times n$ matrix is said to be a square matrix if $m=n$ and is known as a square matrix of order ’ $n$ ‘.

(iv) A square matrix $B=[b _{i j}] _{n \times n}$ is said to be a diagonal matrix if its all non diagonal elements are zero, that is a matrix $B=[b _{i j}] _{n \times n}$ is said to be a diagonal matrix if $b _{i j}=0$, when $i \neq j$.

(v) A diagonal matrix is said to be a scalar matrix if its diagonal elements are equal, that is, a square matrix $B=[b _{i j}] _{n \times n}$ is said to be a scalar matrix if $b _{i j}=0$, when $i \neq j$

$b _{i j}=k$, when $i=j$, for some constant $k$.

(vi) A square matrix in which elements in the diagonal are all 1 and rest are all zeroes is called an identity matrix.

In other words, the square matrix $A=[a _{i j}] _{n \times n}$ is an identity matrix, if $a _{i j}=1$, when $i=j$ and $a _{i j}=0$, when $i \neq j$.

(vii) A matrix is said to be zero matrix or null matrix if all its elements are zeroes. We denote zero matrix by $O$.

(ix) Two matrices $A=[a _{i j}]$ and $B=[b _{i j}]$ are said to be equal if

(a) they are of the same order, and

(b) each element of $A$ is equal to the corresponding element of $B$, that is, $a _{i j}=b _{i j}$ for all $i$ and $j$.

3.1.4 Additon of Matrices

Two matrices can be added if they are of the same order.

3.1.5 Multiplication of Matrix by a Scalar

If $A=[a _{i j}] _{m \times n}$ is a matrix and $k$ is a scalar, then $k A$ is another matrix which is obtained by multiplying each element of A by a scalar $k$, i.e. $k A=[k a _{i j}] _{m \times n}$

3.1.6 Negative of a Matrix

The negative of a matrix A is denoted by $-A$. We define $-A=(-1) A$.

3.1.7 Multiplication of Matrices

The multiplication 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=[a _{i j}]$ be an $m \times n$ matrix and $B=[b _{j k}]$ be an $n \times p$ matrix. Then the product of the matrices $A$ and $B$ is the matrix $C$ of order $m \times p$. To get the $(i, k)^{\text{th }}$ element $c _{i k}$ of the matrix C, we take the $i^{\text{th }}$ row of A and $k^{\text{th }}$ column of $B$, multiply them elementwise and take the sum of all these products i.e.,

$ c _{i k}=a _{i 1} b _{1 k}+a _{i 2} b _{2 k}+a _{i 3} b _{3 k}+\ldots+a _{i n} b _{n k} $

The matrix $C=[c _{i k}] _{m \times p}$ is the product of $A$ and $B$.

Notes:

1. If $A B$ is defined, then $B A$ need not be defined.

2. If $A, B$ are, respectively $m \times n, k \times l$ matrices, then both $AB$ and $BA$ are defined if and only if $n=k$ and $l=m$.

3. If $AB$ and $BA$ are both defined, it is not necessary that $AB=BA$.

4. If the product of two matrices is a zero matrix, it is not necessary that one of the matrices is a zero matrix.

5. For three matrices $A, B$ and $C$ of the same order, if $A=B$, then $AC=BC$, but converse is not true.

6. A. $A=A^{2}$, A. $A \cdot A=A^{3}$, so on

3.1.8 Transpose of a Matrix

1. If $A=[a _{i j}]$ be an $m \times n$ matrix, then the matrix obtained by interchanging the rows and columns of $A$ is called the transpose of $A$.

Transpose of the matrix $A$ is denoted by $A^{\prime}$ or $(A^{T})$. In other words, if $A=[a _{i j}] _{m \times n}$, then $A^{T}=[a _{j i}] _{n \times m}$.

2. Properties of transpose of the matrices

For any matrices $A$ and $B$ of suitable orders, we have

(i) $(A^{T})^{T}=A$,

(ii) $(k A)^{T}=k A^{T}$ (where $k$ is any constant)

(iii) $(A+B)^{T}=A^{T}+B^{T}$

(iv) $(A B)^{T}=B^{T} A^{T}$

3.1.9 Symmetric Matrix and Skew Symmetric Matrix

(i) A square matrix $A=[a _{i j}]$ is said to be symmetric if $A^{T}=A$, that is, $a _{i j}=a _{j i}$ for all possible values of $i$ and $j$.

(ii) A square matrix $A=[a _{i j}]$ is said to be skew symmetric matrix if $A^{T}=-A$, that is $a _{j i}=-a _{i j}$ for all possible values of $i$ and $j$.

Note: Diagonal elements of a skew symmetric matrix are zero.

(iii) Theorem 1: For any square matrix $A$ with real number entries, $A+A^{T}$ is a symmetric matrix and $A-A^{T}$ is a skew symmetric matrix.

(iv) Theorem 2: Any square matrix A can be expressed as the sum of a symmetric matrix and a skew symmetric matrix, that is

$ A=\frac{(A+A^{T})}{2}+\frac{(A-A^{T})}{2} $

3.1.10 Invertible Matrices

(i) If $A$ is a square matrix of order $m \times m$, and if there exists another square matrix $B$ of the same order $m \times m$, such that $AB=BA=I_m$, then, $A$ is said to be invertible matrix and $B$ is called the inverse matrix of $A$ and it is denoted by $A^{-1}$.

Note:

1. A rectangular matrix does not possess its inverse, since for the products $BA$ and $AB$ to be defined and to be equal, it is necessary that matrices $A$ and $B$ should be square matrices of the same order.

2. If $B$ is the inverse of $A$, then $A$ is also the inverse of $B$.

(ii) Theorem 3 (Uniqueness of inverse) Inverse of a square matrix, if it exists, is unique.

(iii) Theorem 4 : If $A$ and $B$ are invertible matrices of same order, then $(A B)^{-1}=B^{-1} A^{-1}$.

3.1.11 Inverse of a Matrix using Elementary Row or Column Operations

To find $A^{-1}$ using elementary row operations, write $A=IA$ and apply a sequence of row operations on $(A=I A)$ till we get, $I=B A$. The matrix $B$ will be the inverse of $A$. Similarly, if we wish to find $A^{-1}$ using column operations, then, write $A=AI$ and apply a sequence of column operations on $A=AI$ till we get, $I=AB$.

Note: In case, after applying one or more elementary row (or column) operations on $A=IA$ (or A= AI), if we obtain all zeros in one or more rows of the matrix A on L.H.S., then $A^{-1}$ does not exist.

3.2 Solved Examples

Short Answer (S.A.)

Example 1 Construct a matrix $A=[a _{i j}] _{2 \times 2}$ whose elements $a _{i j}$ are given by $a _{i j}=e^{2 i x} \sin j x$.

Solution

$ \begin{matrix} \text{ For } & i=1, j=1, & a _{11} = & e^{2 x} \sin x \\ \text{ For } & i=1, j=2, & a _{12}= & e^{2 x} \sin 2 x \\ \text{ For } & i=2, j=1, & a _{21}= & e^{4 x} \sin x \\ \text{ For } & i=2, j=2, & a _{22}= & e^{4 x} \sin 2 x \end{matrix} $

Thus

$ A=\begin{bmatrix} e^{2 x} \sin x & e^{2 x} \sin 2 x \\ e^{4 x} \sin x & e^{4 x} \sin 2 x \end{bmatrix} $

Example 2 If $A=\begin{bmatrix} 2 & 3 \\ 1 & 2\end{bmatrix} , B=\begin{bmatrix} 1 & 3 & 2 \\ 4 & 3 & 1\end{bmatrix} , C=\begin{bmatrix} 1 \\ 2\end{bmatrix}, D=\begin{bmatrix} 4 & 6 & 8 \\ 5 & 7 & 9\end{bmatrix} $, then

which of the sums A $+B, B+C, C+D$ and $B+D$ is defined?

Solution Only B + D is defined since matrices of the same order can only be added.

Example 3 Show that a matrix which is both symmetric and skew symmetric is a zero matrix.

Solution Let $A=[a _{i j}]$ be a matrix which is both symmetric and skew symmetric.

Since $A$ is a skew symmetric matrix, so $A^{\prime}=-A$.

Thus for all $i$ and $j$, we have $a _{i j}=-a _{j i}$

Again, since $A$ is a symmetric matrix, so $A^{\prime}=A$.

Thus, for all $i$ and $j$, we have

$ a _{j i}=a _{i j} $

Therefore, from (1) and (2), we get

$ a _{i j}=-a _{i j} \text{ for all } i \text{ and } j $

or $2 a _{i j}=0$,

i.e., $\quad a _{i j}=0$ for all $i$ and $j$. Hence A is a zero matrix.

Example 4 If $ \begin{bmatrix} 2 x & 3\end{bmatrix} \begin{bmatrix} 1 & 2 \\ -3 & 0 \end{bmatrix} $ $ \begin{bmatrix} x \\ 8 \end{bmatrix}$ =O, find the value of $x$.

Solution We have

or

$\begin{bmatrix} 2 x & 3\end{bmatrix} \begin{bmatrix} 1 & 2 \\ -3 & 0 \end{bmatrix} $ $ \begin{bmatrix} x \\ 8 \end{bmatrix}$ =[O]

$[ 2 x^{2}-9 x+32 x] =[0] \Rightarrow 2 x^{2}+23 x=0$

or $ x(2 x+23)=0 \quad \Rightarrow \quad x=0, x=\frac{-23}{2} $

Example 5 If A is $3 \times 3$ invertible matrix, then show that for any scalar $k$ (non-zero),

$k A$ is invertible and $(k A)^{-1}=\frac{1}{k} A^{-1}$

Solution We have

$ (k A) (\frac{1}{k} A^{-1}) = (k \cdot \frac{1}{k}) (A \cdot A^{-1})=1(I)=I $

Hence $(k A)$ is inverse of $ (\frac{1}{k} A^{-1}) \quad$ or $\quad(k A)^{-1}=\frac{1}{k} A^{-1}$

Long Answer (L.A.)

Example 6 Express the matrix A as the sum of a symmetric and a skew symmetric matrix, where

$ A=\begin{bmatrix} 2 & 4 & -6 \\ 7 & 3 & 5 \\ 1 & -2 & 4 \end{bmatrix} . $

Solution We have

$ A=\begin{bmatrix} 2 & 4 & -6 \\ 7 & 3 & 5 \\ 1 & -2 & 4 \end{bmatrix} \text{, then } A^{\prime}=\begin{bmatrix} 2 & 7 & 1 \\ 4 & 3 & -2 \\ -6 & 5 & 4 \end{bmatrix} $

Hence $\quad \frac{A+A^{\prime}}{2}=\frac{1}{2}\left[\begin{array}{ccc}4 & 11 & -5 \\ 11 & 6 & 3 \\ -5 & 3 & 8\end{array}\right]=\left[\begin{array}{ccc}2 & \frac{11}{2} & \frac{-5}{2} \\ \frac{11}{2} & 3 & \frac{3}{2} \\ \frac{-5}{2} & \frac{3}{2} & 4\end{array}\right]$

and $ \frac{\mathrm{A}-\mathrm{A}^{\prime}}{2}=\frac{1}{2}\left[\begin{array}{ccc} 0 & -3 & -7 \\ 3 & 0 & 7 \\ 7 & -7 & 0 \end{array}\right]=\left[\begin{array}{ccc} 0 & \frac{-3}{2} & \frac{-7}{2} \\ \frac{3}{2} & 0 & \frac{7}{2} \\ \frac{7}{2} & \frac{-7}{2} & 0 \end{array}\right] $

Therefore, $ \frac{\mathrm{A}+\mathrm{A}^{\prime}}{2}+\frac{\mathrm{A}-\mathrm{A}^{\prime}}{2}=\left[\begin{array}{ccc} 2 & \frac{11}{2} & \frac{-5}{2} \\ \frac{11}{2} & 3 & \frac{3}{2} \\ \frac{-5}{2} & \frac{3}{2} & 4 \end{array}\right]+\left[\begin{array}{ccc} 0 & \frac{-3}{2} & \frac{-7}{2} \\ \frac{3}{2} & 0 & \frac{7}{2} \\ \frac{7}{2} & \frac{-7}{2} & 0 \end{array}\right]=\left[\begin{array}{ccc} 2 & 4 & -6 \\ 7 & 3 & 5 \\ 1 & -2 & 4 \end{array}\right]=\mathrm{A} $

Example 7 If $A=\begin{bmatrix} 2 & 0 & -1 \\ 1 & 2 & 3\end{bmatrix} $, then show that $A$ satisfies the equation

$ A^{3}-4 A^{2}-3 A+11 I=0 . $

Solution $\quad A^{2}=A \times A=\begin{bmatrix} 1 & 3 & 2 \\ 2 & 0 & -1 \\ 1 & 2 & 3 \end{bmatrix} $ x $ \begin{bmatrix} 1 & 3 & 2 \\ 2 & 0 & -1 \\ 1 & 2 & 3 \end{bmatrix} $

$=\left[\begin{array}{lll}1+6+2 & 3+0+4 & 2-3+6 \\ 2+0-1 & 6+0-2 & 4+0-3 \\ 1+4+3 & 3+0+6 & 2-2+9\end{array}\right]$

$=\left[\begin{array}{lll}9 & 7 & 5 \\ 1 & 4 & 1 \\ 8 & 9 & 9\end{array}\right]$

and $$ \begin{aligned} \mathrm{A}^3=\mathrm{A}^2 \times \mathrm{A} & =\left[\begin{array}{lll} 9 & 7 & 5 \\ 1 & 4 & 1 \\ 8 & 9 & 9 \end{array}\right] \times\left[\begin{array}{ccc} 1 & 3 & 2 \\ 2 & 0 & -1 \\ 1 & 2 & 3 \end{array}\right] \\ & =\left[\begin{array}{ccc} 9+14+5 & 27+0+10 & 18-7+15 \\ 1+8+1 & 3+0+2 & 2-4+3 \\ 8+18+9 & 24+0+18 & 16-9+27 \end{array}\right] \\ & =\left[\begin{array}{ccc} 28 & 37 & 26 \\ 10 & 5 & 1 \\ 35 & 42 & 34 \end{array}\right] \end{aligned} $$

Now $ \begin{aligned} & \mathrm{A}^3-4 \mathrm{~A}^2-3 \mathrm{~A}+11(\mathrm{I}) \\ = & {\left[\begin{array}{ccc} 28 & 37 & 26 \\ 10 & 5 & 1 \\ 35 & 42 & 34 \end{array}\right]-4\left[\begin{array}{ccc} 9 & 7 & 5 \\ 1 & 4 & 1 \\ 8 & 9 & 9 \end{array}\right]-3\left[\begin{array}{ccc} 1 & 3 & 2 \\ 2 & 0 & -1 \\ 1 & 2 & 3 \end{array}\right]+11\left[\begin{array}{lll} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{array}\right] } \\ = & {\left[\begin{array}{ccc} 28-36-3+11 & 37-28-9+0 & 26-20-6+0 \\ 10-4-6+0 & 5-16+0+11 & 1-4+3+0 \\ 35-32-3+0 & 42-36-6+0 & 34-36-9+11 \end{array}\right] } \end{aligned} $

$ =\begin{bmatrix} 0 & 0 & 0 \\ 0 & 0 & 0 \\ 0 & 0 & 0 \end{bmatrix} =O $

Example 8 Let $A=\begin{bmatrix} 2 & 3 \\ -1 & 2\end{bmatrix} $. Then show that $A^{2}-4 A+7 I=O$.

Using this result calculate $A^{5}$ also.

Solution We have $A^{2}=\begin{bmatrix} 2 & 3 \\ -1 & 2 \end{bmatrix}$ $\begin{bmatrix} 2 & 3 \\ -1 & 2 \end{bmatrix}$ = $\begin{bmatrix} 1 & 12 \\ -4 & 1\end{bmatrix} $,

$ -4 A=\begin{bmatrix} -8 & -12 \\ 4 & -8 \end{bmatrix} \text{ and } 7 I=\begin{bmatrix} 7 & 0 \\ 0 & 7 \end{bmatrix} \text{. } $

Therefore, $\quad A^{2}-4 A+7 I=\begin{bmatrix} 1-8+7 & 12-12+0 \\ -4+4+0 & 1-8+7\end{bmatrix} =\begin{bmatrix} 0 & 0 \\ 0 & 0\end{bmatrix} =O$

$ \Rightarrow \quad A^{2}=4 A-7 I $

Thus $\quad A^{3}=A \cdot A^{2}=A(4 A-7 I)=4(4 A-7 I)-7 A$

$ =16 A-28 I-7 A=9 A-28 I $

and so

$\begin{aligned} \mathrm{A}^5 & =\mathrm{A}^3 \mathrm{~A}^2 \\ & =(9 \mathrm{~A}-28 \mathrm{I})(4 \mathrm{~A}-7 \mathrm{I}) \\ & =36 \mathrm{~A}^2-63 \mathrm{~A}-112 \mathrm{~A}+196 \mathrm{I} \\ & =36(4 \mathrm{~A}-7 \mathrm{I})-175 \mathrm{~A}+196 \mathrm{I} \\ & =-31 \mathrm{~A}-56 \mathrm{I} \\ & =-31\left[\begin{array}{cc}2 & 3 \\ -1 & 2\end{array}\right]-56\left[\begin{array}{ll}1 & 0 \\ 0 & 1\end{array}\right] \\ & =\left[\begin{array}{cc}-118 & -93 \\ 31 & -118\end{array}\right]\end{aligned}$

Objective Type Questions

Choose the correct answer from the given four options in Examples 9 to 12.

Example 9 If $A$ and $B$ are square matrices of the same order, then $(A+B)(A-B)$ is equal to

(A) $A^{2}-B^{2}$

(B) $ A^{2}-BA-AB-B^{2}$

(C) $A^{2}-B^{2}+BA-AB$

(D) $ A^{2}-BA+B^{2}+AB$

Solution (C) is correct answer. $(A+B)(A-B)=A(A-B)+B(A-B)$ $=A^{2}-AB+BA-B^{2}$

Example 10 If $A=\begin{bmatrix} 2 & -1 & 3 \\ -4 & 5 & 1\end{bmatrix} $ and $B=\begin{bmatrix} 2 & 3 \\ 4 & -2 \\ 1 & 5\end{bmatrix} $, then

(A) only $A B$ is defined

(B) only BA is defined

(C) $AB$ and $BA$ both are defined

(D) $AB$ and $BA$ both are not defined.

Solution (C) is correct answer. Let $A=[a _{i j}] _{2 \times 3} B=[b _{i j}] _{3 \times 2}$. Both $AB$ and $BA$ are defined.

Example 11 The matrix $A=\begin{bmatrix} 0 & 0 & 5 \\ 0 & 5 & 0 \\ 5 & 0 & 0\end{bmatrix} $ is a

(A) scalar matrix

(B) diagonal matrix

(C) unit matrix

(D) square matrix

Solution (D) is correct answer.

Example 12 If $A$ and $B$ are symmetric matrices of the same order, then $(AB^{\prime}-BA^{\prime})$ is a

(A) Skew symmetric matrix

(B) Null matrix

(C) Symmetric matrix

(D) None of these

Solution (A) is correct answer since

$ (AB^{\prime}-BA^{\prime})^{\prime}=(AB^{\prime})^{\prime}-(BA^{\prime})^{\prime} $

$ \begin{aligned} & =(B A^{\prime}-A B^{\prime}) \\ & =-(A B^{\prime}-B A^{\prime}) \end{aligned} $

Fill in the blanks in each of the Examples 13 to 15:

Example 13 If $A$ and $B$ are two skew symmetric matrices of same order, then $A B$ is symmetric matrix if___________

Solution $AB=BA$.

Example 14 If $A$ and $B$ are matrices of same order, then $(3 A-2 B)^{\prime}$ is equal to__________

Solution $3 A^{\prime}-2 B^{\prime}$

Example 15 Addition of matrices is defined if order of the matrices is_____________

Solution Same.

State whether the statements in each of the Examples 16 to 19 is true or false:

Example 16 If two matrices $A$ and $B$ are of the same order, then $2 A+B=B+2 A$.

Solution True

Example 17 Matrix subtraction is associative

Solution False

Example 18 For the non singular matrix $A,(A^{\prime})^{-1}=(A^{-1})^{\prime}$.

Solution True

Example 19 $AB=AC \Rightarrow B=C$ for any three matrices of same order.

Solution False

3.3 EXERCISE

Short Answer (S.A.)

1. If a matrix has 28 elements, what are the possible orders it can have? What if it has 13 elements?

2. In the matrix $A=\begin{bmatrix} a & 1 & x \\ 2 & \sqrt{3} & x^{2}-y \\ 0 & 5 & \frac{-2}{5}\end{bmatrix} $, write :

(i) The order of the matrix A

(ii) The number of elements

(iii) Write elements $a _{23}, a _{31}, a _{12}$

3. Construct $a _{2 \times 2}$ matrix where

(i) $\quad a _{i j}=\frac{(i-2 j)^{2}}{2}$

(ii) $a _{i j}=|-2 i+3 j|$

4. Construct a $3 \times 2$ matrix whose elements are given by $a _{i j}=e^{i x} \sin j x$

5. Find values of $a$ and $b$ if $A=B$, where

$A= \begin{bmatrix} a+4 & 3 b \\ 8 & -6\end{bmatrix} , \quad B= \begin{bmatrix} 2 a+2 & b^{2}+2 \\ 8 & b^{2}-5 b\end{bmatrix} $

6. If possible, find the sum of the matrices $A$ and $B$, where $A= \begin{bmatrix} \sqrt{3} & 1 \\ 2 & 3\end{bmatrix} $,

and $B= \begin{bmatrix} x & y & z \\ a & b & 6\end{bmatrix} $

7. If $X= \begin{bmatrix} 3 & 1 & -1 \\ 5 & -2 & -3\end{bmatrix} $ and $Y= \begin{bmatrix} 2 & 1 & -1 \\ 7 & 2 & 4\end{bmatrix} $, find

(i) $X+Y$

(ii) $2 X-3 Y$

(iii) A matrix $Z$ such that $X+Y+Z$ is a zero matrix.

8. Find non-zero values of $x$ satisfying the matrix equation:

$ x \begin{bmatrix} 2 x & 2 \\ 3 & x \end{bmatrix} +2 \begin{bmatrix} 8 & 5 x \\ 4 & 4 x \end{bmatrix} =2 \begin{bmatrix} (x^{2}+8) & 24 \\ (10) & 6 x \end{bmatrix} . $

9. If $A= \begin{bmatrix} 0 & 1 \\ 1 & 1\end{bmatrix} $ and $B= \begin{bmatrix} 0 & -1 \\ 1 & 0\end{bmatrix} $, show that $(A+B)(A-B) \neq A^{2}-B^{2}$.

10. Find the value of $x$ if

$ \begin{bmatrix} 1 & x & 1 \end{bmatrix} $ $ \begin{bmatrix} 1 & 3 & 2 \\ 2 & 5 & 1 \\ 15 & 3 & 2 \end{bmatrix} $ $ \begin{bmatrix} 1 \\ 2 \\ x \end{bmatrix} $ =O.

11. Show that $A=\left[\begin{array}{cc}5 & 3 \\ -1 & -2\end{array}\right]$ satisfies the equation $A^2-3 A-7 I=O$ and hence find $\mathrm{A}^{-1}$.

12. Find the matrix $A$ satisfying the matrix equation: $ \left[\begin{array}{ll} 2 & 1 \\ 3 & 2 \end{array}\right] \mathrm{A}\left[\begin{array}{cc} -3 & 2 \\ 5 & -3 \end{array}\right]=\left[\begin{array}{ll} 1 & 0 \\ 0 & 1 \end{array}\right] $

13. Find $A$, if $\left[\begin{array}{l}4 \\ 1 \\ 3\end{array}\right] A=\left[\begin{array}{ccc}-4 & 8 & 4 \\ -1 & 2 & 1 \\ -3 & 6 & 3\end{array}\right]$

14. If $A=\left[\begin{array}{cc}3 & -4 \\ 1 & 1 \\ 2 & 0\end{array}\right]$ and $B=\left[\begin{array}{lll}2 & 1 & 2 \\ 1 & 2 & 4\end{array}\right]$, then verify $(B A)^2 \neq B^2 A^2$

15. If possible, find $B A$ and $A B$, where $ \mathrm{A}=\left[\begin{array}{lll} 2 & 1 & 2 \\ 1 & 2 & 4 \end{array}\right], \mathrm{B}=\left[\begin{array}{ll} 4 & 1 \\ 2 & 3 \\ 1 & 2 \end{array}\right] $

16. Show by an example that for $A \neq O, B \neq O, A B=O$.

17. Given $A=\left[\begin{array}{lll}2 & 4 & 0 \\ 3 & 9 & 6\end{array}\right]$ and $B=\left[\begin{array}{ll}1 & 4 \\ 2 & 8 \\ 1 & 3\end{array}\right]$. Is $(A B)^{\prime}=B^{\prime} A^{\prime}$ ?

18. Solve for $x$ and $y$ : $ x\left[\begin{array}{l} 2 \\ 1 \end{array}\right]+y\left[\begin{array}{l} 3 \\ 5 \end{array}\right]+\left[\begin{array}{c} -8 \\ -11 \end{array}\right]=0 . $

19. If $X$ and $Y$ are $2 \times 2$ matrices, then solve the following matrix equations for $X$ and $Y$ $ 2 \mathrm{X}+3 \mathrm{Y}=\left[\begin{array}{ll} 2 & 3 \\ 4 & 0 \end{array}\right], 3 \mathrm{X}+2 \mathrm{Y}=\left[\begin{array}{cc} -2 & 2 \\ 1 & -5 \end{array}\right] . $

20. If $A=\left[\begin{array}{ll}3 & 5\end{array}\right], B=\left[\begin{array}{ll}7 & 3\end{array}\right]$, then find a non-zero matrix $C$ such that $A C=B C$.

21. Give an example of matrices $A, B$ and $C$ such that $A B=A C$, where $A$ is nonzero matrix, but $\mathrm{B} \neq \mathrm{C}$.

22. If $\mathrm{A}=\left[\begin{array}{cc}1 & 2 \\ -2 & 1\end{array}\right], \mathrm{B}=\left[\begin{array}{cc}2 & 3 \\ 3 & -4\end{array}\right]$ and $\mathrm{C}=\left[\begin{array}{cc}1 & 0 \\ -1 & 0\end{array}\right]$, verify :

(i) (AB) $\mathrm{C}=\mathrm{A}(\mathrm{BC})$

(ii) $\mathrm{A}(\mathrm{B}+\mathrm{C})=\mathrm{AB}+\mathrm{AC}$.

23. If $\mathrm{P}=\left[\begin{array}{ccc}x & 0 & 0 \\ 0 & y & 0 \\ 0 & 0 & z\end{array}\right]$ and $\mathrm{Q}=\left[\begin{array}{lll}a & 0 & 0 \\ 0 & b & 0 \\ 0 & 0 & c\end{array}\right]$, prove that $ \mathrm{PQ}=\left[\begin{array}{ccc} x a & 0 & 0 \\ 0 & y b & 0 \\ 0 & 0 & z c \end{array}\right]=\mathrm{QP} . $

24. If : $\left[\begin{array}{lll}2 & 1 & 3\end{array}\right]\left[\begin{array}{ccc}-1 & 0 & -1 \\ -1 & 1 & 0 \\ 0 & 1 & 1\end{array}\right]\left[\begin{array}{c}1 \\ 0 \\ -1\end{array}\right]=\mathrm{A}$, find $\mathbf{A}$.

25. If $A=\left[\begin{array}{ll}2 & 1\end{array}\right], \quad B=\left[\begin{array}{lll}5 & 3 & 4 \\ 8 & 7 & 6\end{array}\right]$ and $C=\left[\begin{array}{ccc}-1 & 2 & 1 \\ 1 & 0 & 2\end{array}\right]$, verify that $A(B+C)=(A B+A C)$.

26. If $A=\begin{bmatrix} 1 & 0 & -1 \\ 2 & 1 & 3 \\ 0 & 1 & 1\end{bmatrix} $, then verify that $A^{2}+A=A(A+I)$, where $I$ is $3 \times 3$ unit bmatrix.

27. If $A=\begin{bmatrix} 0 & -1 & 2 \\ 4 & 3 & -4\end{bmatrix} $ and $B=\begin{bmatrix} 4 & 0 \\ 1 & 3 \\ 2 & 6\end{bmatrix} $, then verify that :

(i) $\quad(A^{\prime})^{\prime}=A$

(ii) $\quad(AB)^{\prime}=B^{\prime} A^{\prime}$

(iii) $\quad(k A)^{\prime}=(k A^{\prime})$.

28. If $A=\begin{bmatrix} 1 & 2 \\ 4 & 1 \\ 5 & 6\end{bmatrix} , \quad B=\begin{bmatrix} 1 & 2 \\ 6 & 4 \\ 7 & 3\end{bmatrix} $, then verify that :

(i) $\quad(2 A+B)^{\prime}=2 A^{\prime}+B^{\prime}$

(ii) $\quad(A-B)^{\prime}=A^{\prime}-B^{\prime}$.

29. Show that $A^{\prime} A$ and $A A^{\prime}$ are both symmetric matrices for any matrix $A$.

30. Let $A$ and $B$ be square matrices of the order $3 \times 3$. Is $(A B)^{2}=A^{2} B^{2}$ ? Give reasons.

31. Show that if $A$ and $B$ are square matrices such that $A B=B A$, then

$ (A+B)^{2}=A^{2}+2 A B+B^{2} $

32. Let $A=\begin{bmatrix} 1 & 2 \\ -1 & 3\end{bmatrix} , B=\begin{bmatrix} 4 & 0 \\ 1 & 5\end{bmatrix} , \quad C=\begin{bmatrix} 2 & 0 \\ 1 & -2\end{bmatrix} $ and $a=4, b=-2$.

Show that:

(a) $A+(B+C)=(A+B)+C$

(b) $A(BC)=(AB) C$

(c) $(a+b) B=a B+b B$

(d) $a(C-A)=a C-a A$

(e) $(A^{T})^{T}=A$

(f) $(b A)^{T}=b A^{T}$

(g) $(AB)^{T}=B^{T} A^{T}$

(h) $(A-B) C=AC-BC$

(i) $(A-B)^{T}=A^{T}-B^{T}$

33. If $A=\begin{bmatrix} \cos \theta & \sin \theta \\ -\sin \theta & \cos \theta\end{bmatrix} $, then show that $A^{2}=\begin{bmatrix} \cos 2 \theta & \sin 2 \theta \\ -\sin 2 \theta & \cos 2 \theta\end{bmatrix} $.

34. If $A=\begin{bmatrix} 0 & -x \\ x & 0\end{bmatrix} $, $B=\begin{bmatrix} 0 & 1 \\ 1 & 0\end{bmatrix} $ and $x^{2}=-1$, then show that $(A+B)^{2}=A^{2}+B^{2}$.

35. Verify that $A^{2}=I$ when $A=\begin{bmatrix} 0 & 1 & -1 \\ 4 & -3 & 4 \\ 3 & -3 & 4\end{bmatrix} $.

36. Prove by Mathematical Induction that $(A^{\prime})^{n}=(A^{n})^{\prime}$, where $n \in \mathbf{N}$ for any square bmatrix A.

37. Find inverse, by elementary row operations (if possible), of the following matrices

(i) $\begin{bmatrix} 1 & 3 \\ -5 & 7\end{bmatrix} $.

(ii) $\begin{bmatrix} 1 & -3 \\ -2 & 6\end{bmatrix} $.

38. If $\begin{bmatrix} x y & 4 \\ z+6 & x+y\end{bmatrix} =\begin{bmatrix} 8 & w \\ 0 & 6\end{bmatrix} $, then find values of $x, y, z$ and $w$.

39. If $A=\begin{bmatrix} 1 & 5 \\ 7 & 12\end{bmatrix} $ and $B=\begin{bmatrix} 9 & 1 \\ 7 & 8\end{bmatrix} $, find a bmatrix $C$ such that $3 A+5 B+2 C$ is a null bmatrix.

40. If $A=\begin{bmatrix} 3 & -5 \\ -4 & 2\end{bmatrix} $, then find $A^{2}-5 A-14$. Hence, obtain $A^{3}$.

41. Find the values of $a, b, c$ and $d$, if

$3 \begin{bmatrix} a & b \\ c & d\end{bmatrix} =\begin{bmatrix} a & 6 \\ -1 & 2 d\end{bmatrix} +\begin{bmatrix} 4 & a+b \\ c+d & 3\end{bmatrix} $.

42. Find the bmatrix A such that

$ \begin{bmatrix} 2 & -1 \\ 1 & 0 \\ -3 & 4 \end{bmatrix} \quad A=\begin{bmatrix} -1 & -8 & -10 \\ 1 & -2 & -5 \\ 9 & 22 & 15 \end{bmatrix} $

43. If $A=\begin{bmatrix} 1 & 2 \\ 4 & 1\end{bmatrix} $, find $A^{2}+2 A+7 I$

44. If $A=\begin{bmatrix} \cos \alpha & \sin \alpha \\ -\sin \alpha & \cos \alpha\end{bmatrix} $, and $A^{-1}=A^{\prime}$, find value of $\alpha$.

45. If the matrix $\begin{bmatrix} 0 & a & 3 \\ 2 & b & -1 \\ c & 1 & 0\end{bmatrix} $ is a skew symmetric matrix, find the values of

46. If $P(x)=\begin{bmatrix} \cos x & \sin x \\ -\sin x & \cos x\end{bmatrix} $, then show that

$P(x) . P(y)=P(x+y)=P(y) . P(x)$.

47. If $A$ is square matrix such that $A^{2}=A$, show that $(I+A)^{3}=7 A+I$.

48. If $A, B$ are square matrices of same order and $B$ is a skew-symmetric matrix, show that $A^{\prime} B A$ is skew symmetric.

Long Answer (L.A.)

49. If $AB=BA$ for any two sqaure matrices, prove by mathematical induction that $(A B)^{n}=A^{n} B^{n}$.

50. Find $x, y, z$ if $\mathrm{A}=\left[\begin{array}{ccc}0 & 2 y & z \\ x & y & -z \\ x & -y & z\end{array}\right]$ satisfies $\boldsymbol{A}^{\prime}-\mathrm{A}^{-1}$.

51. If possible, using elementary row transformations, find the inverse of the following matrices

(i) $\left[\begin{array}{ccc}2 & -1 & 3 \\ -5 & 3 & 1 \\ -3 & 2 & 3\end{array}\right]$

(ii) $\left[\begin{array}{ccc}2 & 3 & -3 \\ -1 & -2 & 2 \\ 1 & 1 & -1\end{array}\right]$

(iii) $\left[\begin{array}{ccc}2 & 0 & -1 \\ 5 & 1 & 0 \\ 0 & 1 & 3\end{array}\right]$

52. Express the matrix $\left[\begin{array}{ccc}2 & 3 & 1 \\ 1 & -1 & 2 \\ 4 & 1 & 2\end{array}\right]$ as the sum of a symmetric and a skew symmetric matrix.

Objective Type Questions

Choose the correct answer from the given four options in each of the Exercises 53 to 67 .

53. The matrix $P=\left[\begin{array}{lll}0 & 0 & 4 \\ 0 & 4 & 0 \\ 4 & 0 & 0\end{array}\right]$ is a

(A) square matrix

(B) diagonal matrix

(C) unit matrix

(D) none

54. Total number of possible matrices of order $3 \times 3$ with each entry 2 or 0 is

(A) 9

(B) 27

(C) 81

(D) 512

55. If $\left[\begin{array}{cc}2 x+y & 4 x \\ 5 x-7 & 4 x\end{array}\right]=\left[\begin{array}{cc}7 & 7 y-13 \\ y & x+6\end{array}\right]$, then the value of $x+y$ is

(A) $x=3, y=1$

(B) $x=2, y=3$

(C) $x=2, y=4$

(D) $x=3, y=3$

56. If $\mathrm{A}=\frac{1}{\pi}\left[\begin{array}{cc}\sin ^{-1}(x \pi) & \tan ^{-1}\left(\frac{x}{\pi}\right) \\ \sin ^{-1}\left(\frac{x}{\pi}\right) & \cot ^{-1}(\pi x)\end{array}\right], \mathrm{B}=\frac{1}{\pi}\left[\begin{array}{cc}-\cos ^{-1}(x \pi) & \tan ^{-1}\left(\frac{x}{\pi}\right) \\ \sin ^{-1}\left(\frac{x}{\pi}\right) & -\tan ^{-1}(\pi x)\end{array}\right]$, then $A-B$ is equal to

(A) I

(B) $\mathrm{O}$

(C) 21

(D) $\frac{1}{2} \mathrm{I}$

57. If $A$ and $B$ are two matrices of the order $3 \times m$ and $3 \times n$, respectively, and $m=n$, then the order of matrix $(5 \mathrm{~A}-2 \mathrm{~B})$ is

(A) $m \times 3$

(B) $3 \times 3$

(C) $m \times n$

(D) $3 \times n$

58. If $A=\left[\begin{array}{ll}0 & 1 \\ 1 & 0\end{array}\right]$, then $\boldsymbol{A}^2$ is equal to

(A) $\left[\begin{array}{ll}0 & 1 \\ 1 & 0\end{array}\right]$

(B) $\left[\begin{array}{ll}1 & 0 \\ 1 & 0\end{array}\right]$

(C) $\left[\begin{array}{ll}0 & 1 \\ 0 & 1\end{array}\right]$

(D) $\left[\begin{array}{ll}1 & 0 \\ 0 & 1\end{array}\right]$

59. If matrix $A=\left[a_j\right]_{2 \times 2}$, where $a_v=1$ if $i \neq j$ $=0$ if $i=j$ then $A^2$ is equal to

(A) I

(B) $\mathrm{A}$

(C) 0

(D) None of these

60. The matrix $\left[\begin{array}{lll}1 & 0 & 0 \\ 0 & 2 & 0 \\ 0 & 0 & 4\end{array}\right]$ is a

(A) identity matrix

(B) symmetric matrix

(C) skew symmetric matrix

(D) none of these

61. The matrix $\begin{bmatrix} 0 & -5 & 8 \\ 5 & 0 & 12 \\ -8 & -12 & 0\end{bmatrix} $ is a

(A) diagonal matrix

(B) symmetric matrix

(C) skew symmetric matrix

(D) scalar matrix

62. If $A$ is matrix of order $m \times n$ and $B$ is a matrix such that $AB^{\prime}$ and $B^{\prime} A$ are both defined, then order of matrix $B$ is

(A) $m \times m$

(B) $n \times n$

(C) $n \times m$

(D) $m \times n$

63. If $A$ and $B$ are matrices of same order, then $(A B^{\prime}-B A^{\prime})$ is a

(A) skew symmetric matrix

(B) null matrix

(C) symmetric matrix

(D) unit matrix

64. If $A$ is a square matrix such that $A^{2}=I$, then $(A-I)^{3}+(A+I)^{3}-7 A$ is equal to

(A) $A$

(B) $\quad I-A$

(C) $\quad I+A$

(D) $\quad 3 A$

65. For any two matrices $A$ and $B$, we have

(A) $\quad AB=BA$

(B) $\quad AB \neq BA$

(C) $\quad AB=O$

(D) None of the above

66. On using elementary column operations $C_2 \to C_2-2 C_1$ in the following matrix equation

$\left[\begin{array}{cc}1 & -3 \\ 2 & 4\end{array}\right]=\left[\begin{array}{cc}1 & -1 \\ 0 & 1\end{array}\right]\left[\begin{array}{ll}3 & 1 \\ 2 & 4\end{array}\right]$, we have :

(A) $\left[\begin{array}{cc}1 & -5 \\ 0 & 4\end{array}\right]=\left[\begin{array}{cc}1 & -1 \\ -2 & 2\end{array}\right]\left[\begin{array}{cc}3 & -5 \\ 2 & 0\end{array}\right]$

(B) $\left[\begin{array}{cc}1 & -5 \\ 0 & 4\end{array}\right]=\left[\begin{array}{cc}1 & -1 \\ 0 & 1\end{array}\right]\left[\begin{array}{cc}3 & -5 \\ -0 & 2\end{array}\right]$

(C) $\left[\begin{array}{cc}1 & -5 \\ 2 & 0\end{array}\right]=\left[\begin{array}{cc}1 & -3 \\ 0 & 1\end{array}\right]\left[\begin{array}{cc}3 & 1 \\ -2 & 4\end{array}\right]$

(D) $\left[\begin{array}{cc}1 & -5 \\ 2 & 0\end{array}\right]=\left[\begin{array}{cc}1 & -1 \\ 0 & 1\end{array}\right]\left[\begin{array}{cc}3 & -5 \\ 2 & 0\end{array}\right]$

67. On using elementary row operation $R_1 \rightarrow R_1-3 R_2$ in the following matrix equation:

$\left[\begin{array}{ll}4 & 2 \\ 3 & 3\end{array}\right]=\left[\begin{array}{ll}1 & 2 \\ 0 & 3\end{array}\right]\left[\begin{array}{ll}2 & 0 \\ 1 & 1\end{array}\right]$, we have :

(A) $\left[\begin{array}{cc}-5 & -7 \\ 3 & 3\end{array}\right]=\left[\begin{array}{cc}1 & -7 \\ 0 & 3\end{array}\right]\left[\begin{array}{ll}2 & 0 \\ 1 & 1\end{array}\right]$

(B) $\left[\begin{array}{cc}-5 & -7 \\ 3 & 3\end{array}\right]=\left[\begin{array}{ll}1 & 2 \\ 0 & 3\end{array}\right]\left[\begin{array}{cc}-1 & -3 \\ 1 & 1\end{array}\right]$

(C) $\left[\begin{array}{cc}-5 & -7 \\ 3 & 3\end{array}\right]=\left[\begin{array}{cc}1 & 2 \\ 1 & -7\end{array}\right]\left[\begin{array}{ll}2 & 0 \\ 1 & 1\end{array}\right]$

(D) $\left[\begin{array}{cc}4 & 2 \\ -5 & -7\end{array}\right]=\left[\begin{array}{cc}1 & 2 \\ -3 & -3\end{array}\right]\left[\begin{array}{ll}2 & 0 \\ 1 & 1\end{array}\right]$

Fill in the blanks in each of the Exercises 68-81.

68. ___________matrix is both symmetric and skew symmetric matrix.

69. Sum of two skew symmetric matrices is always ___________ matrix.

70. The negative of a matrix is obtained by multiplying it by ___________

71. The product of any matrix by the scalar ___________ is the null matrix.

72. A matrix which is not a square matrix is called a ___________matrix.

73. Matrix multiplication ___________is over addition.

74. If $A$ is a symmetric matrix, then $A^{3}$ is a ___________matrix.

75. If $A$ is a skew symmetric matrix, then $A^{2}$ is a ___________

76. If $A$ and $B$ are square matrices of the same order, then

(i) $\quad(AB)^{\prime}=$ ___________

(ii) $\quad(k A)^{\prime}= ___________ \quad(k$ is any scalar $)$

(iii) $\quad[k(A-B)]^{\prime}=$ ___________

77. If $A$ is skew symmetric, then $k A$ is a ___________. ( $k$ is any scalar)

78. If $A$ and $B$ are symmetric matrices, then

(i) $\quad AB-BA$ is a ___________

(ii) $\quad BA-2 AB$ is a ___________

79. If $A$ is symmetric matrix, then $B^{\prime} A B$ is ___________

80. If $A$ and $B$ are symmetric matrices of same order, then $A B$ is symmetric if and only if ___________

81. In applying one or more row operations while finding $A^{-1}$ by elementary row operations, we obtain all zeros in one or more, then $A^{-1}$ ___________

State Exercises 82 to 101 which of the following statements are True or False

82. A matrix denotes a number.

83. Matrices of any order can be added.

84. Two matrices are equal if they have same number of rows and same number of columns.

85. Matrices of different order can not be subtracted.

86. Matrix addition is associative as well as commutative.

87. Matrix multiplication is commutative.

88. A square matrix where every element is unity is called an identity matrix.

89. If $A$ and $B$ are two square matrices of the same order, then $A+B=B+A$.

90. If $A$ and $B$ are two matrices of the same order, then $A-B=B-A$.

91. If matrix $AB=O$, then $A=O$ or $B=O$ or both $A$ and $B$ are null matrices.

92. Transpose of a column matrix is a column matrix.

93. If $A$ and $B$ are two square matrices of the same order, then $AB=BA$.

94. If each of the three matrices of the same order are symmetric, then their sum is a symmetric matrix.

95. If $A$ and $B$ are any two matrices of the same order, then $(A B)^{\prime}=A^{\prime} B^{\prime}$.

96. If $(A B)^{\prime}=B^{\prime} A^{\prime}$, where $A$ and $B$ are not square matrices, then number of rows in $A$ is equal to number of columns in $B$ and number of columns in $A$ is equal to number of rows in $B$.

97. If $A, B$ and $C$ are square matrices of same order, then $AB=AC$ always implies that $B=C$.

98. $AA^{\prime}$ is always a symmetric matrix for any matrix $A$.

99. If $A=\begin{bmatrix} 2 & 3 & -1 \\ 1 & 4 & 2\end{bmatrix} $ and $B=\begin{bmatrix} 2 & 3 \\ 4 & 5 \\ 2 & 1\end{bmatrix} $, then $AB$ and $BA$ are defined and equal.

100 . If $A$ is skew symmetric matrix, then $A^{2}$ is a symmetric matrix.

101 . $(A B)^{-1}=A^{-1} \cdot B^{-1}$, where $A$ and $B$ are invertible matrices satisfying commutative property with respect to multiplication.

SOLUTIONS

1. $28 \times 1,1 \times 28,4 \times 7,7 \times 4,14 \times 2,2 \times 14$. If matrix has 13 elements then its order will be either $13 \times 1$ or $1 \times 13$.

2. (i) $3 \times 3$,

(ii) 9 ,

(iii) $a _{23}=x^{2}-y, a _{31}=0, a _{12}=1$

3. (i) $\begin{bmatrix} \frac{1}{2} & \frac{9}{2} \\ 0 & 2\end{bmatrix} $ (ii) $\begin{bmatrix} 1 & 4 \\ -1 & 2\end{bmatrix} $

4.

$\begin{bmatrix} e^{x} \sin x \quad e^{x} \sin 2 x\\ e^{2 x} \sin x \quad e^{2 x} \sin 2 x\\ e^{3 x} \sin x \quad e^{3 x} \sin 2 x \end{bmatrix}$

5. $a=2, b=2$

6. Not possible

7. (i) $X+Y=\begin{bmatrix} 5 & 2 & -2 \\ 12 & 0 & 1\end{bmatrix} $

(ii) $2 X-3 Y=\begin{bmatrix} 0 & -1 & 1 \\ -11 & -10 & -18\end{bmatrix} $

(iii) $Z=\begin{bmatrix} -5 & -2 & 2 \\ -12 & 0 & -1\end{bmatrix} $

8. $x=4$

10. $-2,-14$

11. $A^{-1}=\frac{-1}{7} \quad \begin{bmatrix} -2 & -3 \\ 1 & 5\end{bmatrix} $

12. $A=\begin{bmatrix} 1 & 1 \\ 1 & 0\end{bmatrix} $

13. $A= \begin{bmatrix} -1 & 2 & 1\end{bmatrix} $

15. $AB=\begin{bmatrix} 12 & 9 \\ 12 & 15\end{bmatrix} \quad BA=\begin{bmatrix} 9 & 6 & 12 \\ 7 & 8 & 16 \\ 4 & 5 & 10\end{bmatrix} \quad$

18. $x=1, y=2$

19. $X=\begin{bmatrix} -2 & 0 \\ -1 & -3\end{bmatrix} , Y=\begin{bmatrix} 2 & 1 \\ 2 & 2\end{bmatrix} $

20. $\begin{bmatrix}k \\ 2 k \end{bmatrix}, \begin{bmatrix} k & k \\ 2 k & 2 k \end{bmatrix} $ etc.

where $k$ is a real number

24. $A=[-4]$

30. True when $A B=B A$

37. (i) $\frac{1}{22} \quad \begin{bmatrix} 7 & -3 \\ 5 & 1 \end{bmatrix} $

(ii) not possible

38. $x=2, y=4$ or $x=4, y=2, z=-6, w=4$

39. $\begin{bmatrix} -24 & -10 \\ -28 & -38\end{bmatrix} $

40. $A^3 = \begin{bmatrix} 187 & -195 \\ -156 & 148 \end{bmatrix}$

41. a = 2, b = 4 , c = 1 d = 3

42. $\begin{bmatrix} 1 & -2 & -5 \\ 3 & 4 & 0\end{bmatrix} $

43. $\quad \begin{bmatrix} 18 & 8 \\ 16 & 18\end{bmatrix} $

44. True for all real values of $\alpha$

45. a = -2, b = 0, c = -3

50. $x= \pm \frac{1}{\sqrt{2}}, y= \pm \frac{1}{\sqrt{6}}, z= \pm \frac{1}{\sqrt{3}}$

47. (i) $\begin{bmatrix} -7 & -9 & 10 \\ -12 & -15 & 17 \\ 1 & 1 & -1\end{bmatrix} $ (ii) inverse does not exist (iii) $\begin{bmatrix} 3 & -1 & 1 \\ -15 & 6 & -5 \\ 5 & -2 & 2\end{bmatrix} $

52.

$\begin{bmatrix} 2 & 2 & \frac{5}{2}\\ \\ 2 & -1 & \frac{3}{2}\\ \\ \frac{5}{2} & \frac{3}{2} & 2 \end{bmatrix} $ + $\begin{bmatrix} 0 & 1 & \frac{-3}{2}\\ \\ -1 & 0 & \frac{1}{2}\\ \\ \frac{3}{2} & \frac{-1}{2} & 0 \end{bmatrix}$

53. A

54. D

55. B

56. D

57. D

58. D

59. A

60. B

61. C

62. D

63. A

64. A

65. D

66. D

67. A

68. Null matrix

69. Skew symmetric matrix

70. -1

71. 0

72. Rectangular matrix

73. Distributive

74. Symmetrix matrix

75. Symmetrix matrix

76. (i) $B^{\prime} A^{\prime}$

(ii) $k A^{\prime}$

(iii) $k(A^{\prime} - B^{\prime})$

77. Skew Symmetric matrix

78. (i) Skew symmetric matrix

(ii) neither symmetric nor skew symmetric matrix

79. Symmetric matrix

80. $AB=BA$

81. does not exist

82. False

83. False

84. False

85. True

86. True

87. False

88. False

89. True

90. False

91. False

92. False

93. False

94. True

95. False

96. True

97. False

98. True

99. False

100 . True

101 . True



Mock Test for JEE

NCERT Chapter Video Solution

Dual Pane