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])
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.