Add ProofConcept package: certificates and proofs of algebraic facts#38
Open
antonleykin wants to merge 2 commits into
Open
Add ProofConcept package: certificates and proofs of algebraic facts#38antonleykin wants to merge 2 commits into
antonleykin wants to merge 2 commits into
Conversation
A proof-of-concept Macaulay2 package modeling algebraic facts as logical
statements and their proofs as independently re-verifiable data:
* Statement: an atomic algebraic predicate (inIdeal, generates,
isGroebner) or a compound formula built with and/or/not;
* Implication: A ==> B;
* Certificate: an atomic proof — a witness checked cheaply and
independently (e.g. H with H*G = f for ideal membership, monomial
divisibility, or a nonzero normal form for non-membership);
* Proof: a tree of inference steps combining certificates by logical
rules (and-introduction, or-introduction) and the derived Buchberger
rule.
verify recomputes and re-checks the witness in each leaf and the side
conditions of each rule. Includes documentation and TEST blocks for the
three motivating cases (ideal membership, monomial-ideal membership,
Buchberger's criterion) and the logic layer.
https://claude.ai/code/session_01VSJyxL59SKiQ4ZPoAyKj8C
Companion document capturing the conversation that produced the package: the original request, the follow-up that turned proofs into a logical tree, the Macaulay2 findings that shaped the design, and the decisions made. https://claude.ai/code/session_01VSJyxL59SKiQ4ZPoAyKj8C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A proof-of-concept Macaulay2 package modeling algebraic facts as logical
statements and their proofs as independently re-verifiable data:
isGroebner) or a compound formula built with and/or/not;
independently (e.g. H with H*G = f for ideal membership, monomial
divisibility, or a nonzero normal form for non-membership);
rules (and-introduction, or-introduction) and the derived Buchberger
rule.
verify recomputes and re-checks the witness in each leaf and the side
conditions of each rule. Includes documentation and TEST blocks for the
three motivating cases (ideal membership, monomial-ideal membership,
Buchberger's criterion) and the logic layer.
https://claude.ai/code/session_01VSJyxL59SKiQ4ZPoAyKj8C