0

I have this matrix. How do i determine the value of k such that the solution is consistent and compute the solution ?

2x + ky + 2z = 0

x − y + z = 1

y − z = k

I augment the matrix to get

2+k+2=0

1-1+1=1

0+1-1=k

Should i then compute the row reduced echelon form ? Can somebody show me the steps and consequently how to arrive to a solution k that is consistent? Thank you

2 Answers2

0

Let consider the augmented matrix

$$\left[\begin{array}{ccc|c} 2& k& 2& 0\\ 1& -1& 1& 1\\ 0& 1& -1& k \end{array}\right]$$

then by the RREF obtain the condition on k for the system to be consistent, that is

$$\to \left[\begin{array}{ccc|c} 2& k& 2& 0\\ 0& -2-k& 0& 2\\ 0& 0& 2+k& k(-2-k)-2 \end{array}\right]$$

from which we can see that we need $k\neq -2$ in order to have solutions.

user
  • 154,566
  • How do i find k then ?? I am not sure how to continue from here.. Moreover, how come the user above wrote it with different solutions?? – Giulia Della Rosa Jun 11 '18 at 12:37
  • @GiuliaDellaRosa You need to solve the system as usual keeping $k$ as parameter. At the end you will find the conditions on k in order to have solutions. The user above performed the complete Gauss-Jordan RREF but the result is equivalent and the final condition we need is that $k\neq -2$. – user Jun 11 '18 at 12:39
0

Empirically:

Add the second and third equations to get $x=k+1$. Now add twice the third to the first and substitute $x$:

$$2(k+1)+ky+2y=2k$$ or

$$y=-\frac2{k+2},$$ provided $k\ne-2$.

Then $z=y-k$ and $x=\dfrac12(-ky-2z)$ are well defined.

  • How come you add the third and the second? Once i found x=k+1 , shouldn't i find something such that the number under the first 1 ( row 1) is zero? – Giulia Della Rosa Jun 11 '18 at 12:55
  • I said "Empirically". I am not using the echelon form explicitly, I am taking shortcuts. –  Jun 11 '18 at 12:59