Determinization of tree automata

Lax842588.Determinization · concepts/Lax842588/Determinization.lean · lax-842588

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.

    Natural Language Statement

    Theorem

    Every bottom-up tree automaton with finitely many states has an equivalent deterministic tree automaton with finitely many states over the same ranked alphabet.

    Concept map
    3 concepts
    100%
    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A
    Evidence

    Each proof establishes this claim relative to its assumptions.

    Lean source view on GitHub

    1import Lax842588.RankedTree
    2import Lax842588.TreeAutomaton
    3
    4/-!
    5---
    6title: Determinization of tree automata
    7type: theorem
    8---
    9
    10Every bottom-up tree automaton with finitely many states has an equivalent
    11deterministic tree automaton with finitely many states over the same ranked
    12alphabet.
    13-/
    14
    15namespace Lax842588.Determinization
    16
    17open Lax842588.RankedTree
    18open Lax842588.TreeAutomaton
    19
    20universe u v
    21
    22axiom exists_deterministic_equivalent {A : RankedAlphabet.{u}} {Q : Type v}
    23 [Fintype Q] (M : Automaton A Q) :
    24 ∃ Q' : Type v, ∃ _ : Fintype Q', ∃ D : Automaton A Q',
    25 D.Deterministic ∧ D.language = M.language
    26
    27end Lax842588.Determinization
    28
    Show Proof
    Builds on
    Used by

    none

    From Mathlib

    none

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above.

    Loading discussion…