Difference between revisions of "ApCoCoA-1:BB.BBasis"
From ApCoCoAWiki
(Reviewed text) |
KHiddemann (talk | contribs) m |
||
Line 11: | Line 11: | ||
Use Q[x, y], DegLex; | Use Q[x, y], DegLex; | ||
I := Ideal([x^2, xy + y^2]); | I := Ideal([x^2, xy + y^2]); | ||
− | BB := | + | BB := BBasis(I); |
-- CoCoAServer: computing Cpu Time = 0 | -- CoCoAServer: computing Cpu Time = 0 | ||
------------------------------- | ------------------------------- |
Revision as of 23:02, 7 November 2007
BBasis
border basis of a zero dimensional ideal
Syntax
BBasis(I:IDEAL):LIST
Description
The function BBasis calls the ApCoCoAServer to compute the border basis of a zero dimensional ideal I. The input is a zero-dimensional ideal I. The output is a list of polynomials.
Example
Use Q[x, y], DegLex; I := Ideal([x^2, xy + y^2]); BB := BBasis(I); -- CoCoAServer: computing Cpu Time = 0 ------------------------------- BB; [xy + y^2, x^2, y^3, xy^2] -------------------------------