source: git/Tst/Short/gcdp_s.tst @ f5d2647

spielwiese
Last change on this file since f5d2647 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: 5.5 KB
Line 
1//
2// gcdp_s.tst - short tests for gcd calculations mod p.
3//
4// All univariate non-trivial examples come from gcdUnivP.fex
5// or gcdUnivPAlpha.fex.
6//
7// The example in variables `a', `c', `e', ... came from `untitled2(6/p/1)'
8// in stdMultivPGcd.in.
9//
10// To Do:
11//
12// o multivariate gcd calculations with parameters
13//
14
15LIB "tst.lib";
16tst_init();
17
18//
19// - functions.
20//
21
22//
23// simplifyGcd() - print gcd as well as normalized gcd.
24//
25proc simplifyGcd ( poly f, poly g )
26{
27  poly d=gcd( f, g );
28  d;
29  simplify( d, 1 );
30}
31
32//
33// - ring r1=32003,x,dp.
34//
35
36tst_ignore( "ring r1=32003,x,dp;" );
37ring r1=32003,x,dp;
38
39poly f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
40poly g;
41
42// some trivial examples
43gcd(0, 0);
44gcd(0, 3123);
45gcd(4353, 0);
46simplifyGcd(0, 0);
47simplifyGcd(0, 3123);
48simplifyGcd(4353, 0);
49
50simplifyGcd(0, f);
51simplifyGcd(f, 0);
52
53simplifyGcd(23123, f);
54simplifyGcd(f, 13123);
55
56// some less trivial examples
57f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
58g=-9554*x^3-3341*x^2+6213*x;
59simplifyGcd(f, g);
60
61f=-11265*x^6+12161*x^5+10369*x^4-12161*x^3+896*x^2;
62g=10669*x^8-10673*x^7+5*x^6+8*x^5-10681*x^4+10665*x^3+7*x^2;
63simplifyGcd(f, g);
64
65f=-7918*x^9-14406*x^8-7256*x^7+2092*x^6-2198*x^5-12539*x^4-14631*x^3-7150*x^2;
66g=-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;
67simplifyGcd(f, g);
68
69//
70// - ring r2=(32003,a),x,dp; minpoly=a^4+8734*a^3+a^2+11817*a+1.
71//
72
73tst_ignore( "ring r2=(32003,a),x,dp;" );
74ring r2=(32003,a),x,dp;
75minpoly=a^4+8734*a^3+a^2+11817*a+1;
76
77poly f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
78poly g;
79
80// first, some of the r1 examples
81simplifyGcd(0, 0);
82simplifyGcd(0, 3123);
83simplifyGcd(4353, 0);
84
85simplifyGcd(0, f);
86simplifyGcd(f, 0);
87
88simplifyGcd(23123, f);
89simplifyGcd(f, 13123);
90
91// some less trivial examples
92f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
93g=-9554*x^3-3341*x^2+6213*x;
94simplifyGcd(f, g);
95
96f=-11265*x^6+12161*x^5+10369*x^4-12161*x^3+896*x^2;
97g=10669*x^8-10673*x^7+5*x^6+8*x^5-10681*x^4+10665*x^3+7*x^2;
98simplifyGcd(f, g);
99
100// now, examples involving the algebraic variable
101f=(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);
102g=(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);
103simplifyGcd(f, g);
104
105f=(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);
106g=(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);
107simplifyGcd(f, g);
108
109//
110// - ring r3=(32003,t),x,dp.
111//
112
113tst_ignore( "ring r3=(32003,t),x,dp;" );
114ring r3=(32003,t),x,dp;
115
116poly f=(-9554*x^4-12895*x^3-10023*x^2-6213*x);
117poly g;
118
119// first, some of the r1 examples (slightly modified)
120simplifyGcd(0, 0);
121simplifyGcd(0, 3123*t);
122simplifyGcd(4353, 0);
123
124simplifyGcd(0, f/t);
125simplifyGcd(f, 0);
126
127simplifyGcd(23123/t, f);
128simplifyGcd(f, 13123);
129
130// some less trivial examples
131f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
132g=-9554*x^3-3341*x^2+6213*x;
133simplifyGcd(f, g);
134
135// we go on with modified variable names
136tst_ignore( "ring r3=(32003,a,c,e),(f,h,k),dp;" );
137kill r3;
138ring r3=(32003,a,c,e),(f,h,k),dp;
139
140poly fPoly;
141poly gPoly;
142
143fPoly=(16001*c^2*f^2*k^2-16001*c*e*f*k^3+c*f^3*h*k-e*f^2*h*k^2);
144gPoly=(c^3*e*f*h-4*c*e^2*f*h^2);
145simplifyGcd(fPoly, gPoly);
146
147fPoly=(c^4*k^2-5*c^3*f*h*k+4*c^2*e*h*k^2+4*c^2*f^2*h^2-4*c*e*f*h^2*k);
148gPoly=(-c^3*f*k^2+c^2*e*k^3+2*c^2*f^2*h*k-2*c*e*f*h*k^2);
149simplifyGcd(fPoly, gPoly);
150
151fPoly=(-8001*c^4*e*f*k^6+8001*c^4*f^3*h*k^4+8001*c^3*e^2*k^7+8001*c^3*e*f^2*h*k^5+16001*c^3*f^4*h^2*k^3+16001*c^2*e^2*f*h*k^6-16001*c^2*e*f^3*h^2*k^4);
152gPoly=(16001*c^7*e*h*k^3-15998*c^6*e*f*h^2*k^2-7*c^5*e*f^2*h^3*k-8*c^4*e^2*f*h^3*k^2+4*c^4*e*f^3*h^4+8*c^3*e^3*h^3*k^3+24*c^3*e^2*f^2*h^4*k-24*c^2*e^3*f*h^4*k^2-16*c^2*e^2*f^3*h^5+16*c*e^3*f^2*h^5*k);
153simplifyGcd(fPoly, gPoly);
154
155//
156// - ring r4=32003,(t,x),dp.
157//
158// The examples from r4 are those from r3 with parameters
159// changed to ring variables.
160//
161
162tst_ignore( "ring r4=32003,(t,x),dp;" );
163ring r4=32003,(t,x),dp;
164
165poly f=(-9554*x^4-12895*x^3-10023*x^2-6213*x);
166poly g;
167
168// first, some of the r1 examples (slightly modified)
169simplifyGcd(0, 0);
170simplifyGcd(0, 3123*t);
171simplifyGcd(4353, 0);
172
173simplifyGcd(0, f);
174simplifyGcd(f, 0);
175
176simplifyGcd(23123*t, f);
177simplifyGcd(f, 13123);
178
179// some less trivial examples
180f=-9554*x^4-12895*x^3-10023*x^2-6213*x;
181g=-9554*x^3-3341*x^2+6213*x;
182simplifyGcd(t*f, g);
183
184// we go on with modified variable names
185tst_ignore( "ring r4=32003,(a,c,e,f,h,k),dp;" );
186kill r4;
187ring r4=32003,(a,c,e,f,h,k),dp;
188
189poly fPoly;
190poly gPoly;
191
192fPoly=(16001*c^2*f^2*k^2-16001*c*e*f*k^3+c*f^3*h*k-e*f^2*h*k^2);
193gPoly=(c^3*e*f*h-4*c*e^2*f*h^2);
194simplifyGcd(fPoly, gPoly);
195
196fPoly=(c^4*k^2-5*c^3*f*h*k+4*c^2*e*h*k^2+4*c^2*f^2*h^2-4*c*e*f*h^2*k);
197gPoly=(-c^3*f*k^2+c^2*e*k^3+2*c^2*f^2*h*k-2*c*e*f*h*k^2);
198simplifyGcd(fPoly, gPoly);
199
200fPoly=(-8001*c^4*e*f*k^6+8001*c^4*f^3*h*k^4+8001*c^3*e^2*k^7+8001*c^3*e*f^2*h*k^5+16001*c^3*f^4*h^2*k^3+16001*c^2*e^2*f*h*k^6-16001*c^2*e*f^3*h^2*k^4);
201gPoly=(16001*c^7*e*h*k^3-15998*c^6*e*f*h^2*k^2-7*c^5*e*f^2*h^3*k-8*c^4*e^2*f*h^3*k^2+4*c^4*e*f^3*h^4+8*c^3*e^3*h^3*k^3+24*c^3*e^2*f^2*h^4*k-24*c^2*e^3*f*h^4*k^2-16*c^2*e^2*f^3*h^5+16*c*e^3*f^2*h^5*k);
202simplifyGcd(fPoly, gPoly);
203tst_status(1);$
Note: See TracBrowser for help on using the repository browser.