Alphabeta Math
ExampleConstruction: AI-generatedVerification: AI-generatedprecheck passjudge pass (gpt-5.6-terra)audited 2026-08-30
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.

Computing δ(q,uv) as δ(δ(q,u),v)

Example

Consider the DFA over {a,b} with states q0,q1,q2,q3, where:

  • q0 means "no nonempty suffix of the input is a prefix of abb",
  • q1 means "the current suffix is a",
  • q2 means "the current suffix is ab",
  • q3 means "the current suffix is abb".

Take q0 as the start state and F={q3} as the accepting set.

Its transitions are

δ(q0,a)=q1, δ(q0,b)=q0, δ(q1,a)=q1, δ(q1,b)=q2, δ(q2,a)=q1, δ(q2,b)=q3, δ(q3,a)=q1, δ(q3,b)=q0.

Take u=ab and v=abb.

Then δ(q0,uv)=δ(q0,ababb)=q3=δ(δ(q0,ab),abb).

Facts & Assumptions

Given: The DFA above with start state q0, accepting set F={q3}, and the words u=ab and v=abb.

[L1]

Extended transition respects concatenation: δ(p,uv)=δ(δ(p,u),v), by Extended DFA transition respects concatenation.

[L2]

Acceptance is determined by the final state reached after reading the whole word, by Acceptance of a word by a DFA and the recognized language.

Verification

technique · direct
1.1

Compute directly that δ(q0,ab)=q2, because q0aq1bq2.

given
1.2

Reading the whole concatenated word at once gives q0aq1bq2aq1bq2bq3, so δ(q0,uv)=q3 as well.

given
2.1

Continuing from q2, we get q2aq1bq2bq3, so δ(q2,abb)=q3. Therefore δ(δ(q0,u),v)=q3.

givenstep 1.1
3.1

The two calculations agree, exactly as [L1] predicts. In particular the word ababb lands in the accepting state q3, consistent with [L2].

L1L2step 2.1step 1.2

Depends on

Used by

Nothing in the library uses this result yet.

Dependency tree · two levels

5 results within two dependency steps of this one, each drawn at its shortest distance from it. An arrow runs from a result to what uses it, so the chart reads left to right and ends at this result, which carries a heavier outline. Every node is a link to that result. Click elsewhere on the chart to enlarge it.

Sources