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.

3 results · all verified · 1 also independently AI-judged
Every result on this page is machine-checked by a proof checker and read in full and owner-audited; the judge is an additional, independent cross-model AI review of the proofs. The 2 not AI-judged were verified by owner audit (typically over a confirmed judge false positive), not failures.

Logarithmic Space, NL, and Reachability: Examples and Counterexamples

1 · Prerequisites

2 · Summary

These worked cases expose the virtual-output-tape convention, a concrete tableau-to-circuit compilation, and the existential-branch error in trying to complement nondeterminism by terminal-state swapping.

3 · Logical flowchart

4 · Definitions, theorems and proofs

None yet.

5 · Examples, counterexamples and false statements

ExampleConstruction: Literature-sourcedVerification: AI-generatedprecheck passaudited 2026-09-06Open item page →

Composing two logspace reductions through a virtual tape

Example

Work over Σ={0,1,#}. Let f(x)=0x#xrev. Let g(y) output the first and last symbols of y when yϵ, and set g(ϵ)=00. Both total functions are deterministic logspace transductions. To compute g(f(x)), a composed machine asks for virtual cells 1 and f(x) rather than storing the string f(x). Let A be the words starting with 1, let B be the nonempty words starting with 0 and ending with 1, and let C={01}. Then f reduces A to B and g reduces B to C.

Facts & Assumptions

Given: an input x of length n.

[L1]

A reduction output can be recomputed at a requested position in logarithmic work space (Logspace many-one reduction).

[L2]

If AlogB and BlogC, then AlogC (Logspace reductions compose).

Verification

technique · direct computation
1.1

The first requested virtual symbol is 0. Maintain a counter to find f(x)=2n+2 and recompute the final virtual symbol, which is x1 when n>0 and # when n=0. Forward and backward scans emit f, while two endpoint scans emit g; both use at most logarithmic work space and halt on every input.

L1construct
2.1

Thus the composed output is 0x1 for n>0 and 0# for n=0, exactly g(f(x)); it used only counters and a reread of x.

L1step 1.1cases
3.1

The word f(x) lies in B exactly when x starts with 1, and g(y)=01 exactly when y starts with 0 and ends with 1; the empty input maps to 00. Thus these are total logspace reductions AlogBlogC, and the explicit virtual computation illustrates their composition in [L2].

L2step 2.1algebra
ExampleConstruction: Literature-sourcedVerification: AI-generatedprecheck passaudited 2026-09-06Open item page →

A small computation tableau compiled to Circuit Value

Example

On inputs promised to have length two, consider a fixed machine that reads the two bits and accepts exactly 01. A circuit for this computation uses g1=NOT(x1), g2=AND(g1,x2), and output g2. For x=01, the values are g1=g2=1.

Facts & Assumptions

Given: the fixed machine on two-bit inputs and input x=01.

[L1]

Every fixed polynomial-time machine has a polynomial-size logspace-uniform circuit family deciding its acceptance (Polynomial-time computations have logspace-uniform circuit families).

[L2]

Circuit Value is P-complete under logspace many-one reductions (Circuit Value is P-complete).

Verification

technique · direct evaluation
1.1

On 01, g1=NOT(0)=1 and g2=AND(1,1)=1, agreeing with the machine's accepting final state.

givenalgebra
1.2

For every two-bit input, AND(NOT(x1),x2)=1 exactly when x1=0 and x2=1. Number the input nodes 1,2 and the NOT and AND nodes 3,4, with predecessor lists (1) and (3,2) and output node 4. This fixed circuit can be emitted in constant work space; it is a direct circuit for the promised computation, illustrating the existence assertion in [L1].

givenL1algebraconstruct
2.1

The pair C,01 is therefore a yes-instance of Circuit Value, illustrating the acceptance-preserving reduction in [L2].

L2step 1.2
CounterexampleConstruction: Literature-sourcedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

A nondeterministic branch tree where state swapping is not complementing

Statement refuted

State swapping complements a nondeterministic machine's language.

Facts & Assumptions

Given: a fixed input x and a nondeterministic machine which, from its start configuration on x, has exactly two choices: one moves directly to an accepting state and the other directly to a rejecting state.

[L1]

A nondeterministic machine accepts when at least one branch accepts (A read-only-input logarithmic-space machine).

[L2]

The state-swapping inference is the false statement refuted on the A page (NL equals coNL follows by swapping accepting and rejecting states).

Counterexample

technique · direct branch analysis
1.1

The original accepting leaf makes the original machine accept x by [L1].

L1given
2.1

After labels swap, the original rejecting leaf is accepting, so [L1] makes the swapped machine accept x as well.

L1step 1.1
3.1

Since x is in the original language, it is not in its complement; step 2.1 therefore contradicts the proposed complementing behavior, as asserted in [L2].

L2step 2.1

Sources