79628595

Date: 2025-05-19 10:57:55
Score: 1.5
Natty:
Report link

It does not look provable, unless you assume forall x y : Set, {x = y} + {x ≠ y} as an axiom (but I have never seen anyone doing that and that's what probably @Dominique mean).


  Lemma example3 (n n' : nat) : @existT Set (fun x => x) nat n = 
    @existT Set (fun x => x) nat n' -> n = n'.
  Proof.
    intro e.
    eapply Eqdep_dec.inj_pair2_eq_dec in e.
    exact e.
    

enter image description here

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • User mentioned (1): @Dominique
Posted by: keep_learning