Alphabeta Math
Pipeline-generated
How statement and proof provenance work

The first chip identifies the source of the statement or construction; the second identifies the source of its local proof or verification.

  • Literature-sourced: the exact statement appears in a cited source; only wording and notation differ.
  • AI-adapted: a semantically identical restatement of literature-sourced material, modulo indexing, notation, and boundary cases adopted by the library.
  • AI-generated: a genuinely novel statement formulated by AI, with no source for the claim itself.

These labels describe origin, not correctness: citations and verification chips remain separate evidence.

Deduction, Soundness, Completeness, and Compactness: Examples and Counterexamples

1 · Prerequisites

2 · Summary

An eight-line formal proof derives a universal conclusion from two sentence premises, then computes its discharged implications. A two-element counterexample exposes the restriction on generalization after an open assumption. In the empty signature, adjoining constants and taking the complete theory of a singleton produces exactly one closed-term quotient class.

The natural-number tail inclusion distinguishes an isomorphism onto a substructure from an elementary inclusion. Finite inequalities are calculated with c=m+1, while compactness supplies a model with an element above every numeral. Finally, under the explicit consistency antecedent for first-order ZF and assuming Choice, countable and aleph-one-sized models witness failure of categoricity.

3 · Logical flowchart

4 · Definitions, theorems and proofs

None yet.

5 · Examples, counterexamples and false statements

ExampleConstruction: AI-adaptedVerification: AI-adaptedaudited 2026-09-09Open item page →

A two-premise formal deduction

Example

In the signature with unary relations P,Q, write A=x(P(x)Q(x)), B=xP(x) and C=xQ(x). From the two sentence assumptions A,B derive C, and then discharge either assumption.

Facts & Assumptions

Given: The displayed signature and sentences A,B,C.

[F1]

The sentence deduction theorem discharges an assumed sentence and permits MP in the reverse direction. (Deduction theorem for sentence assumptions)

[F2]

Universal instantiation, MP and generalization are rules of the fixed calculus. (Formal proofs from sentence theories)

Verification

1.1

The annotated derivation is: line 0: A (assumption); line 1: A(P(x)Q(x)) (universal instantiation); line 2: P(x)Q(x) (MP on 0,1); line 3: B (assumption); line 4: BP(x) (universal instantiation); line 5: P(x) (MP on 3,4); line 6: Q(x) (MP on 5,2); line 7: xQ(x)=C (generalization). Both substitutions are x/x, which is free-for, and both assumptions are sentences, so generalization has no free-assumption obstruction.

F2
2.1

Apply F1 to that eight-line proof to obtain {A}BC and, discharging A instead, {B}AC. Discharge the remaining sentence in the first proof to obtain A(BC). Thus the example displays a derivation and its actual discharged conclusions.

F1step 1.1
CounterexampleConstruction: AI-adaptedVerification: AI-generatedjudge pass (gpt-5.6-terra)audited 2026-09-09Open item page →

The deduction theorem needs its free-variable restriction

Statement

Unrestricted generalization followed by unrestricted discharge of an open assumption would produce the invalid formula P(x)xP(x). Thus those unrestricted rules cannot together be sound for truth under assignments.

Facts & Assumptions

Given: Work in ZF in the language with one unary predicate P.

[F1]

xϕ abbreviates ¬x¬ϕ and ϕψ abbreviates ¬(ϕ¬ψ). (Terms and formulas as finite set codes)

[F2]

Existential quantification ranges over all elements with the assignment updated; negation and conjunction use classical truth values. (Existence and uniqueness of set satisfaction)

Proof

1.1

Let the carrier be M={0,1} with 01, and interpret P by {0}. Set the assignment s(v)=0 for every variable v. Then M,sP(x). But s[x:=1] does not satisfy P(x), so it does satisfy ¬P(x). Consequently M,sx¬P(x) and M,s⊭xP(x) by F1. The implication P(x)xP(x) has true antecedent and false consequent at s, so its expanded negated conjunction is false.

