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

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.

Exact Lean statement

theorem acc_lang_congr [Inhabited A] (s : c.toDA.State) :
    c.toDA.toNA.AcceptedLang {s} = c.EqvCls s

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem acc_lang_congr [Inhabited A] (s : c.toDA.State) :    c.toDA.toNA.AcceptedLang {s} = c.EqvCls s := by  ext al ; simp [Automata.NA.AcceptedLang, Automata.NA.FinAccept] ; constructor  · rintro n, as, ss, h_run, rfl, rfl    have h_ss_n := Automata.da_fin_run_unique h_run n (by omega)    simp [h_ss_n, automaton_congr_run, Congruence.EqvCls]  · rintro rfl    use al.length, al.padDefault ; simp [extract_padDefault]    use (c.toDA.DetRun al.padDefault) ; constructor    · exact Automata.da_fin_run_exists al.length al.padDefault    · simp [automaton_congr_run, extract_padDefault]
Project
Automata Theory
License
Apache-2.0
Commit
f196548710ce
Source
AutomataTheory/Automata/Congr.lean:51-61

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 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
Project-declaredLean 4.24.0-rc1

Acc lang inter

Automata.acc_lang_inter

Plain-language statement

The language accepted by the product NA is the intersection of the languages accepted by the component automata.

automata theoryformal languagescomputer science

Source project: Automata Theory

Person-level attribution pending.

View proof record