Ask Your Question

Nano's profile - activity

2013-11-04 20:59:35 +0200 received badge  Editor (source)
2013-11-04 20:59:07 +0200 asked a question How to factor polynomials over a residue class ring.

here is an example;

$K$ = $\mathbb{Q} (a)$ ($a$ is a root of $x^2-3x-30 \in \mathbb{Q}[x]$ )

$O_K$ = the ring of integers of $K$

$P$ = ($-6a-25$) (P is a prime ideal of $O_K$)

$k$ = $O_K/P$

$f(x) = x^2-ax+32 \in O_K[x]$

Is there a way in SAGE to determine the factorization of $\overline{f(x)}=f(x) \hspace{2pt} modP \in k[x]$.

2013-11-04 20:07:32 +0200 asked a question How to factor polynomials.

here is an example;

K. = NumberField( x^3+3*x^2+1 )

O = K.ring_of_integers()

P = K.ideal(?+1)

Is there an easy way in sage to determine the factorization of a polynomial $f(x) \in O[x]$ , over the residue class ring $O/P$.

For example, $f(x)=x^3+3x^2+?x+1$...