2014-01-05 20:05:08 +00:00
|
|
|
import Int.
|
|
|
|
variable P : Int -> Int -> Bool
|
2014-01-01 19:35:21 +00:00
|
|
|
|
2014-01-05 20:05:08 +00:00
|
|
|
theorem T1 (R1 : not (exists x y, P x y)) : forall x y, not (P x y) :=
|
2014-01-06 03:10:21 +00:00
|
|
|
forall::intro (fun a,
|
|
|
|
forall::intro (fun b,
|
|
|
|
forall::elim (not::exists::elim (forall::elim (not::exists::elim R1) a)) b))
|
2014-01-01 19:35:21 +00:00
|
|
|
|
2014-01-05 20:05:08 +00:00
|
|
|
axiom Ax : forall x, exists y, P x y
|
2014-01-01 19:35:21 +00:00
|
|
|
|
2014-01-05 20:05:08 +00:00
|
|
|
theorem T2 : exists x y, P x y :=
|
2014-01-06 03:10:21 +00:00
|
|
|
refute (fun R : not (exists x y, P x y),
|
|
|
|
let L1 : forall x y, not (P x y) := forall::intro (fun a,
|
|
|
|
forall::intro (fun b,
|
|
|
|
forall::elim (not::exists::elim (forall::elim (not::exists::elim R) a)) b)),
|
|
|
|
L2 : exists y, P 0 y := forall::elim Ax 0
|
|
|
|
in exists::elim L2 (fun (w : Int) (H : P 0 w),
|
|
|
|
absurd H (forall::elim (forall::elim L1 0) w))).
|
2014-01-01 19:35:21 +00:00
|
|
|
|
2014-01-05 20:05:08 +00:00
|
|
|
theorem T3 (A : (Type U)) (P : A -> A -> Bool) (a : A) (H1 : forall x, exists y, P x y) : exists x y, P x y :=
|
2014-01-06 03:10:21 +00:00
|
|
|
refute (fun R : not (exists x y, P x y),
|
|
|
|
let L1 : forall x y, not (P x y) := forall::intro (fun a,
|
|
|
|
forall::intro (fun b,
|
|
|
|
forall::elim (not::exists::elim (forall::elim (not::exists::elim R) a)) b)),
|
|
|
|
L2 : exists y, P a y := forall::elim H1 a
|
|
|
|
in exists::elim L2 (fun (w : A) (H : P a w),
|
|
|
|
absurd H (forall::elim (forall::elim L1 a) w))).
|