Draft — mutable and not usable as a dependency; its citation marks the draft state.

Lax314295.BuchiTheorem

Büchi's theorem: regular languages are the MSO-definable ones

concepts/Lax314295/BuchiTheorem.lean · lax-314295

proven

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Concept map

    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A

    Evidence

    Each proof establishes this claim relative to its assumptions.

    In the paper

    Theorem

    A language LAL \subseteq A^* 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 MSODefinableOfRegularMSODefinableOfRegular and RegularOfMSODefinableRegularOfMSODefinable; this statement is their conjunction.

    Lean source view on GitHub

    1import Lax314295.MSOLogic
    2
    3/-!
    4---
    5title: Büchi's theorem: regular languages are the MSO-definable ones
    6type: theorem
    7---
    8A language LAL \subseteq A^* is regular if and only if it is definable in
    9monadic second-order logic (Theorem C.4.1 of *Transducers*, Büchi, Elgot and
    10Trakhtenbrot). The two implications are the separate statements
    11`MSODefinableOfRegular` and `RegularOfMSODefinable`; this statement is their
    12conjunction.
    13
    14# Formalization notes
    15
    16The alphabet is assumed finite.
    17-/
    18
    19namespace Lax314295.BuchiTheorem
    20
    21open Lax314295.MSOLogic
    22
    23/-- A language is regular if and only if it is mso-definable. -/
    24axiom isRegular_iff_msoDefinable {A : Type} [Finite A] (L : Language A) :
    25 L.IsRegular ↔ MSODefinable L
    26
    27end Lax314295.BuchiTheorem
    28
    Show Proof

    Formalization notes

    The alphabet is assumed finite.

    Used by

    none

    From Mathlib

    none

    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

    Loading discussion…