Ask Your Question
0

(1-i)^(1/3),(1-i)^(1/4) is algebra interger?

asked 2013-12-07 02:56:42 +0200

cjsh gravatar image

updated 2015-07-31 18:16:30 +0200

FrédéricC gravatar image

I try http://www.wolframalpha.com/input/?i=... answer:UNKNOW

but sagemath :true,why?which is right?

K.<a> = NumberField((x^3-1)^2+1);K;a.list();a.is_integral() 

Number Field in a with defining polynomial x^6 - 2*x^3 + 2
[0, 1, 0, 0, 0, 0]
True
K.<a> = NumberField((x^4-1)^2+1);K;a.list();a.is_integral() 

Number Field in a with defining polynomial x^8 - 2*x^4 + 2
[0, 1, 0, 0, 0, 0, 0, 0]
True
K.<a> = NumberField((x^5-1)^2+1);K;a.list();a.is_integral() 

Number Field in a with defining polynomial x^10 - 2*x^5 + 2
[0, 1, 0, 0, 0, 0, 0, 0, 0, 0]
True
edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2013-12-07 06:25:59 +0200

tmonteil gravatar image

updated 2013-12-07 06:52:26 +0200

In your case, you can get conviced by typing:

sage: P = a.absolute_minpoly() ; P
x^6 - 2*x^3 + 2
sage: P(a)
0
sage: P in ZZ[x]
True
sage: P.is_monic()
True

https://en.wikipedia.org/wiki/Algebra...

edit flag offensive delete link more

Comments

thank you very much!

cjsh gravatar imagecjsh ( 2013-12-08 01:41:15 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2013-12-07 02:56:42 +0200

Seen: 225 times

Last updated: Dec 08 '13