Lax314295.BuchiTheorem
Büchi's theorem: regular languages are the MSO-definable ones
concepts/Lax314295/BuchiTheorem.lean · lax-314295
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
In the paper
- page 118 of the paper of lax-157538, Transducers
Theorem
A language is regular if and only if it is definable in monadic second-order logic (Theorem C.4.1 of Transducers, Büchi, Elgot and Trakhtenbrot). The two implications are the separate statements and ; this statement is their conjunction.
Lean source view on GitHub
| 1 | import Lax314295.MSOLogic |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Büchi's theorem: regular languages are the MSO-definable ones |
| 6 | type: theorem |
| 7 | --- |
| 8 | A language is regular if and only if it is definable in |
| 9 | monadic second-order logic (Theorem C.4.1 of *Transducers*, Büchi, Elgot and |
| 10 | Trakhtenbrot). The two implications are the separate statements |
| 11 | `MSODefinableOfRegular` and `RegularOfMSODefinable`; this statement is their |
| 12 | conjunction. |
| 13 | |
| 14 | # Formalization notes |
| 15 | |
| 16 | The alphabet is assumed finite. |
| 17 | -/ |
| 18 | |
| 19 | namespace Lax314295.BuchiTheorem |
| 20 | |
| 21 | open Lax314295.MSOLogic |
| 22 | |
| 23 | /-- A language is regular if and only if it is mso-definable. -/ |
| 24 | axiom isRegular_iff_msoDefinable {A : Type} [Finite A] (L : Language A) : |
| 25 | L.IsRegular ↔ MSODefinable L |
| 26 | |
| 27 | end Lax314295.BuchiTheorem |
| 28 |
Formalization notes
The alphabet is assumed finite.
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