Re: [sage-support] splitting_field

2014-05-19 Thread Jeroen Demeyer
On 2014-05-18 20:27, nt.a.am1...@gmail.com wrote: I've downloaded and installed the sage 6.1.1. But the program does not recognize splitting_field . For example sage:R. = PolynomialRing(QQ) sage:K. = NumberField(x^3 + 2) sage:S. = PolynomialRing(K) sage:L. = (t^2 - a).splitting_fiel

Re: [sage-support] splitting_field

2014-05-18 Thread nt . a . am1392
Thank you Can i update 6.1.1 to 6.2? Best Regards -- 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 g

Re: [sage-support] splitting_field

2014-05-18 Thread John Cremona
You need 6.2. The splitting field functionality was only added since 6.1.1: sage: R. = PolynomialRing(QQ) sage: sage: K. = NumberField(x^3 + 2) sage: sage: S. = PolynomialRing(K) sage: sage: L. = (t^2 - a).splitting_field() sage: L Number Field in b with defining polynomial t^6 + 2 On 18 May 2

[sage-support] splitting_field

2014-05-18 Thread nt . a . am1392
I've downloaded and installed the sage 6.1.1. But the program does not recognize splitting_field . For example sage: R. = PolynomialRing(QQ)sage: K. = NumberField(x^3 + 2)sage: S. = PolynomialRing(K)sage: L. = (t^2 - a).splitting_field()sage: L ImportError: No module named splitting_field