Phat Tran on Thu, 18 Mar 2010 03:34:20 +0100


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Degree overflow in pow_monome - PARI


***ÂÂ degree overflow in pow_monome.
 *** Error in the PARI system. End of program.

I got the error message above while running the codes in C using PARI/GP 2.3.5 under cygwin.

ÂÂÂ GEN m = readseq("123456789");
ÂÂÂ GEN n = readseq("1234567");
ÂÂÂ
ÂÂÂ GEN a = readseq("7");
ÂÂÂ GEN c = readseq("8");
ÂÂÂ
ÂÂÂ GEN b = readseq("10358");
ÂÂÂ GEN d = readseq("49850");
ÂÂÂ
ÂÂÂ
ÂÂÂ GEN x = pol_x[fetch_user_var("x")];
ÂÂÂ GEN y = pol_x[fetch_user_var("y")];
ÂÂÂ GEN z = pol_x[fetch_user_var("a")];
ÂÂÂ ÂÂÂ
ÂÂÂ z = gpowgs(gmodulo(gadd(x, gmodulo(gadd(y, gmodulss(1, n)), gsub(gpowgs(y, c), d))), gsub(gpowgs(x, a), b)), m);

I wonder if the number m is too big for PARI to be handled.Â

Thanks,

Minhphat