Macaulay2 » Documentation
Packages » NAGtypes :: polySystem
next | previous | forward | backward | up | index | toc

polySystem -- construct a polynomial system

Synopsis

Description

Constructs a PolySystem from the given polynomials.

i1 : R = CC[x,y]; S := polySystem {x^2+y^2-6, 2*x^2-y}

o2 = {-2} | x2+y2-6 |
     {-2} | 2x2-y   |

o2 : PolySystem
i3 : S = polySystem transpose matrix {{x^2+y^2-6, 2*x^2-y}}

o3 = {-2} | x2+y2-6 |
     {-2} | 2x2-y   |

o3 : PolySystem
i4 : T = polySystem S

o4 = T

o4 : PolySystem

See also

Ways to use polySystem :

For the programmer

The object polySystem is a method function.