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.

Nondeterministic Recursive Padding and Time Separation: Examples

1 · Prerequisites

2 · Summary

The polynomial/logarithmic example constructs an actual nested-loop clock and verifies the shifted little-o estimate by an explicit inequality. It proves both containment and a separating language under the all-branch convention. The second example lists a one-step accepting branch and a divergent branch, then computes both branches of its exact-clock cutoff, including the last-round and zero-cutoff cases.

3 · Logical flowchart

4 · Definitions, theorems and proofs

None yet.

5 · Examples, counterexamples and false statements

ExampleConstruction: AI-adaptedVerification: AI-generatedjudge pass (gpt-5.6-terra)audited 2026-09-13Open item page →

A nondeterministic polynomial/logarithmic time separation

Example

For every fixed integer k2, the class NTIME((n+1)k/log2(n+2)) is a proper subclass of NTIME((n+1)k), using all-branch halting.

Facts & Assumptions

Given: A fixed integer k2.

[F1]

For every exact clock Tn there is a language in NTIME(T) outside every recursive a with an and a(n+1)=o(T(n)) (Nondeterministic recursive-padding separation).

Verification

1.1

Build a deterministic clock by first scanning the whole input, making k unary tapes of length n+1, and then executing k nested loops over those tapes. Each loop tape has endpoint marks and its head is the corresponding loop index; after a complete sweep return it to its left mark. The innermost loop makes at least one transition per index tuple. At depth j, a complete traversal including resets has cost at most a fixed multiple of n+1 times the cost at depth j1, plus O(n+1) reset work. Induction gives an upper bound Ck(n+1)k and the (n+1)k tuples give a positive lower bound of that order. Replace bookkeeping stays by right/left excursions if necessary. Make both input bits follow the same scan instructions, and halt after all loops. Its actual runtime Tk(n) therefore depends only on n, is an exact clock, satisfies Tk(n)n, and is Θ((n+1)k). This uses no equivalence between a value constructor and an exact clock.

givenconstruct
2.1

Put g(n)=(n+1)k/log2(n+2) and a(n)=max(n,g(n)). These are total recursive integer functions: g(n) is the least positive integer j with (n+2)j2(n+1)k, an effective search using integer powers. Since g(n)(n+1)k/log2(n+2)+1, for a fixed lower constant ck>0 of Tk one has a(n+1)Tk(n)n+1ck(n+1)k+(n+2)kck(n+1)klog2(n+3)+1ck(n+1)k0. The first term tends to zero because k is at least two; the ratio of the k-th powers in the second is bounded while its logarithm diverges. Thus a satisfies F1.

F1step 1.1
3.1

F1 supplies a language in NTIME(Tk) outside NTIME(a). Constant-factor equivalence of Tk and (n+1)k identifies their classes directly from the big-O definition. As ga, NTIME(g) is contained in NTIME(a), so that language also lies outside NTIME(g). Finally g(n)(n+1)k+1=O((n+1)k) gives the inclusion NTIME(g) in the upper class by the same bound comparison. Combining inclusion and the witness makes it proper. At n=0, g(0)=a(0)=1; finite initial lengths do not disturb any class comparison. The construction is finite for each k and uses no AC.

F1step 1.1step 2.1
ExampleConstruction: AI-generatedVerification: AI-generatedjudge pass (gpt-5.6-terra)audited 2026-09-13Open item page →

Shortest acceptance versus clocked all-branch halting

Example

Let N have distinct states q0,qacc,qrej,q. For each scanned symbol a, its initial options are (qacc,a,L) and (q,a,R). At q the only option writes the scanned symbol unchanged, moves right and stays in q. Thus on every binary input it has a one-step accepting branch and a diverging branch. A one-transition exact clock converts its cutoff to an all-branch-halting acceptor.

Facts & Assumptions

Given: The displayed finite machine, on any input x including the empty word.

[F1]

Shortest acceptance takes a minimum and may coexist with divergence; an inclusive exact-clock cutoff preserves precisely the timely accepting branches (Nondeterministic acceptance time and exact clocks).

[F2]

Cutoff scheduling gives a bounded all-branch machine for the cutoff language (Clocks, cutoffs, and finite unions preserve nondeterministic time bounds).

Verification

1.1

On either a bit or the blank scanned for empty x, N's first option enters the accepting state in one transition. Its start state is not accepting, so no length-zero acceptance exists and τN(x)=1. On the other branch it reaches cell one in state q after the first transition and cell t in that state after t transitions, for every t1. Hence this branch never halts and N has no finite all-branch running-time function. Its language is nevertheless all binary words.

F1given
2.1

Take a clock whose first transition on every symbol enters its halt state, so T(n)=1 exactly. Here its transition can be incorporated directly into the finite control: make the same two initial choices as N, but replace the q target by rejection. The resulting machine C has precisely two one-step branches, one accepting and one rejecting, on every input. Thus every branch halts after one step and L(C)={x:τN(x)1}={0,1}. This is an explicit optimized instance of the inclusive product-clock construction of F2, with no copying needed.

F1F2step 1.1
3.1

If one tests the cutoff zero instead, its language is empty because the initial state is nonaccepting. A decider can recognize it by a single rejecting transition, but it is not a zero-transition physical exact clock. At cutoff one, testing acceptance before expiry matters: rejecting immediately at the clock's last transition without testing N's simultaneous acceptance would incorrectly remove all inputs. C keeps that acceptance, as its two explicit branches show. This separates raw shortest and worst-branch times while verifying the correct clocked language and endpoints without AC.

F1step 1.1step 2.1

Sources