Lax52.NFARecognizable
Recognition by a finite nondeterministic automaton
concepts/Lax52/NFARecognizable.lean · lax-52
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
A language is NFA-recognizable when it is accepted by a mathlib nondeterministic automaton whose state type is finite.
Lean source view on GitHub
| 1 | import Mathlib.Computability.NFA |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Recognition by a finite nondeterministic automaton |
| 6 | type: definition |
| 7 | --- |
| 8 | |
| 9 | A language is NFA-recognizable when it is accepted by a mathlib |
| 10 | nondeterministic automaton whose state type is finite. |
| 11 | -/ |
| 12 | |
| 13 | namespace Lax52.NFARecognizable |
| 14 | |
| 15 | universe u |
| 16 | |
| 17 | /-- Recognition by an NFA with a finite state type. -/ |
| 18 | def NFARecognizable {Sigma : Type u} (L : _root_.Language Sigma) : Prop := |
| 19 | ∃ Q : Type, ∃ _ : Fintype Q, ∃ M : NFA Sigma Q, M.accepts = L |
| 20 | |
| 21 | end Lax52.NFARecognizable |
| 22 |
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments