edited by
439 views
8 8 votes

For which vector(s) $b$ below does the system $ \begin{bmatrix}
1 & 2 \\
3 & 5 \\
2 & 3
\end{bmatrix} x = b $ have a solution?

  1. $ \begin{bmatrix} 1 \\ 2 \\ 1 \end{bmatrix} $
     
  2. $ \begin{bmatrix} 2 \\ 4 \\ 3 \end{bmatrix} $
     
  3. $ \begin{bmatrix} 3 \\ 8 \\ 5 \end{bmatrix} $
     
  4. $ \begin{bmatrix} 1 \\ 3 \\ 2 \end{bmatrix} $

3 Answers

3 3 votes

Let

$A=\begin{bmatrix}
1 & 2 \\
3 & 5 \\
2 & 3
\end{bmatrix}$

and we want to know for which vectors $b$ the system $Ax=b$ is consistent.

Write the columns of $A$ as

$c_1=\begin{bmatrix}1\\3\\2\end{bmatrix}$, $\quad c_2=\begin{bmatrix}2\\5\\3\end{bmatrix}$.

Then $Ax=b$ has a solution exactly when $b$ is a linear combination of $c_1$ and $c_2$, so $b$ must lie in the column space of $A$.

A quick way is to find a relation among the three entries of any vector in the column space.

Let $y=\begin{bmatrix}a\\b\\c\end{bmatrix}$ satisfy $y^T A=0$. Then

$a+3b+2c=0$

and

$2a+5b+3c=0$.

Solving these gives $a=-b$ and $c=-b$, so one such vector is

$y=\begin{bmatrix}-1\\1\\-1\end{bmatrix}$.

Therefore every vector $b$ in the column space must satisfy

$y^T b=0$,

that is,

$-b_1+b_2-b_3=0$,

or equivalently,

$b_2=b_1+b_3$.

Now check each option:

  1. $\begin{bmatrix}1\\2\\1\end{bmatrix}$: here $2=1+1$, so it works.
     
  2. $\begin{bmatrix}2\\4\\3\end{bmatrix}$: here $4\ne 2+3$, so it does not work.
     
  3. $\begin{bmatrix}3\\8\\5\end{bmatrix}$: here $8=3+5$, so it works.
     
  4. $\begin{bmatrix}1\\3\\2\end{bmatrix}$: here $3=1+2$, so it works.


So the system has a solution for A, C, and D.

1 1 vote

For (Ax = b), a solution exists only when (b) is a linear combination of the columns of (A).
Vectors A, C, and D are linear combinations of the columns of the given matrix, so the answer is A, C, and D.

Answer:
Position:
Show:

Related questions

5 5 votes
1 1 answer
326
326 views
GO Classes asked Apr 10
326 views
Let $Ax = b$ be a system of linear equations where $A$ is an $m \times n$ matrix and $b$ is a $m \times 1$ column vector and $X$ is an $n \times1$ column vector of unknow...
4 4 votes
3 3 answers
448
448 views
GO Classes asked Mar 14
448 views
Consider a non-homogeneous system of linear equations representing mathematically an over determined system. Such a system will beconsistent having a unique solution cons...
14 14 votes
3 3 answers
712
712 views
GO Classes asked Mar 7
712 views
Consider the following system of linear equations:$x_1+2x_2-3x_3+4x_4=b_1,$$2x_1+5x_2-2x_3+x_4=b_2,$$5x_1+12x_2-7x_3+6x_4=b_3,$where \(b=\begin{bmatrix}b_1 & b_2 & b_3\en...
29 29 votes
6 6 answers
1.0k
1.0k views
GO Classes asked Apr 17
1,037 views
Which of the following represents the complete solution set of the given system?$$\begin{bmatrix}1 & 0 & 0 & 2 \\0 & 1 & 0 & 0 \\0 & 0 & 1 & -1\end{bmatrix}\begin{bmatrix...