Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
1

To check whether a given ideal of an order is principal or not

asked 9 years ago

user2893829 gravatar image

Suppose θ is a root of a irreducible monic polynomial f of degree n. (In practice, I would like to deal with n=3 case.) Then, define the ideal class group of Z[θ], C(Z[θ]) by the set of invertible fractional ideals modulo principal ideals.

Given a polynomial f and a fractional ideal I of Z[θ], is there any way to decide I is principal or not?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 9 years ago

B r u n o gravatar image

The reference manual gives the solution (if I understand you question correctly):

sage: K.<a, b> = NumberField([x^2 - 23, x^2 + 1])
sage: I = K.ideal([7, (-1/2*b - 3/2)*a + 3/2*b + 9/2])
sage: I.is_principal()
True
sage: I
Fractional ideal ((1/2*b + 1/2)*a - 3/2*b - 3/2)
Preview: (hide)
link

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

Seen: 1,157 times

Last updated: Feb 11 '16