A System node can describe the following things:
- system of equations
2x + y = 10, x - y = 3
- system of inequalities
x >= 2 - y, y > 5x
A System can be collapsed, e.g.
2x = y + 3 = z - 10
a < x < b
Certain Systems can be interpreted as bounds, e.g. a < x < b could also be a Bounds node:
{
type: "Bounds",
variable: { type: Identifier, name: "x" },
min: { type: Identifier, name: "a" },
max: { type: Identifier, name: "b" },
}
A
Systemnode can describe the following things:2x + y = 10, x - y = 3x >= 2 - y, y > 5xA
Systemcan becollapsed, e.g.2x = y + 3 = z - 10a < x < bCertain
Systems can be interpreted as bounds, e.g.a < x < bcould also be aBoundsnode: