Skip to content

Commit

Permalink
Families: Add lemmas about Included
Browse files Browse the repository at this point in the history
  • Loading branch information
Columbus240 committed Oct 15, 2023
1 parent dba300f commit 67674a7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions theories/ZornsLemma/Families.v
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,19 @@ split.
- intros. extensionality_ensembles.
rewrite <- H. exists U; assumption.
Qed.

Lemma FamilyUnion_In_Included {X : Type}
(F : Family X) (U : Ensemble X) :
In F U -> Included U (FamilyUnion F).
Proof.
intros HU x Hx.
exists U; assumption.
Qed.

Lemma FamilyIntersection_In_Included {X : Type}
(F : Family X) (U : Ensemble X) :
In F U -> Included (FamilyIntersection F) U.
Proof.
intros HU x Hx.
destruct Hx. apply H, HU.
Qed.

0 comments on commit 67674a7

Please sign in to comment.