Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
PolynomialIdeals[IdealInfo] - return information about an ideal
Calling Sequence
Generators(J)
IdealInfo[Generators](J)
IdealInfo[Characteristic](J)
IdealInfo[Variables](J)
IdealInfo[Parameters](J)
IdealInfo[NonVariables](J)
IdealInfo[KnownGroebnerBases](J, X)
IdealInfo[DefaultMonomialOrder](J, T, X)
Parameters
J
-
polynomial ideal
T
(optional) type of monomial order
X
(optional) set of monomial order variables
Description
The IdealInfo subpackage is a collection of simple procedures that return information about polynomial ideals. They are intended to serve as a programmer interface to the PolynomialIdeal data structure. For compatibility with future releases, it is strongly recommended that you use these commands instead of accessing the operands of the data structure directly.
The Generators, Characteristic, and Variables commands return the generators, ring characteristic, and ring variables, respectively. The Generators command is also aliased as PolynomialIdeals[Generators].
The Parameters command returns the set of indeterminates appearing in the generators that are not ring variables. The NonVariables command returns the set of all indeterminates that appear inside a radical or RootOf.
The KnownGroebnerBases command outputs the set of monomial orders for which Groebner bases are stored. An optional second argument restricts the orders to a certain set of variables. To obtain the actual Groebner bases, use the Groebner[Basis] command.
The DefaultMonomialOrder command returns a monomial order for which a Groebner basis is stored or can be computed quickly. Optional arguments can specify both the type of monomial order (for example, 'plex') and the set of variables to use.
IdealInfo is a subpackage of the PolynomialIdeals package, and its various commands can be used in the form IdealInfo[command](arguments) only after executing with(PolynomialIdeals). However, they can always be accessed through the long form of the command using PolynomialIdeals[IdealInfo][command](arguments).
Examples
POLYNOMIALIDEAL(x^2+4*z,y^2+2*(3+4*w)^(1/2),characteristic = 5,variables = {x, y},known_groebner_bases = (table([])))
POLYNOMIALIDEAL(x^2+4*z,y^2+2*(3+4*w)^(1/2),characteristic = 5,variables = {x, y},known_groebner_bases = (table([(tdeg(y,x))=[[1, x^2, x^2+4*z], [1, y^2, y^2+2*(3+4*w)^(1/2)]],(tdeg(x,y))=[[1, y^2, y^2+2*(3+4*w)^(1/2)], [1, x^2, x^2+4*z]],(plex(x,y))=[[3, y^2, 3*y^2+(3+4*w)^(1/2)], [1, x^2, x^2+4*z]]])))
See Also
Groebner[Basis], lprint, MonomialOrders, PolynomialIdeals, PolynomialIdeals[PolynomialIdeal]
Download Help Document