polyrith Tactic #
In this file, the polyrith
tactic is created. This tactic, which
works over Field
s, attempts to prove a multivariate polynomial target over said
field by using multivariable polynomial hypotheses/proof terms over the same field.
Used as is, the tactic makes use of those hypotheses in the local context that are
over the same field as the target. However, the user can also specify which hypotheses
from the local context to use, along with proof terms that might not already be in the
local context. Note: since this tactic uses SageMath via an API call done in Python,
it can only be used with a working internet connection, and with a local installation of Python.
Implementation Notes #
The tactic linear_combination
is often used to prove such goals by allowing the user to
specify a coefficient for each hypothesis. If the target polynomial can be written as a
linear combination of the hypotheses with the chosen coefficients, then the linear_combination
tactic succeeds. In other words, linear_combination
is a certificate checker, and it is left
to the user to find a collection of good coefficients. The polyrith
tactic automates this
process using the theory of Groebner bases.
Polyrith does this by first parsing the relevant hypotheses into a form that Python can understand.
It then calls a Python file that uses the SageMath API to compute the coefficients. These
coefficients are then sent back to Lean, which parses them into pexprs. The information is then
given to the linear_combination
tactic, which completes the process by checking the certificate.
In fact, polyrith
uses Sage to test for membership in the radical of the ideal.
This means it searches for a linear combination of hypotheses that add up to a power of the goal.
When this power is not 1, it uses the (exp := n)
feature of linear_combination
to report the
certificate.
polyrith
calls an external python script scripts/polyrith_sage.py
. Because this is not a Lean
file, changes to this script may not be noticed during Lean compilation if you have already
generated olean files. If you are modifying this python script, you likely know what you're doing;
remember to force recompilation of any files that call polyrith
.
TODO #
- Give Sage more information about the specific ring being used for the coefficients. For now,
we always use ℚ (or
QQ
in Sage). - Handle
•
terms. - Support local Sage installations.
References #
- See the book [Ideals, Varieties, and Algorithms][coxlittleOshea1997] by David Cox, John Little, and Donal O'Shea for the background theory on Groebner bases
- This code was heavily inspired by the code for the tactic
linarith
, which was written by Robert Y. Lewis, who advised me on this project as part of a Computer Science independent study at Brown University.
Poly Datatype #
A datatype representing the semantics of multivariable polynomials.
Each Poly
can be converted into a string.
- const: ℚ → Mathlib.Tactic.Polyrith.Poly
- var: ℕ → Mathlib.Tactic.Polyrith.Poly
- hyp: Lean.Term → Mathlib.Tactic.Polyrith.Poly
- add: Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly
- sub: Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly
- mul: Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly
- div: Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly
- pow: Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly
- neg: Mathlib.Tactic.Polyrith.Poly → Mathlib.Tactic.Polyrith.Poly
Instances For
Equations
- Mathlib.Tactic.Polyrith.instReprPoly = { reprPrec := Mathlib.Tactic.Polyrith.reprPoly✝ }
This converts a poly object into a string representing it. The string maintains the semantic structure of the poly object.
The output of this function must be valid Python syntax, and it assumes the variables varN
from
scripts/polyrith.py.
Equations
- (Mathlib.Tactic.Polyrith.Poly.const a).format = Std.Format.text (toString a)
- (Mathlib.Tactic.Polyrith.Poly.var a).format = Std.Format.text (toString "var" ++ toString a ++ toString "")
- (Mathlib.Tactic.Polyrith.Poly.hyp a).format = Std.Format.text (toString "hyp" ++ toString a ++ toString "")
- (a.add a_1).format = Std.Format.text (toString "(" ++ toString a.format ++ toString " + " ++ toString a_1.format ++ toString ")")
- (a.sub a_1).format = Std.Format.text (toString "(" ++ toString a.format ++ toString " - " ++ toString a_1.format ++ toString ")")
- (a.mul a_1).format = Std.Format.text (toString "(" ++ toString a.format ++ toString " * " ++ toString a_1.format ++ toString ")")
- (a.div a_1).format = Std.Format.text (toString "(" ++ toString a.format ++ toString " / " ++ toString a_1.format ++ toString ")")
- (a.pow a_1).format = Std.Format.text (toString "(" ++ toString a.format ++ toString " ^ " ++ toString a_1.format ++ toString ")")
- a.neg.format = Std.Format.text (toString "-" ++ toString a.format ++ toString "")
Instances For
Equations
- Mathlib.Tactic.Polyrith.instToStringPoly = { toString := fun (x : Mathlib.Tactic.Polyrith.Poly) => toString x.format }
Equations
- Mathlib.Tactic.Polyrith.instReprPoly_1 = { reprPrec := fun (p : Mathlib.Tactic.Polyrith.Poly) (x : ℕ) => p.format }
Equations
- Mathlib.Tactic.Polyrith.instInhabitedPoly = { default := Mathlib.Tactic.Polyrith.Poly.const 0 }
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Converts a Poly
expression into a Syntax
suitable as an input to linear_combination
.
Equations
- One or more equations did not get rendered due to their size.
- Mathlib.Tactic.Polyrith.Poly.toSyntax vars (Mathlib.Tactic.Polyrith.Poly.const a) = pure (Lean.quote `term a)
- Mathlib.Tactic.Polyrith.Poly.toSyntax vars (Mathlib.Tactic.Polyrith.Poly.var a) = pure vars[a]!
- Mathlib.Tactic.Polyrith.Poly.toSyntax vars (Mathlib.Tactic.Polyrith.Poly.hyp a) = pure a
Instances For
Reifies a ring expression of type α
as a Poly
.
The possible hypothesis sources for a polyrith proof.
- input: ℕ → Mathlib.Tactic.Polyrith.Source
- fvar: Lean.FVarId → Mathlib.Tactic.Polyrith.Source
fvar h
refers to hypothesish
from the local context.
Instances For
Parses a hypothesis and adds it to the out
list.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Constructs the list of arguments to pass to the external sage script polyrith_sage.py
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A JSON parser for ℚ
specific to the return value of polyrith_sage.py
.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Removes an initial -
sign from a polynomial with negative leading coefficient.
Equations
Instances For
Adds two polynomials, performing some simple simplifications for presentation like
a + -b = a - b
.
Instances For
Multiplies two polynomials, performing some simple simplifications for presentation like
1 * a = a
.
Instances For
Extracts the divisor c : ℕ
from a polynomial of the form 1/c * b
.
Equations
- (a.mul b).unDiv? = do let __discr ← a.unDiv? match __discr with | (a, r) => pure (a.mul' b, r)
- (Mathlib.Tactic.Polyrith.Poly.const i).unDiv? = if i.num = 1 ∧ i.den ≠ 1 then some (Mathlib.Tactic.Polyrith.Poly.const ↑i.num, i.den) else none
- p.neg.unDiv? = do let __discr ← p.unDiv? match __discr with | (p, r) => pure (p.neg, r)
- x.unDiv? = none
Instances For
Constructs a power expression v_i ^ j
, performing some simplifications in trivial cases.
Equations
Instances For
Constructs a sum from a monadic function supplying the monomials.
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.
A schema for the data reported by the Sage calculation
- coeffs : Array Mathlib.Tactic.Polyrith.Poly
The function call produces an array of polynomials parallel to the input list of hypotheses.
- power : ℕ
Sage produces an exponent (default 1) in the case where the hypothesess sum to a power of the goal.
Instances For
The result of a sage call in the success case.
The script returns a string containing python script to be sent to the remote server, when the tracing option is set.
The main result of the function call is an array of polynomials parallel to the input list of hypotheses and an exponent for the goal.
Instances For
The result of a sage call in the failure case.
Instances For
The result of a sage call.
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
This tactic calls python from the command line with the args in arg_list
.
The output printed to the console is parsed as a Json
.
It assumes that python3
is available on the path.
Equations
- One or more equations did not get rendered due to their size.
Instances For
This is the main body of the polyrith
tactic. It takes in the following inputs:
only : Bool
- This represents whether the user used the key word "only"hyps : Array Expr
- the hypotheses/proof terms selected by the usertraceOnly : Bool
- If enabled, the returned syntax will be.missing
First, the tactic converts the target into a Poly
, and finds out what type it
is an equality of. (It also fills up a list of Expr
s with its atoms). Then, it
collects all the relevant hypotheses/proof terms from the context, and from those
selected by the user, taking into account whether only
is true. (The list of atoms is
updated accordingly as well).
This information is used to create a list of args that get used in a call to
the appropriate python file that executes a grobner basis computation. The
output of this computation is a String
representing the certificate. This
string is parsed into a list of Poly
objects that are then converted into
Expr
s (using the updated list of atoms).
the names of the hypotheses, along with the corresponding coefficients are
given to linear_combination
. If that tactic succeeds, the user is prompted
to replace the call to polyrith
with the appropriate call to
linear_combination
.
Returns .error g
if this was a "dry run" attempt that does not actually invoke sage.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Try to prove the goal by ring
and fail with the given message otherwise.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Attempts to prove polynomial equality goals through polynomial arithmetic
on the hypotheses (and additional proof terms if the user specifies them).
It proves the goal by generating an appropriate call to the tactic
linear_combination
. If this call succeeds, the call to linear_combination
is suggested to the user.
polyrith
will use all relevant hypotheses in the local context.polyrith [t1, t2, t3]
will add proof terms t1, t2, t3 to the local context.polyrith only [h1, h2, h3, t1, t2, t3]
will use only local hypothesesh1
,h2
,h3
, and proofst1
,t2
,t3
. It will ignore the rest of the local context.
Notes:
- This tactic only works with a working internet connection, since it calls Sage using the SageCell web API at https://sagecell.sagemath.org/. Many thanks to the Sage team and organization for allowing this use.
- This tactic assumes that the user has
python3
installed and available on the path. (Test by opening a terminal and executingpython3 --version
.)
Examples:
example (x y : ℚ) (h1 : x*y + 2*x = 1) (h2 : x = y) :
x*y = -2*y + 1 := by
polyrith
-- Try this: linear_combination h1 - 2 * h2
example (x y z w : ℚ) (hzw : z = w) : x*z + 2*y*z = x*w + 2*y*w := by
polyrith
-- Try this: linear_combination (2 * y + x) * hzw
constant scary : ∀ a b : ℚ, a + b = 0
example (a b c d : ℚ) (h : a + b = 0) (h2: b + c = 0) : a + b + c + d = 0 := by
polyrith only [scary c d, h]
-- Try this: linear_combination scary c d + h
Equations
- One or more equations did not get rendered due to their size.