I have reason to suspect this system of six nonlinear modular equations has no solution for $2 < x < y < z$ even integers.
$$
\left\{
\begin{aligned}
z(3y+2) \equiv y(3z+2) \equiv 0& \mod x\\
z(3x+2) \equiv x(3z+2) \equiv 0& \mod y\\
x(3y+2) \equiv y(3x+2) \equiv 0& \mod z
\end{aligned}
\right.
$$
Remove any one and numerous solutions are easy to find, so I can't make the system any smaller. Having no solution is also consistent with other empirical results. But naturally I'd like a proof or a counterexample. Since the moduli are not pairwise coprime, I don't see how the CRT can help.
Using the definition of modulus, I could transform these into a system of nonlinear equations with nine variables:
$$\begin{bmatrix} -K_1 &2 &3y\\ -K_2 & 3z & 2\\ 2 & -K_3 &3x\\ 3z &-K_4 & 2\\ 2 & 3x &-K_5\\ 3y & 2 &-K_6 \end{bmatrix} \begin{bmatrix} x\\ y\\ z \end{bmatrix} = \begin{bmatrix} 0\\ 0\\ 0\\ 0\\ 0\\ 0 \end{bmatrix} $$
where the Ki's are positive constants. But this doesn't seem to get me anywhere and may actually make the problem harder.
Any hope of proving something like this? This is research, but I'm a computer scientist by training, not a mathematician. Abstract algebra, discrete math, number theory, linear algebra etc either self-taught or learned back in the Dark Ages by candlelight.
--BF
Edit: Made a mistake, this is wrong
Let us isolate two of the equations: $$ \begin{align*} z(3y+2) &\equiv 0 \pmod x\\ z(3x+2) &\equiv 0 \pmod y \end{align*} $$
From $$ z(3y+2)\equiv 0 \pmod x, $$ This means $x$ divides $z(3y+2)$. Since these are positive numbers, $$ x \leq 3yz+2z $$ Similarly, from $$ z(3x+2)\equiv 0 \pmod y $$ we get $$ y \leq 3x z+2z $$ Now subtracting latter from former: $$ y-x \leq 3z(x-y) $$ Since $x < y$, LHS is greater than zero. However since $x<y$ and $0<z$, RHS is less than zero. Therefore this is impossible.