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

Lax314295.KTypesAperiodicity

k-types are aperiodic

concepts/Lax314295/KTypesAperiodicity.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

    For every string ww and every kk, the kk-types of the powers w,w2,w3,w, w^2, w^3, \ldots eventually stabilise (Lemma C.4.15 of Transducers, aperiodicity): all sufficiently large powers of a string have the same kk-type. This is what makes the automaton of kk-types aperiodic.

    Lean source view on GitHub

    1import Lax765601.Aperiodicity
    2import Lax314295.KTypes
    3
    4/-!
    5---
    6title: k-types are aperiodic
    7type: theorem
    8---
    9For every string ww and every kk, the kk-types of the powers
    10w,w2,w3,w, w^2, w^3, \ldots eventually stabilise (Lemma C.4.15 of *Transducers*,
    11aperiodicity): all sufficiently large powers of a string have the same
    12kk-type. This is what makes the automaton of kk-types aperiodic.
    13
    14# Formalization notes
    15
    16`npow w n` is `wⁿ`, from `Lax765601.Aperiodicity`. Stated over any alphabet.
    17-/
    18
    19namespace Lax314295.KTypesAperiodicity
    20
    21open Lax765601.Aperiodicity Lax314295.KTypes
    22
    23/-- The `k`-types of the powers of a string eventually stabilise. -/
    24axiom exists_tp_npow_eq {A : Type} (k : ℕ) (w : List A) :
    25 ∃ N : ℕ, ∀ n ≥ N, tp k (npow w n) = tp k (npow w N)
    26
    27end Lax314295.KTypesAperiodicity
    28
    Show Proof

    Formalization notes

    npowwnnpow w n is wnwⁿ, from Lax765601.AperiodicityLax765601.Aperiodicity. Stated over any alphabet.

    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…