First time here? Check out the FAQ!
answered 2022-09-18 11:31:52 +0100
I found sequence:
var('x y') eq1 = 2*x^2 + x*y +x == 6 eq2 = 3*x^2 + 2*y^2- y == 6 solutions = solve([eq1, eq2], x, y) print(solutions)
now I want increase precision: R = RealField(100) how use with solve?