source: git/Tst/Short/resultantp_s.tst @ b7d0a9c

spielwiese
Last change on this file since b7d0a9c was ef52d6, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Update testsuite wrt current master (320c4f5e64cad778b4ada9556a9b0a6c71cab83a) NOTE: some wrong/bad tests were removed... TODO: add the reset of these updates after updating LIB/
  • Property mode set to 100644
File size: 6.7 KB
Line 
1//
2// resultantp_s.tst - short tests for resultant calculations mod p.
3//
4// All univariate non-trivial examples come from gcdUnivP.fex or
5// gcdUnivPAlpha.fex.  Most of the examples have a non-trivial gcd, so we
6// compute always an disturbed example, too.  Some extra checks are added
7// for calculation of resultants of polys of same degree.
8//
9// The examples involving a transcendental variable are the same as the
10// examples with algebraic variables.
11//
12// To Do:
13//
14// o multivariate resultant calculations
15//
16
17LIB "tst.lib";
18tst_init();
19
20//
21// - ring r1=32003,x,dp.
22//
23
24tst_ignore( "ring r1=32003,x,dp;" );
25ring r1=32003,x,dp;
26
27poly f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
28poly g;
29
30// some trivial examples
31resultant(0, 0, x);
32resultant(0, 3123, x);
33resultant(4353, 0, x);
34
35resultant(0, f, x);
36resultant(f, 0, x);
37
38resultant(23123, f, x);
39resultant(f, 13123, x);
40
41// some less trivial examples
42f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
43g=-9554*x^3-3341*x^2+6213*x;
44resultant(f, g, x);
45resultant(f, g+1, x);
46resultant(f, g*x+1, x);
47
48f=-11265*x^6+12161*x^5+10369*x^4-12161*x^3+896*x^2;
49g=10669*x^8-10673*x^7+5*x^6+8*x^5-10681*x^4+10665*x^3+7*x^2;
50resultant(f, g, x);
51resultant(f, g+1, x);
52resultant(f*x^2, g+1, x);
53
54f=-7918*x^9-14406*x^8-7256*x^7+2092*x^6-2198*x^5-12539*x^4-14631*x^3-7150*x^2;
55g=-14833*x^13-7011*x^12+15121*x^11-10864*x^10+12943*x^9-9871*x^8+10354*x^7-1437*x^6+6604*x^5-10394*x^4-3231*x^3-9348*x^2-2092*x;
56resultant(f, g, x);
57resultant(f, g+1, x);
58
59f=106*x^13-583*x^12-1060*x^11+8056*x^10+1696*x^9-327*x^8+12508*x^7+8277*x^6+5609*x^5-12879*x^4+13144*x^3-2544*x^2;
60g=11118*x^14-5404*x^13-908*x^12-13908*x^11+3188*x^10-8818*x^9+10439*x^8-14811*x^7+15530*x^6-4891*x^5+6322*x^4+15829*x^3-13686*x^2;
61resultant(f, g, x);
62resultant(f, g+1, x);
63
64f=-14613*x^17+2235*x^16-298*x^15+4540*x^14+7214*x^13+5494*x^12-3122*x^11-4720*x^10+8300*x^9-6582*x^8-9908*x^7-15983*x^6-5802*x^5-8634*x^4+7899*x^3+10556*x^2+6931*x+11063;
65g=-10168*x^20+6674*x^19+3004*x^18+13113*x^17+9449*x^16+9097*x^15-6420*x^14+50*x^13+434*x^12-15226*x^11+3727*x^10-14065*x^9-9751*x^8-15792*x^7+6004*x^6-5059*x^5+2479*x^4-12504*x^3-11328*x^2-11338*x-8280;
66resultant(f, g, x);
67resultant(f, g+1, x);
68
69f=3812*x^22-6874*x^21+12586*x^20+3003*x^19-9568*x^18+11117*x^17 +7524*x^16+11138*x^15-9743*x^14+1892*x^13+12485*x^12-569*x^11-8265*x^10-5991*x^9+13701*x^8+2644*x^7-3936*x^6-15875*x^5+1289*x^4+3956*x^3-10099*x^2-6616*x+5401;
70g=10652*x^20-4144*x^19-11810*x^18+8237*x^17-8675*x^16+6545*x^15-3601*x^14+14559*x^13+8090*x^12-8378*x^11+14255*x^10+8767*x^9-13932*x^8+11602*x^7-10751*x^6-4899*x^5+8637*x^4+14084*x^3-11583*x^2+5882*x+885;
71resultant(f, g, x);
72resultant(f, g+1, x);
73
74//
75// - ring r2=(32003,a),x,dp; minpoly=a^4+8734*a^3+a^2+11817*a+1.
76//
77
78tst_ignore( "ring r2=(32003,a),x,dp;" );
79ring r2=(32003,a),x,dp;
80minpoly=a^4+8734*a^3+a^2+11817*a+1;
81
82poly f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
83poly g;
84
85// first, some of the r1 examples
86resultant(0, 0, x);
87resultant(0, 3123, x);
88resultant(4353, 0, x);
89
90resultant(0, f, x);
91resultant(f, 0, x);
92
93resultant(23123, f, x);
94resultant(f, 13123, x);
95
96// some less trivial examples
97f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
98g=-9554*x^3-3341*x^2+6213*x;
99resultant(f, g, x);
100resultant(f, g+1, x);
101resultant(f, g*x+1, x);
102
103f=-11265*x^6+12161*x^5+10369*x^4-12161*x^3+896*x^2;
104g=10669*x^8-10673*x^7+5*x^6+8*x^5-10681*x^4+10665*x^3+7*x^2;
105resultant(f, g, x);
106resultant(f, g+1, x);
107resultant(f*x^2, g+1, x);
108
109// now, examples involving the algebraic variable
110f=(25836*a^3*x^6+30467*a^2*x^6+26792*a*x^6+30467*x^6+27083*a^3*x^5+30808*a^2*x^5+28163*a*x^5+292*x^5+12440*a^3*x^4+19396*a^2*x^4+19616*a*x^4+23236*x^4+25156*a^3*x^3+31764*a^2*x^3+31235*a*x^3+6459*x^3);
111g=(14670*a^3*x^6+19715*a^2*x^6+22318*a*x^6+19715*x^6+19743*a^3*x^5+28179*a^2*x^5+19715*a*x^5+7335*x^5+6379*a^3*x^4+11397*a^2*x^4+23599*a*x^4+9861*x^4+16005*a^3*x^3+31525*a^2*x^3+30467*a*x^3+12918*x^3);
112resultant(f, g, x);
113resultant(f, g+1, x);
114
115f=(21147*a^3*x^5+10147*a^3*x^4+8142*a^2*x^4+27671*a*x^4+29289*x^4+29289*a^3*x^3);
116g=(6167*a^3*x^6+1536*a^2*x^6+5211*a*x^6+1536*x^6+17534*a^3*x^5+478*a^2*x^5+1536*a*x^5+19085*x^5+3203*a^3*x^4+26578*a^2*x^4+17052*a*x^4+26770*x^4+26002*a^3*x^3+24062*a^2*x^3+192*a*x^3+6386*x^3);
117resultant(f, g, x);
118resultant(f, g+1, x);
119
120f=(2295*a^2*x^11+5897*a^3*x^10+765*a^2*x^10+27718*a^3*x^9+1283*a^2*x^9+23792*a*x^9+518*x^9+22026*a^3*x^8+11468*a^2*x^8+16834*a*x^8+24778*x^8+28460*a^3*x^7+8140*a^2*x^7+28036*a*x^7+1613*x^7+18196*a^3*x^6+13274*a^2*x^6+4638*a*x^6+31194*x^6+12206*a^3*x^5+10349*a^2*x^5+30979*a*x^5+8612*x^5);
121g=(8192*a^3*x^10+8957*a^2*x^10+9659*a^3*x^9+28672*a^2*x^9+4553*a*x^9+12288*x^9+5819*a^3*x^8+320*a^2*x^8+14380*a*x^8+12104*x^8+12047*a^3*x^7+19823*a^2*x^7+6824*a*x^7+4335*x^7+29376*a^3*x^6+22190*a^2*x^6+31239*a*x^6+22647*x^6);
122resultant(f, g, x);
123resultant(f, g+1, x);
124
125//
126// - ring r3=(32003,t),x,dp.
127//
128
129tst_ignore( "ring r3=(32003,t),x,dp;" );
130ring r3=(32003,t),x,dp;
131
132poly f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
133poly g;
134
135// first, some of the r1 examples
136resultant(0, 0, x);
137resultant(0, 3123, x);
138resultant(4353, 0, x);
139
140resultant(0, f, x);
141resultant(f, 0, x);
142
143resultant(23123, f, x);
144resultant(f, 13123, x);
145
146// some less trivial examples
147f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
148g=-9554*x^3-3341*x^2+6213*x;
149resultant(f, g, x);
150resultant(f, g+1, x);
151resultant(f, g*x+1, x);
152
153f=-11265*x^6+12161*x^5+10369*x^4-12161*x^3+896*x^2;
154g=10669*x^8-10673*x^7+5*x^6+8*x^5-10681*x^4+10665*x^3+7*x^2;
155resultant(f, g, x);
156resultant(f, g+1, x);
157resultant(f*x^2, g+1, x);
158
159// now, examples involving the transcendental variable
160f=(25836*t^3*x^6+30467*t^2*x^6+26792*t*x^6+30467*x^6+27083*t^3*x^5+30808*t^2*x^5+28163*t*x^5+292*x^5+12440*t^3*x^4+19396*t^2*x^4+19616*t*x^4+23236*x^4+25156*t^3*x^3+31764*t^2*x^3+31235*t*x^3+6459*x^3);
161g=(14670*t^3*x^6+19715*t^2*x^6+22318*t*x^6+19715*x^6+19743*t^3*x^5+28179*t^2*x^5+19715*t*x^5+7335*x^5+6379*t^3*x^4+11397*t^2*x^4+23599*t*x^4+9861*x^4+16005*t^3*x^3+31525*t^2*x^3+30467*t*x^3+12918*x^3);
162resultant(f, g, x);
163resultant(f, g+1, x);
164
165f=(21147*t^3*x^5+10147*t^3*x^4+8142*t^2*x^4+27671*t*x^4+29289*x^4+29289*t^3*x^3);
166g=(6167*t^3*x^6+1536*t^2*x^6+5211*t*x^6+1536*x^6+17534*t^3*x^5+478*t^2*x^5+1536*t*x^5+19085*x^5+3203*t^3*x^4+26578*t^2*x^4+17052*t*x^4+26770*x^4+26002*t^3*x^3+24062*t^2*x^3+192*t*x^3+6386*x^3);
167resultant(f, g, x);
168resultant(f, g+1, x);
169
170f=(2295*t^2*x^11+5897*t^3*x^10+765*t^2*x^10+27718*t^3*x^9+1283*t^2*x^9+23792*t*x^9+518*x^9+22026*t^3*x^8+11468*t^2*x^8+16834*t*x^8+24778*x^8+28460*t^3*x^7+8140*t^2*x^7+28036*t*x^7+1613*x^7+18196*t^3*x^6+13274*t^2*x^6+4638*t*x^6+31194*x^6+12206*t^3*x^5+10349*t^2*x^5+30979*t*x^5+8612*x^5);
171g=(8192*t^3*x^10+8957*t^2*x^10+9659*t^3*x^9+28672*t^2*x^9+4553*t*x^9+12288*x^9+5819*t^3*x^8+320*t^2*x^8+14380*t*x^8+12104*x^8+12047*t^3*x^7+19823*t^2*x^7+6824*t*x^7+4335*x^7+29376*t^3*x^6+22190*t^2*x^6+31239*t*x^6+22647*x^6);
172resultant(f, g, x);
173resultant(f, g+1, x);
174tst_status(1);$
Note: See TracBrowser for help on using the repository browser.