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.

12 results · all verified · 10 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

1 · Prerequisites

2 · Summary

This page fixes the uncharged read-only-input convention for logarithmic work space, develops configuration-graph reductions and directed reachability, and then proves the two central closure results. It finishes with uniform circuit compilation and Circuit Value, keeping the open question L=NL separate from the proved equality NL=coNL.

3 · Logical flowchart

4 · Definitions, theorems and proofs

DefinitionDefinition: Literature-sourcedProof: Not applicablejudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

A read-only-input logarithmic-space machine

Definition

A read-only-input machine has one input tape containing x, whose head may move in either direction but whose cells are never changed, and finitely many read/write work tapes. Its work space on inputs of length n is the number of visited work-tape cells, not the input cells. A deterministic machine decides when it halts on every input; a nondeterministic machine decides when every branch halts and some branch accepts exactly the inputs in the language.

It is a logspace machine when its work space is O(log2(n+2)). The n+2 convention also covers the empty input. This is a work-space convention, distinct from the all-tapes convention in The classes DTIME, NTIME, DSPACE, and NSPACE.

DefinitionDefinition: Literature-sourcedProof: Not applicablejudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

The classes L and NL

Definition

For a function s, let NWORKSPACE(s(n)) denote the languages decided by nondeterministic read-only-input machines using O(s(n)) work cells. Thus L:=DWORKSPACE(log2(n+2)),NL:=NWORKSPACE(log2(n+2)). Here DWORKSPACE is exactly the local uncharged-input class of Read-only-input work-space classes and constructibility. The names L and NL below never silently mean the library's all-tapes DSPACE and NSPACE.

LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Logspace machines have polynomially many configurations

Statement

For a fixed read-only-input logspace machine M, there is a polynomial pM such that on every input x of length n, M has at most pM(n) reachable configurations. Consequently, any accepting branch has an accepting branch with no repeated configuration and hence with fewer than pM(n) transitions.

Facts & Assumptions

Given: a fixed read-only-input logspace machine M and an input x of length n.

[L1]

A logspace machine charges only O(log2(n+2)) visited work cells and has a read-only input tape (A read-only-input logarithmic-space machine).

Proof

technique · direct counting
1.1

By [L1], a configuration is specified by a state from a fixed finite set, one of n+2 input-head positions, the contents of O(log(n+2)) work cells over fixed finite alphabets, and finitely many work-head positions among those cells.

L1construct
2.1

The product of these choices is (n+2)O(1); enlarge its fixed constant to obtain a polynomial pM(n) bounding the reachable configurations.

step 1.1algebra
3.1

If an accepting branch repeats a configuration, delete the segment between its two occurrences; the identical later configuration has the same possible continuation. Repeating this deletion yields a simple accepting path with fewer than pM(n) transitions.

step 2.1cases
DefinitionDefinition: Literature-sourcedProof: Not applicablejudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Logspace many-one reduction

Definition

For languages A,BΣ, write AlogB if a deterministic read-only-input logspace transducer computes a total function f with xAf(x)B. The transducer writes f(x) once on a write-only output stream. Equivalently, it may recompute a requested output position f(x)j in logarithmic work space. Since the internal configuration has only polynomially many states and the output stream is not readable, every halting such transducer has polynomial output length: otherwise a repeated internal configuration would repeat forever.

LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Logspace reductions compose

Statement

If AlogB and BlogC, then AlogC. In particular, L and NL are closed under inverse logspace many-one reductions: if AlogB and B is in the indicated class, then A is too.

Facts & Assumptions

Given: logspace reductions f:AB and g:BC.

[L1]

A logspace reduction has polynomial output length and permits bitwise recomputation of its write-only output (Logspace many-one reduction).

Proof

technique · virtual-tape simulation
1.1

Simulate the transducer for g on a virtual input tape containing f(x), retaining its work tape and its virtual input-head index j.

givenconstruct
2.1

