Find values of k in this linear system

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
11 replies · 2K views
Robb
Messages
225
Reaction score
8

Homework Statement


Find the values of k so that each of the following systems in unknowns x, y, and z has (i) a unique solution, (ii) no solution, (iii) an infinite number of solutions.

x + y = kz = 1
x + ky + z = 1
kx + y + z = 1

Homework Equations

The Attempt at a Solution


I really don't know where to begin with this. Is there a systematic way to solve? It seems empirical to me but that doesn't make sense either.
 
Physics news on Phys.org
Yes, I know about matrices and determinants.
z +y + kz = 1
x + ky +z = 1
kx + y + z = 1
 
A = 1 1 1 1
1 1 1 1
1 1 1 1

detA = 0
 
When k does not equal 1 the determinant is nonzero (implying a unique solution) and when k equals 1 the equations are equal so there are infinitely many solutions.
 
  • Like
Likes   Reactions: scottdave
scottdave said:
Actually, A is a square matrix (3x3) rather than the (3x4) you showed.

Right, I used the augmented matrix...sorry.
 
Hi Robb,

You have me wondering about your matrix: you should realize ##k## is an unknown coefficient and your matrix in fact looks like $$\begin{pmatrix}
1 & 1 & k \\
1 & k & 1 \\
k & 1 & 1
\end{pmatrix}$$and the equation like
$$\begin{pmatrix}
1 & 1 & k \\
1 & k & 1 \\
k & 1 & 1
\end{pmatrix} \begin{pmatrix} x\\y\\z \end{pmatrix} =\begin{pmatrix} 1\\1\\1 \end{pmatrix} $$
 
Robb said:
Right, I used the augmented matrix...sorry.

IMHO using matrices on this problem is a great waste of time; better to just do what people did a hundred years before matrices were invented. In other words, just apply Gaussian elimination: use the first equation to solve for x in terms of y and z, then substitute that expression for x into the second and third equations. That will give you two equations in y and z, and if you actually write them out in detail the solution will become---if not blindingly obvious---at least straightforward.
 
  • Like
Likes   Reactions: scottdave