Da acc omega lang
Automata.da_acc_omega_lang
Plain-language statement
The ω-language accepted by a deterministic Buchi automaton is the ω-limit of the language accepted by the same automaton.
Exact Lean statement
theorem da_acc_omega_lang :
M.toNA.AcceptedOmegaLang acc = (M.toNA.AcceptedLang acc)↗ωFormal artifact
Lean source
theorem da_acc_omega_lang : M.toNA.AcceptedOmegaLang acc = (M.toNA.AcceptedLang acc)↗ω := by ext as ; constructor · rintro ⟨ss, h_run, h_inf⟩ obtain ⟨φ, h_mono, h_acc⟩ := frequently_iff_strict_mono.mp h_inf apply frequently_iff_strict_mono.mpr use φ ; simp [h_mono] ; intro m use (φ m), as ; constructor <;> [skip ; rfl] use ss ; simp [h_acc] exact na_InfRun_iff_FinRun.mp h_run (φ m) · simp only [instOmegaLimit, OmegaLimit, frequently_iff_strict_mono, mem_setOf_eq] rintro ⟨φ, h_mono, h_acc⟩ use (M.DetRun as) ; constructor · apply da_inf_run_exists apply frequently_iff_strict_mono.mpr use φ ; simp [h_mono] ; intro m obtain ⟨n, as', ⟨ss, h_run', h_acc'⟩, h_as'⟩ := h_acc m have h_as' := extract_eq_extract h_as' ; simp at h_as' obtain ⟨rfl, h_as'⟩ := h_as' have h_run : M.toNA.FinRun (φ m) as ss := na_FinRun_modulo (M := M.toNA) (n := φ m) (as := as') (as' := as) (ss := ss) (ss' := ss) (by grind) (by grind) h_run' have := da_fin_run_unique h_run (φ m) (by omega) simp_all- Project
- Automata Theory
- License
- Apache-2.0
- Commit
- f196548710ce
- Source
- AutomataTheory/Automata/Det.lean:174-196
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
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.
Source project: Automata Theory
Person-level attribution pending.
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.
Source project: Automata Theory
Person-level attribution pending.
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.
Source project: Automata Theory
Person-level attribution pending.