2014-08-25 02:58:48 +00:00
|
|
|
import logic
|
2014-10-02 00:51:17 +00:00
|
|
|
open eq.ops
|
2014-11-23 01:34:05 +00:00
|
|
|
namespace experiment
|
2014-07-26 17:36:21 +00:00
|
|
|
inductive nat : Type :=
|
2015-02-26 01:00:10 +00:00
|
|
|
| zero : nat
|
|
|
|
| succ : nat → nat
|
2014-07-26 17:36:21 +00:00
|
|
|
|
2014-09-04 23:36:06 +00:00
|
|
|
namespace nat
|
2014-09-04 22:03:59 +00:00
|
|
|
definition add (x y : nat) : nat := nat.rec x (λn r, succ r) y
|
2014-10-21 22:27:45 +00:00
|
|
|
infixl `+` := add
|
2014-09-04 22:03:59 +00:00
|
|
|
definition mul (n m : nat) := nat.rec zero (fun m x, x + n) m
|
2014-10-21 22:27:45 +00:00
|
|
|
infixl `*` := mul
|
2014-07-26 17:36:21 +00:00
|
|
|
|
|
|
|
axiom mul_zero_right (n : nat) : n * zero = zero
|
|
|
|
|
2014-10-02 23:20:52 +00:00
|
|
|
constant P : nat → Prop
|
2014-07-26 17:36:21 +00:00
|
|
|
|
|
|
|
print "==========================="
|
|
|
|
theorem tst (n : nat) (H : P (n * zero)) : P zero
|
2014-09-05 01:41:06 +00:00
|
|
|
:= eq.subst (mul_zero_right _) H
|
2014-09-04 23:36:06 +00:00
|
|
|
end nat
|
2014-11-23 01:34:05 +00:00
|
|
|
exit
|