SageMath cannot solve this system of equations?
I am trying to use sagemath to solve a system of equations. But it doesn't give a solution. The equations has a solution when I checked using other software. My codes are:
x = {(i, j): var(f'x_{i}_{j}', latex_name=f'x_{{{i},{j}}}')
for i in (1 .. 3) for j in (1 .. 3)}
y = {(i, j): var(f'y_{i}_{j}', latex_name=f'y_{{{i},{j}}}')
for i in (1 .. 3) for j in (1 .. 3)}
va = list(x.values())
r1 = [-y_1_1 + x_2_1/x_2_2,
-y_1_2 + x_2_2/x_2_3,
-y_1_3 + x_1_1/x_1_2,
-y_2_1 + x_1_2/x_1_3,
x_3_1 - y_2_2,
x_1_2*x_2_2*x_3_2 - y_2_3,
x_1_3*x_2_3*x_3_3/x_1_1 - y_3_1,
x_2_3*x_3_3 - y_3_2,
x_1_3*x_2_3*x_3_2 - y_3_3]
solve(r1, va, solution_dict=True)
Is there some way to find solutions to these equations in SageMath? Thank you very much.
I am curious :
What is the point of defining 80200 symbolic variables to use 18 of them ?
What is your "other software", and what code did you use in it ?
How did you check the answers ?
Sage ca solve the system composed of the 7 first equations of your system :
But both the 8th and 9th fail :
HTH,
I edited the question to address Emmanuel's first point.