Skip to content

Commit

Permalink
predeqP missing, as mentioned on Zulip, statement found in PR#282
Browse files Browse the repository at this point in the history
  • Loading branch information
affeldt-aist committed Dec 17, 2020
1 parent 4f920ad commit 90154a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Added

- in `classical_sets.v`:
+ lemma `predeqP`

### Changed

### Renamed
Expand Down
3 changes: 3 additions & 0 deletions theories/classical_sets.v
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ rewrite propeqE; split => [->|[FG GF]]; [by split|].
by rewrite predeqE => t; split=> [/FG|/GF].
Qed.

Lemma predeqP T (A B : set T) : (A = B) <-> (A `<=>` B).
Proof. by rewrite eqEsubset. Qed.

Lemma eq_set T (P Q : T -> Prop): (forall x : T, P x = Q x) ->
[set x | P x] = [set x | Q x].
Proof. by move=> /funext->. Qed.
Expand Down

0 comments on commit 90154a3

Please sign in to comment.