Whenever the simulation reads virtual cell j, rerun the transducer for f on (x,j) and supply its jth output bit; [L1] makes this a logarithmic-work-space subroutine.

L1step 1.1construct
3.1

Since f(x) is polynomial in x, both j and the simulated work tape use O(logx) space. The streamed output is g(f(x)), so xA iff it lies in C.

L1step 2.1algebra
4.1

To decide A from a deterministic or nondeterministic decider for B, run that decider on the same virtual input f(x) rather than the transducer for g. The virtual-input access above preserves its deterministic or nondeterministic choice and its logarithmic work bound, proving the stated L or NL closure.

step 2.1step 3.1cases
DefinitionDefinition: Literature-sourcedProof: Not applicablejudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Directed s-t connectivity

Definition

Directed s-t connectivity (STCON) is the language of encodings G,s,t in which G=(V,E) is a finite directed graph and there is a directed path from s to t. Vertices are numbered 1,,V in the encoding; malformed encodings are outside STCON. The word path has the directed meaning fixed in Directed walks, trails, paths and cycles, and strong connectivity.

TheoremStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Directed s-t connectivity is NL-complete

Statement

STCON is NL-complete under log.

Facts & Assumptions

Given: an encoded digraph G,s,t, or a language ANL.

[L1]

A fixed logspace machine has polynomially many configurations, and accepting branches may be made simple (Logspace machines have polynomially many configurations).

[L2]

A logspace many-one reduction is a deterministic bitwise polynomial-output transduction (Logspace many-one reduction).

Proof

technique · membership and configuration-graph reduction
1.1

To decide STCON nondeterministically, retain a current vertex and a counter through V1 moves, guessing an outgoing edge at each move and accepting on reaching t. A path exists exactly when one exists with at most V1 moves.

givenconstruct
1.2

For ANL, fix its machine M. On input x, make vertices from the valid configurations of M on x, add a fresh target tx, use legal transitions as arcs, and add an arc from every accepting configuration to tx.

L1construct
2.1

Both stored vertex labels and the counter have O(logV) bits, so step 1.1 puts STCON in NL.

step 1.1algebra
2.2

By [L1], there are polynomially many configuration names of O(logx) bits. A transducer enumerates candidate pairs, checks locally whether one is a legal successor of the other, and streams the encoded graph, start configuration, and tx using O(logx) work space.

L1L2step 1.2construct
3.1

A directed path from the start to tx is exactly an accepting computation branch of M on x. Thus the transducer is an AlogSTCON reduction, which with step 2.1 proves NL-completeness.

step 2.1step 2.2
TheoremStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Savitch simulation into read-only-input deterministic work space

Statement

Every language decided by a fixed nondeterministic read-only-input machine using O(log(n+2)) work cells is decided by a deterministic read-only-input machine using O(log2(n+2)) work cells.

Facts & Assumptions

Given: a fixed nondeterministic read-only-input logspace decider M.

[L1]

The local work-space convention charges work cells but not read-only input cells (Read-only-input work-space classes and constructibility).

[L2]

The number of configurations reachable from the start configuration is polynomial in n (Logspace machines have polynomially many configurations).

Proof

technique · midpoint reachability recursion
1.1

On input x, encode a configuration by its state, input-head position, work contents, and work-head positions. There are only polynomially many syntactically possible encodings, by the same finite product count used in [L2]. Choose r=O(log(n+2)) with 2r at least that number.

L2construct
2.1

Define R(C,D,0) to test whether C=D or CD is one legal transition, and define R(C,D,j+1) by enumerating every configuration E and accepting exactly if both R(C,E,j) and R(E,D,j) hold. Induction on j shows that it decides reachability by a path of length at most 2j.

step 1.1induction
3.1

A recursion frame stores C,D,E and j, each using O(log(n+2)) work bits; there are r+1=O(log(n+2)) frames. Adjacency is recomputed from M and the read-only input, never stored as a graph.

