|  |  D.5.12.29 multiplylist Procedure from libraryresbinomial.lib(see  resbinomial_lib).
 
Example:Usage:
multiplylist(L,a); L list, a number
Return:
list of elements of type number, multiplication of L times a
 |  | LIB "resbinomial.lib";
ring r = 0,(x(1..3)),dp;
list L=1,2,3;
multiplylist(L,1/5);
==> [1]:
==> 1/5
==> [2]:
==> 2/5
==> [3]:
==> 3/5
 | 
 
 |