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

Lax52.MSOAutomataEquivalence

Büchi-Elgot-Trakhtenbrot theorem for finite words

concepts/Lax52/MSOAutomataEquivalence.lean · lax-52

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.

    Theorem

    Over a finite alphabet, a language of finite words is recognizable by a nondeterministic finite automaton if and only if it is definable by a monadic second-order sentence in the ordered word structure with one unary predicate for each letter.

    Lean source view on GitHub

    1import Lax52.NFAToMSO
    2import Lax52.MSOToNFA
    3
    4/-!
    5---
    6title: Büchi-Elgot-Trakhtenbrot theorem for finite words
    7type: theorem
    8---
    9
    10Over a finite alphabet, a language of finite words is recognizable by a
    11nondeterministic finite automaton if and only if it is definable by a monadic
    12second-order sentence in the ordered word structure with one unary predicate
    13for each letter.
    14-/
    15
    16namespace Lax52.MSOAutomataEquivalence
    17
    18open Lax52.MSOSyntax
    19open Lax52.WordStructure
    20open Lax52.NFARecognizable
    21
    22universe u
    23
    24axiom nfaRecognizable_iff_msoDefinable {Sigma : Type u} [Fintype Sigma]
    25 (L : _root_.Language Sigma) :
    26 NFARecognizable L ↔
    27 ∃ phi : MSOSyntax.Sentence (wordLanguage Sigma), L = sentenceLanguage phi
    28
    29end Lax52.MSOAutomataEquivalence
    30
    Show Proof

    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…