L1step 2.1algebra
4.1

Enumerate accepting configurations D and run R(Cstart,D,r). By step 2.1 this accepts exactly when M has an accepting branch, and by step 3.1 it uses O(log2(n+2)) charged work space.

step 2.1step 3.1
TheoremStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

NL is contained in read-only-input DWORKSPACE(log-squared n)

Statement

NLDWORKSPACE(log2(n+2)). This is a read-only-input, work-cell conclusion; it does not assert the all-tapes bound DSPACE(log2n) or the equality L=NL.

Facts & Assumptions

Given: a language ANL.

[L1]

NL is the class decided by nondeterministic read-only-input logspace machines (The classes L and NL).

[L2]

Such a machine has a deterministic read-only-input O(log2(n+2))-work-space simulation (Savitch simulation into read-only-input deterministic work space).

Proof

technique · direct specialization
1.1

By [L1], choose a nondeterministic read-only-input logspace decider for A.

L1choose
2.1

Apply [L2] to this fixed decider. Its simulator is deterministic and uses O(log2(n+2)) charged work cells.

L2step 1.1
3.1

The target class is exactly the local DWORKSPACE(log2(n+2)) convention, so A belongs to it. Since A was arbitrary, the displayed inclusion follows.

step 2.1
DefinitionDefinition: Literature-sourcedProof: Not applicablejudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Inductive counts of reachable vertices

Definition

For an N-vertex digraph G, source s, and integer i0, set Ci(G,s):={vV(G):there is an s-to-v directed walk of length at most i},ci:=Ci(G,s). Thus C0={s} and CiCi+1. Since a reachable vertex has a simple path from s, CN1 is the full reachable set.

LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

A reachable-vertex count is verifiable in NL

Statement

Given the true count c=Ci(G,s), there is a nondeterministic O(logN)-work-space verifier that accepts a certificate exactly when vCi(G,s). The certificate lists all c reachable vertices in strictly increasing order, each with a walk from s of length at most i.

Facts & Assumptions

Given: an N-vertex digraph, s, iN1, the true count c=Ci(G,s), and a vertex v.

[L1]

Ci consists of precisely the vertices with an s-to-vertex walk of length at most i (Inductive counts of reachable vertices).

Proof

technique · positive certificate and counting
1.1

Guess, in strictly increasing vertex-label order, c distinct vertices different from v, together with for each an s-to-that-vertex walk of length at most i. Check each edge and count the listed vertices.

givenconstruct
2.1

The current vertex, previous path vertex, path-length counter, list counter, and labels use O(logN) space. Thus this is an NL verifier.

step 1.1algebra
3.1

If it accepts, [L1] puts all c listed vertices in Ci. The given equality c=Ci makes this list exhaust Ci, so vCi. Conversely, when vCi, list every member of Ci with a witnessing bounded walk; the list has exactly the given length c, and the verifier accepts.

L1step 1.1cases
LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Nonreachability has an inductive counting certificate

Statement

There is a nondeterministic O(logN)-work-space verifier which, on G,s,t, accepts exactly when t is not reachable from s. It uses a polynomial-length, read-once certificate carrying the successive counts c0,,cN1.

Facts & Assumptions

Given: an N-vertex digraph G with source s and target t.

[L1]

ci=Ci, C0={s}, and CN1 is the full set of vertices reachable from s (Inductive counts of reachable vertices).

[L2]

Given the true value of Ci, nonmembership of a specified vertex in Ci has a nondeterministic logspace certificate that lists the complete reachable layer (A reachable-vertex count is verifiable in NL).

Proof

technique · induction
1.1

Start with c0=1=C0.

L1base
1.2

Assume inductively that the supplied ci1 equals Ci1. Process every vertex u: either verify a positive path of length at most i to u, or, for every w with w=u or (w,u)E, invoke the [L2] certificate for wCi1. Count the vertices in the first case and require the supplied total ci.

L1L2ihconstruct
2.1

