Skip to content

Instantly share code, notes, and snippets.

@Blaisorblade
Created October 8, 2019 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Blaisorblade/7713fde3a9bfc0e039b4d150fd618ff7 to your computer and use it in GitHub Desktop.
Save Blaisorblade/7713fde3a9bfc0e039b4d150fd618ff7 to your computer and use it in GitHub Desktop.
Require Import Omega.
Lemma foo (n n0 n1 n2 n3 n4: nat):
n + (n0 + n1) = 0 ->
n2 + (n3 + n4) = 0 ->
n0 + n3 + n + n2 + (n1 + n4) = 0.
Proof. omega. Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment