System of linear equations problem

198 Views Asked by At

Consider the system of linear equations: \begin{align} \begin{cases} x+ay=1\\[2ex] bx+5y=2, \end{cases} \end{align} where $a$ and $b$ are parameters.

(a) Determine the conditions on $a$ and $b$ to get a unique solution.
(b) Determine the conditions on $a$ and $b$ to get infinitely many solutions.
(c) Determine the conditions on $a$ and $b$ such that the system has no solutions.

2

There are 2 best solutions below

4
On

Answer:

a) $$ab\not=5$$. The determinant of the matrix not equal to zero. There is a unique solution

b)$$a = \frac{5}{2}, b=2$$ The determinant is zero, but the two lines are identical, There are infinitely many solution

c) $$ab = 5 \land \lnot (a = \frac{5}{2} \land b=2)$$ The determinant is zero, but the two lines are parallel. There are no solutions

The determinant => (5-ab)

0
On

Let's write the equations as follows: $$x+ay=1\\ bx+5y=2$$ So, one has $$\begin{pmatrix}x\\ y\end{pmatrix}\begin{pmatrix}1 & a\\ b & 5\end{pmatrix}=\begin{pmatrix}1\\ 2\end{pmatrix}\\ \implies \begin{pmatrix}x\\ y\end{pmatrix}=\begin{pmatrix}1 & a\\ b & 5\end{pmatrix}^{-1}\begin{pmatrix}1\\ 2\end{pmatrix}=\dfrac{1}{5-ab}\begin{pmatrix}5 & -a\\ -b & 1\end{pmatrix}\begin{pmatrix}1\\ 2\end{pmatrix}$$ This should considerably simplify your solution. As a hint, look at the term $\dfrac{1}{5-ab}$ on the RHS.