The second case is sound: if uCi, either uCi1 (the w=u test fails) or the final edge of a length-at-most-i walk has a predecessor in Ci1, contradicting one of its [L2] certificates. Conversely, every uCi is outside Ci1 and has no in-neighbor in Ci1, while every uCi has a positive bounded path. Hence an accepted layer has ci=Ci.

L1step 1.2ih
3.1

Induction from step 1.1 makes every accepted layer correct. Each nested certificate is checked by counters, vertex labels, and one bounded path at a time, so the verifier retains only O(logN) work space and reads a polynomial-size certificate once. At layer N1, accept precisely when t is absent from the certified list; by [L1] this is equivalent to nonreachability.

L1step 2.1discharge-induction
TheoremStatement: Literature-sourcedProof: AI-generatedprecheck passaudited 2026-09-06Open item page →

Immerman-Szelepcsényi theorem: NL equals coNL

Statement

NL=coNL. Moreover, in the same read-only-input model, if s is work-space constructible and log2(n+2)=O(s(n)), then NWORKSPACE(s(n))=coNWORKSPACE(s(n)).

Facts & Assumptions

Given: a fixed nondeterministic decider M for ANWORKSPACE(s), where s has the stated constructibility and logarithmic floor.

[L2]

The inductive-counting algorithm certifies nonreachability in an N-vertex digraph using O(logN) work space and a polynomial-length read-once certificate (Nonreachability has an inductive counting certificate).

Proof

technique · inductive counting on an implicit configuration graph
1.1

Fix an integer a bounding M's visited work cells by as(n) for all sufficiently large n; handle the finitely many exceptional input lengths separately. Run the work-space constructor for s(n) on a virtual unary input of length n; an address on the actual endmarked input provides this virtual input in O(log(n+2)) space. A configuration records the fixed finite control, work symbols, work-head positions, and the endmarked input-head position. Since M is fixed, choose a fixed constant d so that every configuration within the cap has a padded binary description of length K=d(s(n)+log2(n+2)+1)=O(s(n)).

givenconstruct
2.1

Use all 2K binary strings as candidate vertex names and add a fresh target t. Invalid configuration names are isolated. Between valid names put an edge exactly for a legal transition of M on the actual input x within the work cap, and add an edge from each accepting configuration to t. The source is the actual initial configuration. Enumerating names, validating them, checking a transition, and recognizing an accepting state all take O(K) space by direct scans of the fixed-length records and of x. Thus a path to t exists exactly when M accepts x. This constructs a well-defined finite graph for every input string x, without querying validity of any externally supplied STCON encoding.

step 1.1construct
3.1

Run the algorithm of [L2] on this implicit graph, with N=2K+1. Its implementation only enumerates vertices and requests adjacency tests while checking bounded paths and successive reachable counts. Supply each such test by step 2.1. The previous layer's verified count, the current layer count, the finitely many vertex/loop indices, and one bounded path at a time have O(logN)=O(K) bits. The certificate checks are sequential nested loops of fixed depth, not a recursion stack through all layers. All loop and path lengths are bounded by polynomials in N, and each guessed certificate field has bounded length, so every branch halts. Nondeterministic choices generate the read-once certificate as needed; it is never stored. Soundness and completeness of [L2] now give an O(s(n))-space decider for A.

L2step 2.1construct
4.1

This proves closure of NWORKSPACE(s) under complement. By the definition of the co-class, closure implies equality with its co-class, since complementing twice recovers the original language. Finally s(n)=log2(n+2) is work-space constructible: count the unary input in binary and compute the bit length, treating a power of two separately for the ceiling. This uses O(log(n+2)) work cells. Its class is exactly NL under The classes L and NL, so the same equality specializes to NL=coNL.

step 3.1algebra
CorollaryStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Read-only-input nondeterministic work space is closed under complement above logarithmic space

Statement

