Ask Your Question
0

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

asked 11 years ago

cjsh gravatar image

updated 9 years ago

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
Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 11 years ago

tmonteil gravatar image

updated 11 years ago

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...

Preview: (hide)
link

Comments

thank you very much!

cjsh gravatar imagecjsh ( 11 years ago )

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: 11 years ago

Seen: 313 times

Last updated: Dec 08 '13