1
給定集合包含的證明及其相反,我希望能夠證明兩個集合是平等的。從設置包含到設置精簡的平等
例如,我知道如何證明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_deMorgan_incl : A ∩ B ⊆ set.compl ((set.compl A) ∪ (set.compl B)) :=
sorry
鑑於這兩個包容證明,我怎麼證明設置的平等,即
def set_deMorgan_eq : A ∩ B = set.compl ((set.compl A) ∪ (set.compl B)) :=
sorry
謝謝,我沒有意識到這需要stdlib!這是一個更廣泛的問題,但功能/命題擴展性的哲學含義是什麼? –