If s is work-space constructible and log2(n+2)=O(s(n)), then NWORKSPACE(s(n))=coNWORKSPACE(s(n)). This is the read-only-input work-space notation introduced on this page, not an unqualified assertion about the library's all-tapes NSPACE convention.

Facts & Assumptions

Given: a work-space-constructible s satisfying log2(n+2)=O(s(n)).

[L1]

The general read-only-input NWORKSPACE(s) complement equality is established by the Immerman--Szelepcsényi theorem (Immerman-Szelepcsényi theorem: NL equals coNL).

Proof

technique · direct extraction
1.1

The hypotheses here are exactly the hypotheses of the general clause in [L1].

L1given
2.1

Applying that clause gives NWORKSPACE(s(n))=coNWORKSPACE(s(n)), which is closure under complement.

L1step 1.1
DefinitionDefinition: Literature-sourcedProof: Not applicableaudited 2026-09-06Open item page →

A logspace-uniform Boolean circuit family

Definition

A Boolean circuit is a finite directed acyclic graph with numbered input nodes, constant nodes, and gates from the fixed basis {AND,OR,NOT}; AND and OR gates have two predecessors, NOT gates have one, and constants have values zero or one. Its output is one designated node. A family (Cn)n0 has exactly n input nodes labeled x1,,xn in Cn and polynomially many nodes as a function of n+2. The family is logspace-uniform when a deterministic read-only-input logspace transducer, on input 1n and a query with binary node indices of length O(log(n+2)), halts and answers the size, gate-type (including input labels and constant values), and predecessor queries for the topologically numbered encoding of Cn, and answers which numbered gate is the designated output. In particular, it can stream that polynomial-length encoding without storing it.

DefinitionDefinition: Literature-sourcedProof: Not applicablejudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

P-completeness under logspace reductions

Definition

Write P=k1DTIME(nk). A language B is P-complete under logspace reductions when BP and every AP satisfies AlogB. The direction is important: a reduction maps an arbitrary P language to the proposed complete problem.

LemmaStatement: Literature-sourcedProof: AI-generatedprecheck passaudited 2026-09-06Open item page →

Polynomial-time computations have logspace-uniform circuit families

Statement

For every fixed deterministic Turing machine M that halts in polynomial time, there is a polynomial-size logspace-uniform Boolean circuit family (Cn) such that Cn(x)=1 exactly when M accepts x{0,1}n.

Facts & Assumptions

Given: a fixed deterministic multitape machine M and a fixed integer k1 such that B(n)=(n+2)k+k bounds its running time on every input of length n.

[L2]

Logspace uniformity requires logspace procedures for the indexed circuit's size, gate types, predecessor queries, and designated output (A logspace-uniform Boolean circuit family).

Proof

technique · computation tableau
1.1

For 0tB=B(n), encode each configuration by one-hot state bits, head-position bits Ht,r,j for each tape r, and symbol bits Xt,r,j,a. Use positions 0jn+B+1; no head can leave this interval within B steps. There are exactly n input nodes labeled x1,,xn; the initial row uses these, their negations, and constants for the input, blank cells, initial heads, and start state.

givenconstruct
2.1

For each tape and symbol, compute the scanned-symbol bit Rt,r,a=j(Ht,r,jXt,r,j,a) with a binary OR chain. The fixed transition table applied to the state and these scanned-symbol bits gives constant-size Boolean formulas for the next state, write symbols, and movement directions. At a halting state define this circuit update to leave the entire configuration unchanged. This is an extension of the tableau update only; no transition from a halted machine is assumed.

step 1.1construct
3.1

At each cell, retain its old symbol unless its head bit is one, in which case use the computed write symbol. A new head bit is the OR of the old adjacent head bits conjoined with their computed movement directions; in a halted configuration keep its old head bit. At position zero also retain a head commanded to move left, as required by the right-infinite tape convention. Treat other out-of-range head bits as zero. These are constant-size formulas once the scanned-symbol bits are available. Induction on t gives the genuine configuration until halting and its unchanged copy thereafter. Therefore the accepting-state bit at time B equals one exactly when M accepts x.

