Let us consider the system of equations in $\mathbf{Z}_2$:
$\begin{align}
& x_1+x_2+x_3=0\\
& x_2+x_3+x_4=0
\end{align}$
Here the operation "+" is "xor", i.e., $x_i+x_j=0$ for $x_i=x_j$ and $x_i+x_j=1$ for $x_i\neq x_j$.
How can I predict how many solutions are there and how can I find them?
What will be the number of solutions if the equations are as follows:
$\begin{align}
& x_1+x_2+x_3=1\\
& x_2+x_3+x_4=1
\end{align}$.
\begin{align} & x_1+x_2+x_3=0\\ & x_2+x_3+x_4=0 \end{align}
Since $x+x=0$ for all $x$, adding the two equations gives
$$ x_1+x_4=0$$
adding $x_4$ to both sides gives
$$x_1=x_4$$
Adding $x_1$ to both sides of $x_1+x_2+x_3=0$ gives $x_2+x_3=x_1$.
So there are four solutions:
$$\begin{eqnarray} x&=(1,1,0,1)\\ x&=(1,0,1,1)\\ x&=(0,1,1,0)\\ x&=(0,0,0,0) \end{eqnarray}$$
For the second system
\begin{align} & x_1+x_2+x_3=1\\ & x_2+x_3+x_4=1 \end{align}
adding the two equations together also gives you $ x_1+x_4=0$, so again we have that $x_1=x_4$.
You should be able to finish this one yourself.