I'm looking for a tool, or at least technique, that allows me to solve the following system of equations:
a*a + a*b + a*c + a*d + a*e + a*f + a*g + a*h = 0
b*b + b*a + b*d + b*c + b*f + b*e + b*h + b*g = 0
c*c + -c*d + c*a + -c*b + c*g + -c*h + c*e + -c*f = 0
-d*d + d*c + -d*b + d*a + -d*h + d*g + -d*f + d*e = 1
e*e + -e*f + -e*g + -e*h + e*a + -e*b + -e*c + -e*d = 0
-f*f + f*e + f*h + -f*g + -f*b + f*a + f*d + -f*c = 0
-g*g + g*h + g*e + g*f + -g*c + g*d + g*a + g*b = 0
-h*h + h*g + h*f + h*e + -h*d + h*c + h*b + h*a = 0
For integers a, b, c, d, e, f, g, h. I've tried Wolfram Alpha, but the system is too large, it exceeds the character limit. Is there any alternative tool that can help me solve this particular problem?
The system can be easily solved by applying Gröbner bases. One solution is given by $a=b=c=e=f=g=h=0$ and $d^2+1=0$, so $d=\pm i$. Another one is given by $c=e=f=g=h=0$, and $$d=\frac{1}{2a},\; b=-\frac{2a^2+1}{2a}$$ for nonzero $a$. There are exactly $7$ such types of solutions. None of them is integral. But the system has rational solutions.