Propositional Calculus (GEB)

The Propositional Calculus as presented in Gödel, Escher, Bach by Douglas Hofstadter (Ch. VII). A formal system with no axioms, using a fantasy rule as its central device — essentially a natural deduction system disguised as a typographical game.

1. Alphabet

2. Formation Rules (Syntax)

A well-formed formula (WFF) is defined recursively:

  1. Atoms: P,Q,R (and any primed version) are atoms, and every atom is a WFF.
  2. Negation: If x is a WFF, then x is a WFF.
  3. Conjunction: If x and y are WFFs, then <xy> is a WFF.
  4. Disjunction: If x and y are WFFs, then <xy> is a WFF.
  5. Implication: If x and y are WFFs, then <xy> is a WFF.

3. Axioms

There are none. The system has no axioms — all theorems are generated by the inference rules alone.

4. Rules of Inference

Joining Rule

From x and y (both theorems), deduce <xy>.
Analogous to -introduction.

Separation Rule

From <xy> (a theorem), deduce x and y separately.
Analogous to -elimination.

Double-Tilde Rule

∼∼x and x are interchangeable — you may replace one by the other anywhere.
Analogous to double-negation elimination/introduction.

Fantasy Rule (the "regla fantasiosa")

You may start a fantasy (subproof) by assuming any WFF as a premise. Within the fantasy, you apply all the rules (including other fantasy rules). When the fantasy is closed, you obtain <xy>, where x is the premise and y is any theorem derived inside.

This is how implication is introduced — analogous to -introduction or the Deduction Theorem.

Carry-Over Rule

Any theorem proved outside a fantasy may be carried into the fantasy and used freely.

Rule of Detachment (Modus Ponens)

From <xy> and x, deduce y.
Analogous to -elimination.

5. Key properties

6. Comparison with MIU

Feature MIU-system Propositional Calculus
Axioms One axiom: MI None
Inference rules 4 rules (string manipulation) 6 rules (including fantasy)
Semantics None Truth tables (external)
Decidability Decidable (?) Decidable
Power Trivial Captures propositional logic

References