F1F2
2.1

The purported unrestricted inference is explicit: start with the open assumption P(x); generalize the very variable x to obtain xP(x); discharge that assumption to obtain P(x)xP(x). Step 1.1 refutes this final formula in a nonempty set structure. Thus a deduction theorem used after generalization must retain the restriction on free variables of discharged assumptions; replacing the open assumption by a sentence removes this particular offending free variable. This counterexample establishes invalidity directly and does not assume any completeness theorem.

step 1.1
ExampleConstruction: AI-adaptedVerification: AI-adaptedjudge pass (gpt-5.6-terra)audited 2026-09-09Open item page →

The empty signature still needs a nonempty term domain

Example

In the empty nonlogical signature there are no closed terms. After adjoining constants c0,c1, with seed c0, there is a consistent complete deductively closed Henkin theory whose term quotient has exactly one element.

Facts & Assumptions

Given: No original constants, function symbols or relation symbols; equality is logical.

[F1]

A complete consistent Henkin theory with a seed has its well-defined closed-term quotient. (The closed-term quotient structure)

[F2]

Soundness implies that a theory with a model is consistent and every proved sentence is true there. (Soundness for arbitrary set signatures)

Verification

1.1

With no constants or functions, the term constructors give only variables, so none is closed. In the expanded signature each closed term is exactly one of the constants cn, because there are still no function symbols. Let A have carrier {0} and interpret every cn by 0. Put H=Th(A), the set of all expanded sentences true in this structure. Negation's truth clause makes exactly one of σ,¬σ belong to H. F2 makes H consistent; it also makes H deductively closed, since any sentence proved from H is true in A.

F2
2.1

For any existential sentence xϕ, if it is true in A, its only possible witness is 0=c0A, so ϕ[c0/x] is true. If it is false, the implication xϕϕ[c0/x] is true by the Boolean implication clause. Thus every such witness axiom belongs to H, and H is Henkin with seed c0. For all m,n the equation cm=cn is true since 0=0, so all and only the closed terms are in the one class [c0]={cn:n<ω}. The quotient of F1 is exactly {[c0]}. Its reduct is a singleton model of the original empty theory. This computation concerns this particular H, not every Henkin completion of the empty theory.

F1step 1.1
CounterexampleConstruction: AI-adaptedVerification: AI-adaptedjudge pass (gpt-5.6-terra)audited 2026-09-09Open item page →

Isomorphism does not make an inclusion elementary

Statement

The structures M=(ω,<) and A=(ω{0},<) in the language with one binary relation symbol are isomorphic, but the inclusion AM is not elementary.

Facts & Assumptions

Given: Work in ZF with the usual strict order of the natural numbers, beginning at zero.

[F1]

An elementary embedding preserves and reflects every formula on tuples; a relational substructure has a nonempty subset as carrier and restricted relations. (Elementary embeddings, substructures and chains)

[F2]

Existential satisfaction means that an element of the structure's carrier satisfies the matrix. (Existence and uniqueness of set satisfaction)

[F3]

Every nonzero natural is a successor. (Every nonzero natural number is a successor)

[F4]

For natural m,n,k, m<n iff m+k<n+k, and m<=n iff m+k<=n+k. (Order is compatible with addition)

[F5]

Exactly one of m<n, m=n, n<m holds for natural m,n. (Trichotomy of the order on N)

Proof

1.1

The positive tail is nonempty since 1A, and restricting < to A2 makes it a substructure: there are no constant or function symbols requiring further closure. Define f:ωA by f(n)=n+1. Each positive natural is uniquely a successor, so g:Aω defined by g(n+1)=n satisfies g(f(n))=n and f(g(m))=m. Also n<k iff n+1<k+1: adding one preserves strict natural-number order, and if nk then n+1k+1. Hence f is a bijection preserving and reflecting the sole relation and is an isomorphism. In particular f(0)=1; it is different from inclusion.

