I'm trying to figure out a way to solve a system of equations where variables are multiplied together. Fairly similar to this question, however the example used seems simpler than what I want to do.
As an example, let's say I have 3 variables and 3 equations. All my equations are in the form:
$$c_1x + c_2y + c_3z + c_4xy + c_5xz + c_6yz + c_7xyz = 0$$
Constants can be either $0$ or a positive whole number. Variables are either $0$ or $1$.
I've been trying to figure out if/how to use substitution and/or elimination. I've also seen some solutions that replace the multiplied variables with a single new variable. I'm not entirely sure whether that would help or how to properly do it.
How should I go about solving this system?
Edit 1: I looked back at the problem I'm trying to solve and the constants can be negative.