Advertisement
Guest User

Untitled

a guest
May 30th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Inductive R : nat -> nat -> nat -> Prop :=
  2. | c1 : R 0 0 0
  3. | c2 : forall m n o, R m n o -> R (S m) n (S o)
  4. | c3 : forall m n o, R m n o -> R m (S n) (S o)
  5. | c4 : forall m n o, R (S m) (S n) (S (S o)) -> R m n o
  6. | c5 : forall m n o, R m n o -> R n m o.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement