我想用精益做一些拓撲工作。 作爲一個好的開始,我想證明一些關於sets in lean的簡單引理。 例如 def inter_to_union (H : a ∈ set.inter A B) : a ∈ set.union A B :=
sorry
或 def set_deMorgan : a ∈ set.inter A B → a ∈ set.compl (set.union (s
給定集合包含的證明及其相反,我希望能夠證明兩個集合是平等的。 例如,我知道如何證明following statement,並its converse: open set
universe u
variable elem_type : Type u
variable A : set elem_type
variable B : set elem_type
def set_deMorga
我試圖從chapter 7 of "theorem proving in lean"瞭解歸納類型。 我給自己設定了證明自然數的是繼任者的任務,擁有平等的一個替代性質: inductive natural : Type
| zero : natural
| succ : natural -> natural
lemma succ_over_equality (a b : natural) (