| LIB "chern.lib";
ring r = 0, (a(1..3)), dp;
// assume a(1), a(2), a(3) are the Chern roots of a vector bundle
list l=a(1..3);
// the Chern roots of the dual vector bundle
print( ChernRootsDual(l) );
==> [1]:
==> -a(1)
==> [2]:
==> -a(2)
==> [3]:
==> -a(3)
|