step 2.1induction
4.1

Each layer uses O(n+B) gates: the tape count, alphabet, and state set are fixed, each scanned-symbol OR chain is linear, and each cell update has constant size. There are B layers, so the size is O(B(n+B)), hence polynomial. All formulas use binary AND/OR and unary NOT. Designate the final accepting-state node as output.

step 3.1algebra
5.1

Number nodes by initial-row order and then by time layer, with scanned-symbol chains before transition formulas and cell updates. Pad fixed formula blocks with unused constant nodes if necessary so that each block length is a fixed constant or fixed multiple of n+B. A node is addressed by its layer, block, position, and constant-size formula slot; all are O(log(n+2))-bit integers. Fixed-degree arithmetic computes block offsets, adjacent positions, OR-chain predecessors, and the initial input label from these indices. Counting n on unary input and evaluating the fixed polynomial B(n) also use logarithmic space. These procedures answer SIZE, TYPE, predecessor, and output queries and emit the topological encoding. Thus [L2] gives logspace uniformity, including n=0 where the initial row has only constants.

L2step 4.1construct
TheoremStatement: Literature-sourcedProof: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

Circuit Value is P-complete

Statement

Let CIRCUIT-VALUE contain pairs C,x where C is a valid topologically ordered single-output Boolean circuit and its output on x is one. Then CIRCUIT-VALUE is P-complete under logspace reductions.

Facts & Assumptions

Given: a circuit-value instance, or an arbitrary language AP.

[L1]

A P-completeness proof needs membership in P and a logspace reduction from every language in P (P-completeness under logspace reductions).

[L2]

Every fixed deterministic P machine has a polynomial-size logspace-uniform computation-circuit family (Polynomial-time computations have logspace-uniform circuit families).

Proof

technique · evaluation and uniform compilation
1.1

Evaluate a valid circuit in its topological order, retaining its gate values in an array and applying the fixed basis operation at each gate. This takes time polynomial in the encoding length, so CIRCUIT-VALUE is in P.

givenconstruct
1.2

For AP, choose its fixed P decider M and the family (Cn) supplied by [L2]. On x of length n, output Cn,x by streaming the uniform circuit description and then copying x.

L2construct
2.1

The transducer keeps only an O(logn)-bit circuit-query index and its output position; [L2] answers each requested gate query in logspace. Thus xCx,x is a logspace reduction, and it preserves acceptance.

L2step 1.2algebra
3.1

Step 1.1 gives membership and step 2.1 gives hardness for arbitrary AP; [L1] therefore gives P-completeness.

L1step 1.1step 2.1
False statementConstruction: Literature-sourcedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-09-06Open item page →

NL equals coNL follows by swapping accepting and rejecting states

Statement

False statement. For a nondeterministic machine, swapping accepting and rejecting states recognizes the complement language; therefore it proves NL=coNL.

Facts & Assumptions

Given: nondeterministic acceptance means that at least one branch accepts.

[L1]

NL uses the existential accepting-branch convention for nondeterministic read-only-input machines (The classes L and NL).

[L2]

The actual equality NL=coNL follows from inductive counting, not from a terminal-label change (Immerman-Szelepcsényi theorem: NL equals coNL).

Refutation

technique · direct branch analysis
1.1

Suppose a machine has on one input both an accepting branch and a rejecting branch. By [L1] it accepts that input.

L1given
2.1

After terminal labels are swapped, the former rejecting branch is accepting, so the swapped machine also accepts the same input. The complement language instead rejects it.

L1step 1.1contradiction
3.1

Hence state swapping expresses “there exists a rejecting branch,” not “there is no accepting branch.” [L2] identifies the additional inductive-counting argument that genuinely proves the class equality.

L2step 2.1

5 · Examples, counterexamples and false statements

None yet.

Sources