How do I calculate the first solution, without calculating all the others?
var('x')
eq0 = x^100-3 == 0
solutions = solve([eq0],x)
sol0 = solutions
print(sol0[0])
1 | initial version |
How do I calculate the first solution, without calculating all the others?
var('x')
eq0 = x^100-3 == 0
solutions = solve([eq0],x)
sol0 = solutions
print(sol0[0])