Difference between revisions of "Package sagbi/SB.GetRing"
From ApCoCoAWiki
Andraschko (talk | contribs) (added see item) |
m (replaced <quotes> tags by real quotes) |
(One intermediate revision by one other user not shown) | |
(No difference)
|
Latest revision as of 13:21, 29 October 2020
This article is about a function from ApCoCoA-2. |
SB.GetRing
Returns the superring of a given subalgebra.
Syntax
SB.GetRing(S: TAGGED("$apcocoa/sagbi.Subalgebra")): RING
Description
This function returns the superring of a given subalgebra S, i.e. the ring R which S is a subalgebra of.
@param S A subalgebra
@return The superring of S
Example
Use R ::= QQ[x,y,z]; S := SB.Subalgebra(R,[x^2,y+z]); PrintLn SB.GetRing(S); -- RingWithID(1217, "QQ[x,y,z]")
See also
Package sagbi/SB.GetTruncSAGBI