0
$\begingroup$

$\mathbf{F}=\mathbb{C}:$ $$\left(\begin{array}{ccc|c} 1 &\lambda -2&0&0\\ \lambda +2&-5&0&0\\ 0&0&1&1 \end{array}\right)$$

For which values of $\lambda$ the system has:

  1. Unique solution
  2. No solution
  3. Infinite amount of answers

Edit: I've reached that, but don't know if it has any significance: $$\left\{ \begin{array}{l}x_1 +(\lambda -2)x_2 = 0\\ (\lambda+2)x_1-5x_2 = 0 \end{array} \right.$$ $$-(\lambda-2)(\lambda+2)-5=0$$ $$-\lambda^2+4-5=0$$ $$\lambda=\sqrt{-1}=i$$

Edit: I now know that if $\lambda=i$ there are families of answers, and unique answers if $\lambda\not=i$. Is there a way to reach this using only elementary row operations?

  • 0
    I guess the first thing one should note is that this consists of two systems, one is $x_3=1$ and the other is a 2-by-2 homogeneous system.2012-11-10
  • 1
    That matrix in the title really annoyed me. $3\times 3$ is too big for the title, and you should probably avoid it in the future ($2\times 2$ is borderline reasonable).2012-11-10
  • 0
    Thank you for the comment, asaf. I will.2012-11-10

1 Answers 1

3

Note that the system will always have at-least one solution since $(0,0,1)$ satisfies the linear system irrespective of the value of $\lambda$. Hence, the question is whether the system has a unique solution or infinite solution. Look at the determinant of the matrix $$A = \begin{pmatrix} 1 &\lambda -2&0\\ \lambda +2&-5&0\\ 0&0&1 \end{pmatrix}$$

Move your mouse over the gray area to get the value of the determinant.

$\det(A) = -5 - (\lambda-2)(\lambda+2) = - 5 -(\lambda^2-4) = - (1+\lambda^2)$.

If $\det(A) = 0$, then the system will have infinite solutions.

If $\det(A) \neq 0$, then the system will have a unique solutions.

  • 0
    Is there a way to get this without using determinants? We haven't learnt them yet. Should use "elementary functions" (I think that's what they are called). Like adding/subtracting/multiplying lines.2012-11-10
  • 0
    I now see how my the "i" I've reached in my edit satisfies your infinite solutions case. Question is, is there a way I can show that using only elementary row operations?2012-11-10
  • 0
    Found the way, thank you.2012-11-10