Google

Go to the first, previous, next, last section, table of contents.


res

res(var,poly1,poly2[,mod])
:: var に関する poly1poly2 の終結式.
return
多項式
var
不定元
poly1,poly2
多項式
mod
素数
  • 二つの多項式 poly1poly2 の, 変数 var に関する 終結式を求める.
  • 部分終結式アルゴリズムによる.
  • 引数 mod がある時, GF(mod) 上での計算を行う.
[0] res(t,(t^3+1)*x+1,(t^3+1)*y+t);
-x^3-x^2-y^3


Go to the first, previous, next, last section, table of contents.