F1F3F4F5
2.1

At the parameter 1A, the formula y(y<x) holds in M because 0<1. It fails in A: every yA is a positive natural, so 1y and y<1 is false. Thus inclusion fails to preserve and reflect this formula's truth and is not elementary, despite the isomorphism constructed in step 1.1.

F1F2step 1.1
ExampleConstruction: AI-adaptedVerification: AI-adaptedjudge pass (gpt-5.6-terra)audited 2026-09-09Open item page →

Compactness produces a genuinely nonstandard element

Example

In the constructed countable model of Th(N), the new constant exceeds every numeral. Each finite list of these inequalities is realized in the standard structure, but their entire list has no standard realization.

Facts & Assumptions

Given: The language (0,S,<), its standard numerals and the model supplied below.

[F1]

There is an at most countable model of the complete natural-number theory with an element greater than every numeral, obtained from finitely satisfiable inequalities. (A countable nonstandard model has an element above all numerals)

Verification

1.1

For the fragment 0<c,1<c,,m<c use the standard expansion with c=m+1. Its inequalities evaluate to 0<m+1,1<m+1,,m<m+1, all true. For example the first three are 0<3, 1<3, 2<3 with c=3. With no inequalities use c=0. Any accompanying finitely many sentences of Th(N) remain true because the old structure has not changed.

F1
2.1

A putative standard interpretation c=k fails the inequality k<c, since its evaluation is k<k, which is false. Yet F1 supplies a new countable model and an element b satisfying every inequality. Its numeral k still denotes the k-fold successor of zero; b equals none of these values, because equality would turn the corresponding true inequality into b<b, forbidden by the theory's irreflexivity sentence.

F1step 1.1
False statementConstruction: AI-adaptedVerification: AI-adaptedjudge pass (gpt-5.6-terra)audited 2026-09-09Open item page →

FALSE: consistent first-order ZF has a unique model up to isomorphism

Statement

False conditional claim: If the coded first-order theory TZF is syntactically consistent, it has a unique set model up to isomorphism.

The refutation is conditional in ZFC: assuming that consistency antecedent, there are nonisomorphic models of cardinalities 0 and 1. No assertion of Con(ZF) is made.

Facts & Assumptions

Given: ZFC and the explicit antecedent that TZF is syntactically consistent.

[F1]

TZF is a set of sentences in the explicitly countable membership signature. (The set of first-order ZF axiom sentences)

[F2]

Every nonempty set model of this coded theory has infinite external carrier, without assuming transitivity or external well-foundedness. (Every set model of first-order ZF has infinitely many elements)

[F3]

A consistent theory in an explicitly countable signature has an at most countable nonempty model. (Completeness for explicitly countable set languages)

[F4]

In ZFC an infinite structure has an elementary extension of any cardinal at least its size and language size. (Upward Löwenheim–Skolem, including elementary extensions)

[A1]

AC is assumed for the upward cardinal-size result. (The Axiom of Choice)

Refutation

1.1

Under the stated consistency antecedent, F1 and F3 supply MTZF with carrier injecting into ω. F2 makes this carrier infinite. An infinite subset of ω can be enumerated in increasing order: after finitely many entries it has a least unused member, and each member is eventually reached since only finitely many natural numbers precede it. Composing this enumeration with the injection's inverse on its range gives a bijection ωM. Thus M=0.

F1F2F3
2.1

Under A1 apply F4 with κ=1: M is infinite, its size is 01, and the membership signature is finite. It gives NM of size 1, which satisfies every sentence of TZF by elementarity. An isomorphism MN would be a bijection, contradicting 01. These are the promised two witnesses under the antecedent. Neither the use of F2 nor the extension argument identifies either internal membership relation with external membership or asserts well-foundedness.

F4A1step 1.1

Sources