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
- Construction of the Natural Numbers
- Countability and Uncountability
- Effective Numberings, Reductions, Resources, and Randomness
- Finite Counting, Factorials and Binomial Coefficients
- Formal Languages, Encodings, and Decision Problems
- Linear Recurrences and Rational Generating Functions
- Nondeterministic Recursive Padding and Time Separation
- Relations, Functions, and Quotients
- Resource Bounds and Machine Invariance
- Robust Machine Models and Universal Computation
- The ZFC Axioms and the Basic Set Constructions
- Turing Machines, Configurations, and Computation
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
A nondeterministic polynomial/logarithmic time separation
Example
For every fixed integer , the class is a proper subclass of , using all-branch halting.
Facts & Assumptions
Given: A fixed integer .
For every exact clock there is a language in NTIME(T) outside every recursive a with and (Nondeterministic recursive-padding separation).
Verification
Build a deterministic clock by first scanning the whole input, making k unary tapes of length , 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 times the cost at depth , plus reset work. Induction gives an upper bound and the 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 therefore depends only on n, is an exact clock, satisfies , and is . This uses no equivalence between a value constructor and an exact clock.
Put and . These are total recursive integer functions: g(n) is the least positive integer j with , an effective search using integer powers. Since , for a fixed lower constant of one has 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.
F1 supplies a language in NTIME() outside NTIME(a). Constant-factor equivalence of and identifies their classes directly from the big-O definition. As , NTIME(g) is contained in NTIME(a), so that language also lies outside NTIME(g). Finally 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.
Shortest acceptance versus clocked all-branch halting
Example
Let N have distinct states . For each scanned symbol a, its initial options are and . At the only option writes the scanned symbol unchanged, moves right and stays in . 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.
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).
Cutoff scheduling gives a bounded all-branch machine for the cutoff language (Clocks, cutoffs, and finite unions preserve nondeterministic time bounds).
Verification
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 . On the other branch it reaches cell one in state after the first transition and cell t in that state after t transitions, for every . Hence this branch never halts and N has no finite all-branch running-time function. Its language is nevertheless all binary words.
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 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 . This is an explicit optimized instance of the inclusive product-clock construction of F2, with no copying needed.
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.