1 include "logic/equality.ma".
3 (* Inclusion of: COL018-1.p *)
5 (* -------------------------------------------------------------------------- *)
7 (* File : COL018-1 : TPTP v3.7.0. Released v1.0.0. *)
9 (* Domain : Combinatory Logic *)
11 (* Problem : Weak fixed point for W, Q, and L *)
13 (* Version : [WM88] (equality) axioms. *)
15 (* English : The weak fixed point property holds for the set P consisting *)
17 (* of the combinators W, Q, and L, where (Lx)y = x(yy), (Wx)y *)
19 (* = (xy)y, ((Qx)y)z = y(xz). *)
21 (* Refs : [Smu85] Smullyan (1978), To Mock a Mocking Bird and Other Logi *)
23 (* : [MW87] McCune & Wos (1987), A Case Study in Automated Theorem *)
25 (* : [WM88] Wos & McCune (1988), Challenge Problems Focusing on Eq *)
27 (* : [MW88] McCune & Wos (1988), Some Fixed Point Problems in Comb *)
31 (* Names : - [MW88] *)
33 (* Status : Unsatisfiable *)
35 (* Rating : 0.00 v2.0.0 *)
37 (* Syntax : Number of clauses : 4 ( 0 non-Horn; 4 unit; 1 RR) *)
39 (* Number of atoms : 4 ( 4 equality) *)
41 (* Maximal clause size : 1 ( 1 average) *)
43 (* Number of predicates : 1 ( 0 propositional; 2-2 arity) *)
45 (* Number of functors : 5 ( 4 constant; 0-2 arity) *)
47 (* Number of variables : 8 ( 0 singleton) *)
49 (* Maximal term depth : 4 ( 3 average) *)
53 (* -------------------------------------------------------------------------- *)
54 ntheorem prove_fixed_point:
55 (∀Univ:Type.∀X:Univ.∀Y:Univ.∀Z:Univ.
56 ∀apply:∀_:Univ.∀_:Univ.Univ.
61 ∀H0:∀X:Univ.∀Y:Univ.∀Z:Univ.eq Univ (apply (apply (apply q X) Y) Z) (apply Y (apply X Z)).
62 ∀H1:∀X:Univ.∀Y:Univ.eq Univ (apply (apply w X) Y) (apply (apply X Y) Y).
63 ∀H2:∀X:Univ.∀Y:Univ.eq Univ (apply (apply l X) Y) (apply X (apply Y Y)).∃Y:Univ.eq Univ Y (apply combinator Y))
77 napply (ex_intro ? ? ? ?) ##[
81 ntry (nassumption) ##;
84 (* -------------------------------------------------------------------------- *)