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


sm1.mul

sm1.mul(f,g,v|proc=p)
:: sm1サーバ に f かける gv 上の微分作用素環でやってくれるように頼む.
return
多項式またはリスト
p
f, g
多項式またはリスト
v
リスト
[277] sm1.mul(dx,x,[x]);
x*dx+1
[278] sm1.mul([x,y],[1,2],[x,y]);
x+2*y
[279] sm1.mul([[1,2],[3,4]],[[x,y],[1,2]],[x,y]);
[[x+2,y+4],[3*x+4,3*y+8]]


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