I have a system of $8-$equations for $\{x,y,z,t,w,p,r,s\}$ and I want to solve this system. $$ 4 \pi (w+y)+x+y=w+4 \pi (x+z)+z,\\4 \pi r+r+s=4 \pi (s+w-z)+w+z,\\4 \pi (p+s)+r+s=p+4 \pi (r+t)+t,\\4 \pi p+p+t=4 \pi (t+x-y)+x+y,\\p+e^{8 i \pi ^2} (t-x)=y,\\p+y=e^{8 i \pi ^2} (t+x),\\r+s=w+z,\\r+z=s+w $$
I use Mathematica (the code is given below) and the solution is as follows $$x=0,\quad y=0,\quad t=0,\quad w=-\frac{(-1-4 \pi ) z}{4 \pi -1},\quad s=z,\quad r=-\frac{(-1-4 \pi ) z}{4 \pi -1},\quad p=0$$
From the nature of my problem, I expect that at least one of the variables $x$ and $y$ to be nonzero. My question is can I trust this result? Or if I use another method and manually, will I get a different result with one of $x$ and $y$ nonzero?
eqs := {x + y + 4 π (w + y) == w + z + 4 π (x + z),
r + 4 π r + s == w + 4 π (s + w - z) + z,
r + s + 4 π (p + s) == p + t + 4 π (r + t),
p + 4 p π + t == x + 4 π (t + x - y) + y,
p + E^(8 I π^2) (t - x) == y,
p + y == E^(8 I π^2) (t + x),
r + s == w + z,
r + z == s + w};
Solve[eqs, {x, y, z, t, w, s, r, p}]
```