Skip to main content

Tools for working with proofs in first-order logic and propositional logic

Project description

folutil

Tools for working with FOL and PL proofs, including converting proofs in markdown to PDF, checking proofs for correctness, and finding countermodels. Based on DeLancy's A Concise Introduction to Logic.

Installation

$ pip install folutil

or:

$ git clone https://github.com/maxcutlyp/folutil.git
$ cd folutil
$ pip install -e .

Tools

folutil convert

Convert a markdown file containing proofs to a PDF file and check the proofs for correctness.

$ folutil convert input.md output.pdf

Proofs should look like this:

| 1. (P -> Q)   premise
| 2. P          premise
|-
| 3. Q          modus ponens, 1, 2

Which will create a PDF containing the following:

Formatted proof

Proofs can contain nested subproofs:

| 1. (P -> Q)   premise
| 2. (Q -> R)   premise
|-
| | 3. P        assumption for conditional derivation
| |-
| | 4. Q        modus ponens, 1, 3
| | 5. R        modus ponens, 2, 4
| 6. (P -> R)   conditional derivation, 3-5

Formatted proof with subproof

The following special characters are converted to symbols in the PDF output:

From: To:
^
v
->
<->
~ ¬
\V
\E
'

When defining abstract terms, surround them with [ ] to put a box around them:

| 1. \Vx(Fx -> Gx)   premise  
| 2. \VxFx           premise
|-
| | [x']
| |-
| | 3. (Fx' -> Gx')  universal instantiation, 1
| | 4. Fx'           universal instantiation, 2
| | 5. Gx'           modus ponens, 3, 4
| 6. \VzGz           universal derivation, 3-5

Proof with abstract term

Before being converted, proofs will be checked for correctness. You can disable this behaviour with --no-check. It is imperfect - see known limitations below - but it will catch most errors.

The proof checker takes into account justifications. The only permitted justifications are those mentioned in DeLancy's book, particularly those listed in Chapter 16. This means that order matters! For example, the folowing would throw an error:

| 1. P          premise
| 2. (P -> Q)   premise
|-
| 3. Q          modus ponens, 1, 2

To correct it, you would need either to swap the first two lines or to change the justification on line 3 to modus ponens, 2, 1.

It should also be noted that parentheses are required for all binary connectives. For example, the following would throw an error on line 1:

| 1. P -> Q     premise
| 2. P          premise
|-
| 3. Q          modus ponens, 1, 2

Proof checker - known limitations

If you find any bugs in the proof checker other than the ones mentioned below, please raise an issue with an example of a proof that demonstrates the bug.

  1. Incorrect uses of symbolic terms in existential instantiations and universal instantiations are not caught. For example, the following is accepted, despite having an error on line 3 leading to an incorrect conclusion:
| 1. Fa             premise
| 2. \ExGx          premise
|-
| 3. Ga             existential instantiation, 2
| 4. (Fa ^ Ga)      adjunction, 1, 3
| 5. \Ex(Fx ^ Gx)   existential generalization, 4

Similarly with universal instantiation:

| 1. \VxFx   premise
|-
| 2. Fa      universal instantiation, 1

folutil countermodel

Find a countermodel for a given argument form. You will be dropped into an interactive prompt where you can enter expressions in the format described above, each separated by a comma. The final expression will be treated as the conclusion, and the rest will be treated as premises.

If all expressions are in propositional logic, a truth table will be drawn and any countermodels will be highlighted in red.

If any expressions are in first-order logic, a countermodel will be searched for by brute-force enumeration of all possible models with size up to len(constants) + len(quantifiers). If a countermodel is found, it will be printed in a human-readable format. If no countermodel is found, it does not necessarily mean that the argument form is valid - an infinite-sized countermodel or a countermodel larger than the search space may exist. This is because, for FOL, the problem of determining whether an argument form is valid is undecidable - but this tool can get most of the simple cases.

For example:

$ folutil countermodel
Entered countermodel repl. Press Ctrl+D to exit.
> \Vx(Fx -> Gx), \VxGx, \VxFx

Argument:
  ∀x(Fx → Gx)
  ∀xGx
  ⊢ ∀xFx

Searching for a countermodel...
Countermodel found:
  Fx0: False
  Gx0: True

This output means that in a domain containing a single element x0, where Fx0 is false and Gx0 is true, the premises will all be true but the conclusion will be false.

The format x# is used for additional elements in the domain which were not defined names in the input. For example:

Using folutil as a library

You may find some of the functionality of this package useful in your own code. Particularly, the folutil.expr module contains functions for parsing and manipulating logical expressions, and the folutil.proof module contains functions for parsing and checking proofs.

You can add new rules to the proof checker by inheriting from folutil.rules.InferenceRule or folutil.rules.SubproofRule and implementing cls.match() and self.check(). To register the new rule, it should also inherit folutil.rules.Final (you may not want to do this if you are writing an abstract base class for other rules, for example). For inference rules, you may find it easier to inherit from folutil.rules.SimpleRule (which implements check() for you based on a supplied cls.RULES) or folutil.rules.RegexRule (which implements match() for you based on a supplied cls.NAMES, on top of SimpleRule's check()). See the existing rules in folutil/rules.py for examples.

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

folutil-0.1.0.tar.gz (28.4 kB view details)

Uploaded Source

Built Distribution

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

folutil-0.1.0-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file folutil-0.1.0.tar.gz.

File metadata

  • Download URL: folutil-0.1.0.tar.gz
  • Upload date:
  • Size: 28.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for folutil-0.1.0.tar.gz
Algorithm Hash digest
SHA256 fed6dc5e9fffa1d17431f358ce8ebb886aec816f70d105fe925013c566f10cbd
MD5 3a04f711009ef89c66fc701b4c539e16
BLAKE2b-256 b74afdf966f455eb182a4c7c9754e10e17808c4c907e476b877a9934f0d293ba

See more details on using hashes here.

File details

Details for the file folutil-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: folutil-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for folutil-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bd8ce1e92b1b258129758414d4eb98540482b21d810e1d4bc7404d9bc2a2406e
MD5 6e10ea9609f8339de554147a496a49ea
BLAKE2b-256 37fcba736c006eb2a60988e75cc4fcb7697eec126f4facf6f97786b3a594ab42

See more details on using hashes here.

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