edited by
1,084 views
17 votes
17 votes
Consider Three matrices $A, B$ and $C$ such that -
$$
\underbrace{\left(\begin{array}{lllll}
1 & 2 & 4 & 2 & 5 \\
& 2 & 3 & 5 & 6 \\
& & 3 & 4 & 3 \\
& & & 4 & 3 \\
& & & 5
\end{array}\right)}_A B \quad \underbrace{\left(\begin{array}{ccc}
4 & 1 & 1 \\
& 1 & 1 \\
& & 2
\end{array}\right)}_C x=b
$$
has the complete solution
$$
x=\left(\begin{array}{l}
7 \\
1 \\
2
\end{array}\right)+\alpha_1\left(\begin{array}{c}
2 \\
3 \\
-4
\end{array}\right)
$$
for any scalar $\alpha_1$, then:

The Entries which are not shown in matrices are zeros.

What is the rank of $B ?$
edited by

2 Answers

21 votes
21 votes
$ABCx = b$ has solution $x = \begin{bmatrix} 7\\1 \\2 \end{bmatrix} +\alpha \begin{bmatrix} 2\\3 \\-4 \end{bmatrix}$

So,$ ABCx^{‘} = 0 $

where $x^{‘} = \alpha \begin{bmatrix} 2\\3 \\-4 \end{bmatrix} $ are all the solutions for ABCx= 0.

$A^{-1}ABCx^{‘} = A^{-1}0$ (as A is invertible i.e $|A| \neq 0$)

$BCx^{‘} = 0$
$By = 0$

where y = Cx’ = $\begin{bmatrix} 4 &1 &1 \\ 0& 1 & 1\\ 0 & 0& 2 \end{bmatrix} * \begin{bmatrix} 2\alpha \\ 3\alpha \\ -4\alpha \end{bmatrix} = \alpha \begin{bmatrix} 7\\-1 \\ -8 \end{bmatrix}$ ,

So, B has nullity = 1 (i.e. one free column)

Also B is a 5x3 matrix (calculated from matrix multiplication rule)

We know : Rank + null space  = number of columns

Rank = 3 – 1 = 2

$Rank (B) = 2$
4 votes
4 votes

Given Matrix A is 5*5 and Matrix C is 3*3. Hence Matrix B will be 5*3.

we know,

Rank of Matrix K of order m*n = min(m,n).

so, max possible Rank of Matrix B 5*3 will be 3.

But in the question it is given x is having some free variable which is α1.

we know,

Rank =Total no. of colums – Free variable (L.I. vector).

Rank of B is 3 – 1 = 2

Ans is 2.

Answer:

Related questions

8 votes
8 votes
2 answers
2
GO Classes asked Apr 5, 2023
668 views
Let $A=\begin{pmatrix}1 & 2 & 1 & 0 & 0 \\ 1 & 2 & 2 & 2 & 3 \\ -1 & -2 & 0 & 2 & 3\end{pmatrix}$What will be the $\text{rank(A)}?$$1$$2$$3$$5$
8 votes
8 votes
1 answer
3
GO Classes asked Apr 5, 2023
553 views
You have a matrix $A$ with the factorization:$$A=\underbrace{\left(\begin{array}{ccc}1 & & \\3 & 2 & \\1 & -1 & 2\end{array}\right)}_B \quad \underbrace{\left(\begin{arra...