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


dp_initial_term

dp_initial_term(f | v=vv, order=oo)
:: dp_initial_term は与えられた weight に対する先頭項の和を戻す.
return
分散表現多項式または分散表現多項式のリスト.
f
分散表現多項式か分散表現多項式のリスト.
vv
リスト (変数のリスト)
oo
リスト (順序をあらわすリスト)
[1220] F=<<2,0,0>>+<<1,1,0>>+<<0,0,1>>;
(1)*<<2,0,0>>+(1)*<<1,1,0>>+(1)*<<0,0,1>>
[1220] dp_initial_term(F | order=[[1,1,1]]);
[ 1 1 1 ]
[ R R R ]
(1)*<<2,0,0>>+(1)*<<1,1,0>>
[1221] dp_initial_term(F | v=[x,y,z], order=[[x,1]]);
[ 1 0 0 ]
[ R R R ]
(1)*<<2,0,0>>
参照
section dp_gr_main, section dp_weyl_gr_main, section dp_order, @xref{dp_hm}

ChangeLog


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