Theorems · Theorem · computer science
DFA.pumping_lemma
∀ {α : Type u} {σ : Type v} (M : DFA α σ) [inst : Fintype σ] {x : List α},
x ∈ M.accepts →
Fintype.card σ ≤ x.length →
∃ a b c, x = a ++ b ++ c ∧ a.length + b.length ≤ Fintype.card σ ∧ b ≠ [] ∧ {a} * KStar.kstar {b} * {c} ≤ M.accepts- Defined in
- Mathlib.Computability.DFA
- Cited by
- 1 results in Mathlib
- Foundations
- Depth 83 from the axioms · uses propext, Classical.choice, Quot.sound
- Assumes
- Fintype
Around this declaration
Dashed lines are statement dependencies; solid lines are citations in proofs.
Cites15
Mathlib declarations this one mentions in its statement or cites explicitly in its proof. Plumbing is filtered out.
- Fintypestatement and proof · cited by 7,736
- Fintype.cardstatement and proof · cited by 1,386
- Set.mem_singleton_iffproof · cited by 172
- Languagestatement · cited by 125
- DFAstatement and proof · cited by 58
- KStar.kstarstatement and proof · cited by 49
- DFA.startproof · cited by 18
- DFA.acceptsstatement and proof · cited by 18
- DFA.evalFromproof · cited by 18
- DFA.acceptproof · cited by 17
- DFA.mem_acceptsproof · cited by 4
- DFA.evalFrom_of_appendproof · cited by 4
Cited by1
Results whose statement or proof uses this declaration.
- NFA.pumping_lemmaproof · cited by 1