Home Online Manual
Top
Back: coeffmod
Forward: ask
FastBack: Teaching
FastForward: atkins_lib
Up: aksaka_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.12.1.7 powerpolyX

Procedure from library aksaka.lib (see aksaka_lib).

Usage:
powerpolyX(q,n,a,r);

Return:
the q-th power of poly a modulo poly r and number n

Example:
 
LIB "aksaka.lib";
ring R=0,x,dp;
poly a=3*x3-x2+5;
poly r=x7-1;
bigint q=123;
bigint n=5;
powerpolyX(q,n,a,r);
==> 3x5-3x4+x3+x2+1