Skip to main content

A Python package for automated mathematical conjecturing

Project description

TxGraffiti: Automated Conjecture Generation in Python

PyPI version Documentation Status Build Status License


TxGraffiti is a Python library for building, evaluating, and discovering mathematical conjectures from structured data—particularly graph invariants and number-theoretic quantities.

Inspired by the original Graffiti program of Siemion Fajtlowicz, this package automates the creative mathematical process using a combination of symbolic logic, optimization, heuristics, and postprocessing.


Features

  • Work with properties (numeric features), predicates (boolean tests), and inequalities
  • Automatically generate conjectures using convex hull, LP, and ratio methods
  • Apply heuristics to reduce noise and prioritize meaningful conjectures
  • Compose logical hypotheses and filter conjectures by truth and significance
  • Use built-in datasets on graphs and integers, or plug in your own
  • Export results to Lean4, search for counterexamples, and iterate

Installation

Install from PyPI:

pip install txgraffiti

To install from source:

git clone https://github.com/RandyRDavila/TxGraffiti2.git
cd TxGraffiti2
python -m venv .venv
source .venv/bin/activate
pip install -e .[dev]

Example: Graph Theory Conjectures

Below is a minimal example of using txgraffiti on a built in dataset of precomputed values on simple, connected, and nontrivial graphs.

from txgraffiti.playground    import ConjecturePlayground # the main class for finding conjectures
from txgraffiti.generators    import convex_hull, linear_programming, ratios # methods for producing inequalities
from txgraffiti.heuristics    import morgan_acceptance, dalmatian_acceptance # heuristics to reduce number of statements accepted.
from txgraffiti.processing    import remove_duplicates, sort_by_touch_count # post processing for removal and sorting of conjectures.
from txgraffiti.example_data  import graph_data   # bundled toy dataset

# 2) Instantiate your playground
#    object_symbol will be used when you pretty-print "∀ G.connected: …"
ai = ConjecturePlayground(
    graph_data,
    object_symbol='G'
)

# 3) (Optional) define any custom predicates
regular = (ai.max_degree == ai.min_degree)
cubic   = regular & (ai.max_degree == 3)

# 4) Run discovery
ai.discover(
    methods         = [convex_hull, linear_programming, ratios],
    features        = ['order', 'matching_number', 'min_degree'],
    target          = 'independence_number',
    hypothesis      = [ai.connected & ai.bipartite,
                       ai.connected & regular],
    heuristics      = [morgan_acceptance, dalmatian_acceptance],
    post_processors = [remove_duplicates, sort_by_touch_count],
)

# 5) Print your top conjectures
for idx, conj in enumerate(ai.conjectures[:10], start=1):
    # wrap in ∀-notation for readability and conversion to Lean4
    formula = ai.forall(conj)
    print(f"Conjecture {idx}. {formula}\n")

The output of the above code should look something like the following:

Conjecture 1.  G: ((connected)  (bipartite))  (independence_number == ((-1 * matching_number) + order))

Conjecture 2.  G: ((connected)  (max_degree == min_degree)  (bipartite))  (independence_number == matching_number)

Example: Integer Dataset

Next, we conjecture on the built in integer dataset.

from txgraffiti.playground    import ConjecturePlayground
from txgraffiti.generators    import convex_hull, linear_programming, ratios
from txgraffiti.heuristics    import morgan_acceptance, dalmatian_acceptance
from txgraffiti.processing    import remove_duplicates, sort_by_touch_count
from txgraffiti.example_data  import integer_data   # bundled toy dataset

# 2) Instantiate your playground
#    object_symbol will be used when you pretty-print "∀ G.connected: …"
ai = ConjecturePlayground(
    integer_data,
    object_symbol='n.PositiveInteger'
)

ai.discover(
    methods         = [convex_hull, linear_programming, ratios],
    features        = ['sum_divisors', 'divisor_count', 'totient', 'prime_factor_count'],
    target          = 'collatz_steps',
    hypothesis      = [ai.is_square, ai.is_fibonacci, ai.is_power_of_two],
    heuristics      = [morgan_acceptance, dalmatian_acceptance],
    post_processors = [remove_duplicates, sort_by_touch_count],
)

# 5) Print your top conjectures
for idx, conj in enumerate(ai.conjectures[:10], start=1):
    # wrap in ∀-notation for readability
    formula = ai.forall(conj)
    print(f"Conjecture {idx}. {formula}\n")

The output of the above code should look something like the following:

Conjecture 1.  n.PositiveInteger: ((is_power_of_two)  (is_fibonacci))  (collatz_steps == prime_factor_count)

Conjecture 2.  n.PositiveInteger: (is_square)  (collatz_steps >= (((17/8 * divisor_count) + -17/8) + (-9/8 * prime_factor_count)))

Conjecture 3.  n.PositiveInteger: (is_square)  (collatz_steps <= (((((-17/10 * sum_divisors) + -391/8) + (1887/40 * divisor_count)) + (34/5 * totient)) + (-1847/40 * prime_factor_count)))

Conjecture 4.  n.PositiveInteger: (is_power_of_two)  (collatz_steps <= prime_factor_count)

Conjecture 5.  n.PositiveInteger: (is_square)  (collatz_steps >= prime_factor_count)

Conjecture 6.  n.PositiveInteger: (is_fibonacci)  (collatz_steps >= prime_factor_count)

Testing

Run the existing pytest suite:

pytest

Contributing

Contributions, ideas, and suggestions are welcome! To get involved:

  1. Fork the repository
  2. Create a new branch
  3. Submit a pull request

See CONTRIBUTING.md for details.


License

This project is licensed under the MIT License. See the LICENSE file for details.


Authors

  • Randy Davila, PhD – Lead developer

  • Jillian Eddy – Co-developer, logic design

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

txgraffiti-0.1.5.tar.gz (55.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

txgraffiti-0.1.5-py3-none-any.whl (67.6 kB view details)

Uploaded Python 3

File details

Details for the file txgraffiti-0.1.5.tar.gz.

File metadata

  • Download URL: txgraffiti-0.1.5.tar.gz
  • Upload date:
  • Size: 55.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for txgraffiti-0.1.5.tar.gz
Algorithm Hash digest
SHA256 3a3af4edd9f91ac55fc92316259e8f83dc47bdc19a51d63a7629d62e16ad0530
MD5 03b790c4349f277e265741b90775f09c
BLAKE2b-256 be04a54ef891930fff41c53d4c0b32660588ce93c073b3c6e40000b67c7af9e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for txgraffiti-0.1.5.tar.gz:

Publisher: release.yml on RandyRDavila/TxGraffiti2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file txgraffiti-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: txgraffiti-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 67.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for txgraffiti-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 3623ab81743b29f9fdc645029597602507e00402280eb9580d4906d713ff6f67
MD5 2dfd6584d0e5c4181ebeba4da23c7a90
BLAKE2b-256 324b53543fac750ac80ab478bc08f229fe071bcf1413c58797b247fdc29c68c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for txgraffiti-0.1.5-py3-none-any.whl:

Publisher: release.yml on RandyRDavila/TxGraffiti2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page