spielwiese
Last change
on this file since 107aac was
107aac,
checked in by Martin Lee <martinlee84@…>, 11 years ago
|
chg: added test for tr. 448 to Short/factorizeQ_s.tst
|
-
Property mode set to
100644
|
File size:
1.7 KB
|
Line | |
---|
1 | LIB "tst.lib"; |
---|
2 | tst_init(); |
---|
3 | |
---|
4 | proc testfactors (list l, poly f) |
---|
5 | { |
---|
6 | poly g= 1; |
---|
7 | for (int i= 1; i <= size (l[1]); i++) |
---|
8 | { |
---|
9 | g= g*(l[1][i]^l[2][i]); |
---|
10 | } |
---|
11 | g == f; |
---|
12 | l; |
---|
13 | } |
---|
14 | |
---|
15 | //tr. 439 |
---|
16 | ring rQ=0,(u,v),dp; |
---|
17 | poly f = u*(3v+1)^2; |
---|
18 | list l= factorize(f); |
---|
19 | testfactors (l,f); |
---|
20 | |
---|
21 | //tr. 448 |
---|
22 | ring r = (0, ah, bh, sh0), (ch2, ch1, sh1, ch0), lp; |
---|
23 | poly p= ((bh^4)*ch0^4+(11232*ah^2*bh^2*sh0^2-11232*ah^2*bh^2-24960*ah*bh^3*sh0^2+24960*ah*bh^3+12168*bh^4*sh0^2-13736*bh^4)*ch0^2+(51609856*ah^4*sh0^4-103219712*ah^4*sh0^2+51609856*ah^4-179312640*ah^3*bh*sh0^4+358625280*ah^3*bh*sh0^2-179312640*ah^3*bh+243165312*ah^2*bh^2*sh0^4-475066112*ah^2*bh^2*sh0^2+231900800*ah^2*bh^2-151856640*ah*bh^3*sh0^4+284144640*ah*bh^3*sh0^2-132288000*ah*bh^3+37015056*bh^4*sh0^4-64490400*bh^4*sh0^2+28090000*bh^4))*((bh^4)*ch0^4+(11232*ah^2*bh^2*sh0^2-11232*ah^2*bh^2+24960*ah*bh^3*sh0^2-24960*ah*bh^3+12168*bh^4*sh0^2-13736*bh^4)*ch0^2+(51609856*ah^4*sh0^4-103219712*ah^4*sh0^2+51609856*ah^4+179312640*ah^3*bh*sh0^4-358625280*ah^3*bh*sh0^2+179312640*ah^3*bh+243165312*ah^2*bh^2*sh0^4-475066112*ah^2*bh^2*sh0^2+231900800*ah^2*bh^2+151856640*ah*bh^3*sh0^4-284144640*ah*bh^3*sh0^2+132288000*ah*bh^3+37015056*bh^4*sh0^4-64490400*bh^4*sh0^2+28090000*bh^4))*((bh^4)*ch0^4+(11232*ah^2*bh^2*sh0^2-11232*ah^2*bh^2-24320*ah*bh^3*sh0^2+24320*ah*bh^3+11552*bh^4*sh0^2-13120*bh^4)*ch0^2+(51609856*ah^4*sh0^4-103219712*ah^4*sh0^2+51609856*ah^4-174714880*ah^3*bh*sh0^4+349429760*ah^3*bh*sh0^2-174714880*ah^3*bh+230855168*ah^2*bh^2*sh0^4-450445824*ah^2*bh^2*sh0^2+219590656*ah^2*bh^2-140472320*ah*bh^3*sh0^4+261877760*ah*bh^3*sh0^2-121405440*ah*bh^3+33362176*bh^4*sh0^4-57667584*bh^4*sh0^2+24920064*bh^4)); |
---|
24 | list l= factorize (p); |
---|
25 | testfactors (l,p); |
---|
26 | |
---|
27 | tst_status(1);$ |
---|
Note: See
TracBrowser
for help on using the repository browser.