Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

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?