|
D.15.8.8 data
Procedure from library resbin.lib (see resbin_lib).
- Usage:
- data(K,k,n); K any ideal, k integer (!=0), n integer (!=0)
- Compute:
- Construcs a list with the coefficients and exponents of one ideal
- Return:
- lists of coefficients and exponents of K
Example:
| LIB "resbin.lib";
ring r = 0,(x(1..3)),dp;
ideal J=x(1)^4*x(2)^2, x(1)^2-x(3)^3;
data(J,2,3);
==> [1]:
==> [1]:
==> 1
==> [2]:
==> [1]:
==> -1
==> [2]:
==> 1
==> [1]:
==> [1]:
==> [1]:
==> 4
==> [2]:
==> 2
==> [3]:
==> 0
==> [2]:
==> [1]:
==> [1]:
==> 0
==> [2]:
==> 0
==> [3]:
==> 3
==> [2]:
==> [1]:
==> 2
==> [2]:
==> 0
==> [3]:
==> 0
|
|