All proofs
Project-declaredLean 4.24.0-rc1 · mathlib@aad26963

Inf occ proj

inf_occ_proj

Plain-language statement

Note that only the ⊇ direction needs the finiteness assumptions.

Exact Lean statement

theorem inf_occ_proj {I : Type*} [Finite I] {X : I → Type*} [h : ∀ i, Finite (X i)] (xs : Stream' (Π i, X i)) (i : I) :
    (· i) '' (InfOcc xs) = InfOcc ((· i) ∘ xs)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem inf_occ_proj {I : Type*} [Finite I] {X : I  Type*} [h :  i, Finite (X i)] (xs : Stream' (Π i, X i)) (i : I) :    (· i) '' (InfOcc xs) = InfOcc ((· i) ∘ xs) := by  ext x_i ; simp ; constructor  · rintro x, h_inf, rfl    obtain φ, h_mono, h_x := frequently_iff_strict_mono.mp h_inf    apply frequently_iff_strict_mono.mpr    aesop  · intro h_inf    let s := { x : Π i, X i | x i = x_i }    have h_inf' : ᶠ k in atTop, xs k  s := by exact h_inf    obtain x, h_x, h_inf'' := frequently_in_finite_set.mp h_inf'    aesop
Project
Automata Theory
License
Apache-2.0
Commit
f196548710ce
Source
AutomataTheory/Sequences/InfOcc.lean:86-97

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.24.0-rc1

Acc lang congr

acc_lang_congr

Plain-language statement

The language accepted by c.toDA with a unique accepting state s is exactly the equivalence class of s.

automata theoryformal languagescomputer science

Source project: Automata Theory

Person-level attribution pending.

View proof record
Project-declaredLean 4.24.0-rc1

Acc lang concat e

Automata.acc_lang_concat_e

Plain-language statement

The language of the concatenation NA that is accepted by M0's accepting states is the language accepted by M0.

automata theoryformal languagescomputer science

Source project: Automata Theory

Person-level attribution pending.

View proof record
Project-declaredLean 4.24.0-rc1

Acc lang concat ne

Automata.acc_lang_concat_ne

Plain-language statement

The language of the concatenation NA that is accepted by M1's accepting states is the language accepted by M0 concatenated with the language accepted by M1 minus the empty word.

automata theoryformal languagescomputer science

Source project: Automata Theory

Person-level attribution pending.

View proof record