Weak Ascending Set (Wu's Definition) #
This file implements the theory and algorithm for Weak Ascending Set, which are central to Wu's Method. In this context, a "Weak Ascending Set" requires that the initial of every element is reduced with respect to preceding elements. This is a weaker condition than the standard reduction.
Consequently, the algorithm for computing a Weak Basic Set must ensure the triangular structure
(strict ascending main variables) explicitly,
by filtering candidates with B.mainVariable < p.mainVariable.
Main Instances #
AscendingSetTheory: Implements the theory usinginitial.reducedTo(weak reduction).HasBasicSet: Provides thebasicSetalgorithm that computes a minimal weak ascending set.
The weak ascending set theory uses weak reduction p.initial.reducedTo.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Computes the Weak Basic Set of a list of polynomials.
Difference from Standard:
The filter condition includes B.mainVariable < p.mainVariable.
This is because p.initial.reducedTo B does NOT imply B.mainVariable < p.mainVariable
(unlike strong reduction).
We must enforce the triangular structure explicitly.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
The Weak Basic Set algorithm satisfies the abstract HasBasicSet interface.
Equations
- One or more equations did not get rendered due to their size.