
|
Go to the first, previous, next, last section, table of contents.
- lmptop(obj)
-
:: GF(p) 係数多項式の係数を整数に変換
- return
-
整数係数多項式
- obj
-
GF(p) 係数多項式
-
GF(p) 係数多項式の係数を整数に変換する.
-
GF(p) の元は, 0 以上 p 未満の整数で表現されている.
多項式の各係数は, その値を整数オブジェクト(数識別子 0)としたものに
変換される.
[0] setmod_ff(pari(nextprime,2^40));
1099511627791
[1] F=simp_ff((x-1)^10);
1*x^10+1099511627781*x^9+45*x^8+1099511627671*x^7+210*x^6
+1099511627539*x^5+210*x^4+1099511627671*x^3+45*x^2+1099511627781*x+1
[2] setmod_ff(547);
547
[3] F=simp_ff((x-1)^10);
1*x^10+537*x^9+45*x^8+427*x^7+210*x^6+295*x^5+210*x^4+427*x^3+45*x^2+537*x+1
[4] lmptop(F);
x^10+537*x^9+45*x^8+427*x^7+210*x^6+295*x^5+210*x^4+427*x^3+45*x^2+537*x+1
[5] lmptop(coef(F,1));
537
[6] ntype(@@);
0
- 参照
-
section
simp_ff
Go to the first, previous, next, last section, table of contents.
|