I have about 20 polynomial equations in about 20 variables, 15 equations are linear function and the rest of like degree 5.
I would like to find all real solutions to those (Because it's polynomials I expect this to be possible). I only want numeric approximations; I know symbolically is hard but that's okay since i don't care.
Sage solve tries to solve symbolically and is unable. Sympy nsolve requires a starting vector, and while it finds a solution I don't know how to make it find all solutions (I tried random vectors but that didn't help).
What program should I use? Is this possible? Is 20 too much?