| LIB "ffmodstd.lib";
ring rr=0,x,dp;
list D = 2,3,4,5,6,7,8,9,10;
list E = 8/35, 7/123, 22/1027, 4/391, 44/7779, 29/8405, 74/32771, 23/14763, 112/100003;
modrationalInterpolation(D, E, 1);
==> [1]:
==> x2+x+2
==> [2]:
==> x5+3
ring R = 0, x, dp;
list D1 = 2,3,4,5,6;
list E1 = 8/35, 7/123, 22/1027, 4/391, 44/7779;
modrationalInterpolation(D1, E1, 1);
==> [1]:
==> 35185737407/8965053161610x4-659760301271/8965053161610x3+8448757043/16\
419511285x2-7177841332787/4482526580805x+1702354556926/896505316161
==> [2]:
==> 1
list D = 7,8,9,10;
==> // ** redefining D (list D = 7,8,9,10;) ./examples/modrationalInterpolati\
on.sing:10
list E = 29/8405, 74/32771, 23/14763, 112/100003;
modrationalInterpolation(D, E, 1, D1, E1);
==> [1]:
==> x2+x+2
==> [2]:
==> x5+3
|