source: git/Tst/Old/jacobi.tst @ e706ff

spielwiese
Last change on this file since e706ff was 37cd955, checked in by Hans Schoenemann <hannes@…>, 14 years ago
pagelength removed git-svn-id: file:///usr/local/Singular/svn/trunk@13172 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 747 bytes
Line 
1//
2// test script for jacob command
3//
4ring r1 = 32003,(x,y,z),(c,ds);
5r1;
6LIB "lib0";
7"-------------------------------";
8int a=12;
9int b=10;
10int c=4;
11int d=1;
12poly s1=x^a+y^b+z^c+x^(c+3)*y^(d+3)+z^(a-3)*y^(d-1);
13poly s2=6x5+3y6+8z6;
14poly s3=12xyz3+2y3z6;
15ideal i1=jacob(s1);
16i1;
17"-------------------------";
18ideal i2=jacob(s2);
19i2;
20"--------------------------";
21ideal i3=jacob(s3);
22i3;
23"-------------------------";
24matrix m1[3][3]=jacob(i1);
25pmat(m1);
26"---------------------------";
27ideal i10=std(i1);
28i10;
29degree(i10);
30"--------------------------";
31ideal i20=std(i2);
32i20;
33degree(i20);
34"---------------------------";
35ideal i30=std(i3);
36i30;
37degree(i30);
38listvar(all);
39kill r1;
40LIB "tst.lib";tst_status(1);$;
41// jacob von ideal - matrix mit pmat
Note: See TracBrowser for help on using the repository browser.