Skip to content

Instantly share code, notes, and snippets.

@wilcoxjay
Created April 20, 2017 22:03
Show Gist options
  • Save wilcoxjay/67d0dbc5f266dea8ffd8134b62b7a333 to your computer and use it in GitHub Desktop.
Save wilcoxjay/67d0dbc5f266dea8ffd8134b62b7a333 to your computer and use it in GitHub Desktop.
Goal exists x : (nat * nat * nat), fst (fst x) = 1 /\ snd (fst x) = 2 /\ snd x = 3.
evar (x : nat).
evar (y : nat).
evar (z : nat).
eexists (?x, ?y, ?z).
simpl. eauto.
Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment