Det muller accept boolean form
Automata.det_muller_accept_boolean_form
Plain-language statement
The ω-language accepted by a deterministic Muller automaton is a boolean combination of the ω-limits of accepted languages. Note that this result does not need to assume that the automaton is finite-state.
Exact Lean statement
theorem det_muller_accept_boolean_form (M : DA A) (accSet : Set (Set M.State)) :
{as | M.MullerAccept accSet as} =
⋃ acc ∈ accSet, (⋂ s ∈ acc, (M.toNA.AcceptedLang {s})↗ω) ∩ (⋂ s ∈ accᶜ, ((M.toNA.AcceptedLang {s})↗ω)ᶜ)Formal artifact
Lean source
theorem det_muller_accept_boolean_form (M : DA A) (accSet : Set (Set M.State)) : {as | M.MullerAccept accSet as} = ⋃ acc ∈ accSet, (⋂ s ∈ acc, (M.toNA.AcceptedLang {s})↗ω) ∩ (⋂ s ∈ accᶜ, ((M.toNA.AcceptedLang {s})↗ω)ᶜ) := by ext as ; simp [DA.MullerAccept, mem_setOf_eq, ← da_acc_omega_lang] ; constructor · intro h_acc ; use InfOcc (M.DetRun as); simp [h_acc] ; constructor <;> intro s h_s · use (M.DetRun as) ; constructor · exact da_inf_run_exists as · exact h_s · rintro ⟨ss, h_run, h_inf⟩ obtain ⟨rfl⟩ := da_inf_run_unique h_run contradiction · rintro ⟨acc, h_inf, h_acc, h_fin⟩ suffices h : acc = InfOcc (M.DetRun as) by simp [← h, h_acc] ext s ; constructor <;> intro h_s · obtain ⟨ss, h_run, h_inf'⟩ := h_inf s h_s obtain ⟨rfl⟩ := da_inf_run_unique h_run exact h_inf' · by_contra h_contra have h_as := h_fin s h_contra simp only [NA.AcceptedOmegaLang, NA.BuchiAccept, mem_singleton_iff, mem_setOf_eq, not_exists, not_and] at h_as have := h_as (M.DetRun as) (da_inf_run_exists as) contradiction- Project
- Automata Theory
- License
- Apache-2.0
- Commit
- f196548710ce
- Source
- AutomataTheory/Automata/Det.lean:239-260
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.