Go to the first, previous, next, last section, table of contents.


sm1.slope

sm1.slope(ii,v,f_filtration,v_filtration|proc=p)
:: Returns the slopes of differential equations ii.
return
List
p
Number
ii
List (equations)
v
List (variables)
f_filtration
List (weight vector)
v_filtration
List (weight vector)

Algorithm: see "A.Assi, F.J.Castro-Jimenez and J.M.Granger, How to calculate the slopes of a D-module, Compositio Math, 104, 1-17, 1996" Note that the signs of the slopes are negative, but the absolute values of the slopes are returned.


[284] A= sm1.gkz([  [[1,2,3]],  [-3] ]);

[285] sm1.slope(A[0],A[1],[0,0,0,1,1,1],[0,0,-1,0,0,1]);

[286] A2 = sm1.gkz([ [[1,1,1,0],[2,-3,1,-3]], [1,0]]);
     (* This is an interesting example given by Laura Matusevich, 
        June 9, 2001 *)

[287] sm1.slope(A2[0],A2[1],[0,0,0,0,1,1,1,1],[0,0,0,-1,0,0,0,1]);

Reference
sm.gb


Go to the first, previous, next, last section, table of contents.