I have a rather large rational expression exp involving real variables $x_1, x_2, \dots, x_{10}$. The expression is of the following form
exp = (64*x1^4*x7^4 + 64*x2^4*x7^4 + 16*x2^2*x7^2*(4*x3*x7 + x5 - 2*I*x9)*(x6 - 2*I*x9) + 64*x1^2*x7^2*(2*x2^2*x7^2 + (x8 - 2*x4*x7)*x10) + 32*x1*x2* x7^2*((x8 - 2*x4*x7)*(x6 - 2*I*x9) + (4*x3*x7 + x5 - 2*I*x9)* x10) + (2*x8 - 4*I*x3*x7 - 4*x4*x7 - I*x5 - 2*x9)*(2*x8 + 4*I*x3*x7 - 4*x4*x7 + I*x5 + 2*x9)*((x6 - 2*I*x9)^2 + 4*x10^2))/(4*(4*x1^2*x7^2 + 8*I*x1*x2*x7^2 - 4*x2^2*x7^2 + (2*x8 + 4*I*x3*x7 - 4*x4*x7 + I*x5 + 2*x9)*(I*x6 + 2*(x9 + x10)))) I want to find all real solutions for $x_1, x_2, \dots, x_{10}$ such that $$ \text{exp} = 0, $$ under the following constraints:
- All variables $x_1, \dots, x_{10}$ are real.
- $x_5, x_6, x_7, x_8, x_9, x_{10} > 0$ (strictly positive).
- $x_1, x_2, x_3, x_4$ can be negative.
- $x_1$ and $x_2$ cannot be simultaneously zero.
- $x_3$ and $x_4$ cannot be simultaneously zero.
I tried working with the FindInstance but it doesn't seem to lead to what I'm looking for:
FindInstance[Simplify[exp] == 0, Variables[exp], 1] ({{x1 -> 1, x7 -> Root[{1 + #1^2 & , -1 + 4#1 + 24*#2 - 16*#1*#2 - 32*#2^2 + 16*#2^4 & }, {2, 1}], x2 -> 0, x10 -> 0, x4 -> 1, x8 -> 1, x6 -> 0, x9 -> -1, x5 -> -1, x3 -> 1}}*)
Any suggestion would be greatly appreciated.
