I'm trying to get Mathematica to solve the following system, consisting of two identical equations, except that the variables z1, u1, u3 (in the first) and zz1, uu1, uu3 (in the second) represent different known numbers.
eq1 = z1 - 1/2*(u1 + s1 + Sqrt[s1^2 + u1^2 - 2*u1*s1*(Cos[s2 - u3])]) == 0; eq2 = zz1 - 1/2*(uu1 + s1 + Sqrt[s1^2 + uu1^2 - 2*uu1*s1*(Cos[s2 - uu3])]) == 0; Reduce[{eq1, eq2}, {s1, s2}, Reals] He has been running for about an hour without giving me answers. I solved it by hand and it can be reduced to a second degree equation in $ \cos (s_2) $, so the solutions actually exist.
Is there any error in my setting the problem in the code?