Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tej Chajed
stdpp
Commits
4fd8d550
Commit
4fd8d550
authored
Jan 04, 2017
by
Robbert Krebbers
Browse files
Fix more _L lemmas.
parent
108d1f8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
theories/collections.v
View file @
4fd8d550
...
...
@@ -643,9 +643,9 @@ Section collection.
Proof
.
unfold_leibniz
;
apply
union_intersection_l
.
Qed
.
Lemma
union_intersection_r_L
X
Y
Z
:
(
X
∩
Y
)
∪
Z
=
(
X
∪
Z
)
∩
(
Y
∪
Z
).
Proof
.
unfold_leibniz
;
apply
union_intersection_r
.
Qed
.
Lemma
intersection_union_l_L
X
Y
Z
:
X
∩
(
Y
∪
Z
)
≡
(
X
∩
Y
)
∪
(
X
∩
Z
).
Lemma
intersection_union_l_L
X
Y
Z
:
X
∩
(
Y
∪
Z
)
=
(
X
∩
Y
)
∪
(
X
∩
Z
).
Proof
.
unfold_leibniz
;
apply
intersection_union_l
.
Qed
.
Lemma
intersection_union_r_L
X
Y
Z
:
(
X
∪
Y
)
∩
Z
≡
(
X
∩
Z
)
∪
(
Y
∩
Z
).
Lemma
intersection_union_r_L
X
Y
Z
:
(
X
∪
Y
)
∩
Z
=
(
X
∩
Z
)
∪
(
Y
∩
Z
).
Proof
.
unfold_leibniz
;
apply
intersection_union_r
.
Qed
.
(** Difference *)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment