Processing math: 100%
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 3 years ago

tungnt gravatar image

Getting the trace polynomial

Dear all,

I am using sagemath to get the trace polynomial from a given reciprocal polynomial of even degree. The process is described nicely on the documentation. I am not allowed to post a link. See below for a concrete example.

However, the algorithm returns a triple (Q,R,q). For further calculations, I need to take out just the polynomial Q. Here is an example

pol.<x> = PolynomialRing(Rationals()) sage: u = x^6 +1; u.trace_polynomial()

The algorithm returns u=(x33x,1,1) (in my examples, I know that R=q=1 always). How can I get the first component of u? I tried u[0] but that does not work; hence u is not a Python list.

How can we resolve this problem? I am sorry if my question is too trivial. Thank you very much!

Best wishes, Tung

Getting the trace polynomial

Dear all,

I am using sagemath to get the trace polynomial from a given reciprocal polynomial of even degree. The process is described nicely on the documentation. I am not allowed to post a link. See below for a concrete example.

However, the algorithm returns a triple (Q,R,q). For further calculations, I need to take out just the polynomial Q. Here is an example

pol.<x> = PolynomialRing(Rationals()) sage: u = x^6 +1; u.trace_polynomial() u1=u.trace_polynomial()

The algorithm returns $u=(x^3 $u1=(x^3 - 3*x, 1, 1)(inmyexamples,IknowthatR=q=1$ always). How can I get the first component of u? u1? I tried u[0] u1[0] but that does not work; hence u is not a Python list.

How can we resolve this problem? I am sorry if my question is too trivial. Thank you very much!

Best wishes, Tung

Getting the trace polynomial

Dear all,

I am using sagemath to get the trace polynomial from a given reciprocal polynomial of even degree. The process is described nicely on the documentation. I am not allowed to post a link. See below for a concrete example.

However, the algorithm returns a triple (Q,R,q). For further calculations, I need to take out just the polynomial Q. Here is an example

pol.<x> = PolynomialRing(Rationals()) sage: u = x^6 +1; u1=u.trace_polynomial()

The algorithm returns u1=(x33x,1,1) (in my examples, I know that R=q=1 always). How can I get the first component of u1? I tried

Edit: Simply take u1[0] but that does not work; hence u is not a Python list. as suggested below by another user.

How can we resolve this problem? I am sorry if my question is too trivial. Thank you very much!

Best wishes, Tung