12,024 views
33 votes
33 votes

Consider the following system of linear equations $$\left( \begin{array}{ccc} 2 & 1 & -4 \\ 4 & 3 & -12 \\ 1 & 2 & -8 \end{array} \right) \left( \begin{array}{ccc} x \\ y \\ z \end{array} \right) = \left( \begin{array}{ccc} \alpha \\ 5 \\ 7 \end{array} \right)$$ Notice that the second and the third columns of the coefficient matrix are linearly dependent. For how many values of $\alpha$, does this system of equations have infinitely many solutions?

  1. \(0\)
  2. \(1\)
  3. \(2\)
  4. \(3\)

4 Answers

Best answer
30 votes
30 votes

Since the second and third columns of the coefficient matrix are linearly deoendent, determis $0.$ So, the system of equations either has infinitely many solutions (if they are consistent) or no solution. To check for consistency, we apply reduction method on $(A\mid B)$

$R_{2}\leftarrow R_{2}-2R_{1},R_{3}\leftarrow R_{3}-0.5R_{1},R_{3}\leftarrow R_{3}-1.5R_{2}, R_1 \leftarrow R_1/2$

obtain the resultant matrix

$\large\begin{pmatrix}2&1&{-4}&\alpha\\4&3&{-12}&5\\1&2&{-8}&7\end{pmatrix}\rightarrow\begin{pmatrix}1&0.5&{-2}&0.5\alpha\\0&1&{-4}&5-2\alpha\\0&0&{-0}& -0.5+2.5\alpha\end{pmatrix}$

or infinitely many solutions, we must have $-0.5+2.5\alpha =0\; i.e., \alpha=\dfrac{1}{5}.$ So, for only $1$ value of $\alpha,$ this system has infinitely many solutions. So, option (B) is correct.

selected by
14 votes
14 votes

Given system of equations is in form AX=B.

For infinitely many solutions here, effectively we have only two variables i.e. w=(y-4z). but they should be consistent i.e. rank(A)=rank(AB)<3(no. of variables)

 Since column2 and column3 are dependent so make column3 all zero. So we got rank(A)=2

Now for the augmented matrix, AB put all zero column at last because it's of no use it will give 0 determinant value of all 3*3 submatrices.

After excluding that dependent column, we got a 3*3 matrix, solving it gives alpha= .2 this is single value.

Or see the image below

Option B ...

Note: The row rank and the column rank of a matrix A are equal. Here column rank is easy to find for A. And then for AB we must get rank 2 for having infinite solutions. 

P.S. -- Ignore that "3 equation and 2 variable" in the image.

edited by
6 votes
6 votes

For infinitely many solution we've to check this condition, rank(A) = rank(A|B) < n, where n is the unknown variable.

Now make the given matrix(augmented) into echleon form by Gauss-elimination method.

$\begin{bmatrix} 2 &1 &-4 &\alpha \\ 4 &3 &-12 &5 \\ 1 &2 &-8 &7 \end{bmatrix}$      R2 = r2 - 2r1

$\begin{bmatrix} 2 &1 &-4 &\alpha \\ 0 &1 &-4 &5-2\alpha \\ 1 &2 &-8 &7 \end{bmatrix}$        r3 = 2r3 -r1

$\begin{bmatrix} 2 &1 &-4 &\alpha \\ 0 &1 &-4 &5-2\alpha \\ 0 &3 &-12 &14 - \alpha \end{bmatrix}$     r3 = 3r2 - r3

$\begin{bmatrix} 2 &1 &-4 &\alpha \\ 0 &1 &-4 &5-2\alpha \\ 0 &0 &0 &1 - 5\alpha \end{bmatrix}$

Now to satisfy the above written condition for infinite solution 1 - 5$\alpha$ = 0 i.e  $\alpha$ = $\frac{1}{5}$

Answer:

Related questions