I have same difficulty, even for one simple equation... :-)

2

R.<x,y>=QQ[]

3

f1(x) = x^6 + x^5 + x^4 + x^3 + x^2 + x + 1

4

eqn = solve([f1 == 0],x)

5

print(eqn)

6

[
0 == x^6 + x^5 + x^4 + x^3 + x^2 + x + 1
]
 
while removing x^6:

R.<x,y>=QQ[]

3

f1(x) = x^5 + x^4 + x^3 + x^2 + x + 1

4

eqn = solve([f1 == 0],x)

5

print(eqn)

6

[
x == -1/2*I*sqrt(3) + 1/2,
x == 1/2*I*sqrt(3) + 1/2,
x == -1,
x == -1/2*I*sqrt(3) - 1/2,
x == 1/2*I*sqrt(3) - 1/2
]
Do I complain ?  ;-)

Dominique 

 

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/d/optout.

Reply via email to