Zulip Chat Archive
Stream: new members
Topic: Equality of pairs
Torger Olson (Oct 02 2021 at 10:11):
If I have an equality or pairs (of sets) : (a, b) = (c, d) how do I get a = c?
Ruben Van de Velde (Oct 02 2021 at 10:12):
Some lemma called ext_iff
, probably
Johan Commelin (Oct 02 2021 at 10:12):
congr_arg prod.fst h
, where h
is your proof of (a,b) = (c,d)
.
Marcus Rossel (Oct 02 2021 at 10:18):
IIRC the injection
tactic might also work for this.
Last updated: Dec 20 2023 at 11:08 UTC