The equations are:
$ y * z = 8$
$x + z = 8$
$x + y = 6$
Solving for these gets me to:
$z = \frac{16}{7}, y = \frac{7}{2}$ and $x = 8 - \frac{16}{7}$.
This is incorrect however. Putting it into a solver yields no solution.
Why can't this be solved?
The equations are:
$ y * z = 8$
$x + z = 8$
$x + y = 6$
Solving for these gets me to:
$z = \frac{16}{7}, y = \frac{7}{2}$ and $x = 8 - \frac{16}{7}$.
This is incorrect however. Putting it into a solver yields no solution.
Why can't this be solved?
On
$z = 8 - x$ and $y = 6 - x$, then $$yz = (6-x)(8-x) = 8$$ which is $$x^2 - 14x + 40 = 0$$ The roots of the above equation are: $$x_1 = 10$$ and $$x_2 = 4$$ For $x_1 = 10$, we get $y_1 = 6-x_1 = -4$ and $z_1 = 8-10 = -2$.
For $x_2 = 4$, we get $y_2 = 6-x_2 = 2$ and $z_2 = 8-4 = 4$.
Therefore two solutions:
$x_1 = 10$, $y_1 = -4$, and $z_1 = -2$.
$x_2 = 4$, $y_2 = 2$ and $z_2 = 4$.
$$yz=8\tag{1}$$
$$x+z=8 \implies z=8-x\tag{2}$$
$$x+y=6 \implies y = 6-x\tag{3}$$
substitute $(2)$ and $(3)$ into $(1)$, we get
$$(6-x)(8-x)=8$$
which is a quadratic equation, now you can compute the discriminant to check if there is such real $x$.