Concept:Unique solution requires that the system yields exactly one valid triple (x,y,z). For each integer
k=0, the quadratic in
x gives two potential roots, but a root making a denominator zero is invalid.
Explanation:1. Rewrite the equations:
2x+3y−z=6 ... (1)
ky+xz=1⇒kxy+z=x ... (2) (since
x=0)
k2y+k2z=1⇒y+z=k21 ... (3)
2. From (2),
z=x(1−ky). Substitute into (1) and (3) to eliminate
z, obtaining a quadratic in
x:
2k3x2+(2k2−6k3−k)x+(6k2−3)=0.
3. For a unique solution, exactly one of the two roots must be valid, i.e., the other root must be extraneous because it makes a denominator zero. The denominator in the expression for
y is
kx−1. So one root must satisfy
kx=1 (i.e.,
x=1/k).
4. Substitute
x=1/k into the quadratic:
2k3(k21)+(2k2−6k3−k)(k1)+(6k2−3)=2k+(2k−6k2−1)+(6k2−3)=4k−4=0⇒k=1.
5. For
k=1, the roots are
x=1 (invalid) and
x=23 (valid). The valid root gives a single solution:
x=23,y=1,z=0. No other integer
k yields an extraneous root or a repeated root.
Answer:The system has a unique solution for exactly one value of
k.