Derivable In cut away
Cslib.Logic.PL.DerivableIn.cut_away
Plain-language statement
Remove unnecessary hypotheses. This can't be computable because it requires picking an order on the finset Δ.
Exact Lean statement
theorem DerivableIn.cut_away {Γ Γ' : Ctx Atom} {B : Proposition Atom}
(hΔ : ∀ A ∈ Γ', DerivableIn T (Γ ⊢ A)) (hDer : DerivableIn T ((Γ ∪ Γ') ⊢ B)) :
DerivableIn T (Γ ⊢ B)Formal artifact
Lean source
theorem DerivableIn.cut_away {Γ Γ' : Ctx Atom} {B : Proposition Atom} (hΔ : ∀ A ∈ Γ', DerivableIn T (Γ ⊢ A)) (hDer : DerivableIn T ((Γ ∪ Γ') ⊢ B)) : DerivableIn T (Γ ⊢ B) := by induction Γ' using Finset.induction with | empty => exact DerivableIn.weakCtx (by grind) hDer | insert A Δ hA ih => apply ih · intro A' hA' exact hΔ A' <| Finset.mem_insert_of_mem hA' · apply Finset.union_left_idem Γ Δ ▸ DerivableIn.cut (Δ := Γ ∪ Δ) · exact hΔ A <| Finset.mem_insert_self A Δ · rwa [← Finset.union_insert A Γ Δ]- Project
- Lean Computer Science Library
- License
- Apache-2.0
- Commit
- f36649cff2c9
- Source
- Cslib/Logics/Propositional/NaturalDeduction/Basic.lean:227-238
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
Unique minimal
Cslib.Automata.DA.FinAcc.unique_minimal
Plain-language statement
The minimal DFA M accepting the language l is unique up to unique isomorphism.
Source project: Lean Computer Science Library
Person-level attribution pending.
Buchi Family cover
Cslib.Automata.NA.Buchi.buchiFamily_cover
Project documentation
na.buchiFamily is a cover if na has only finitely many states. This theorem uses the Ramsey theorem for infinite graphs and does not depend on any details of na.BuchiCongruence other than that it is of finite index.
Source project: Lean Computer Science Library
Person-level attribution pending.
Buchi Family saturation
Cslib.Automata.NA.Buchi.buchiFamily_saturation
Plain-language statement
na.buchiFamily saturates the ω-language accepted by na.
Source project: Lean Computer Science Library
Person-level attribution pending.