1 include "logic/equality.ma".
3 (* Inclusion of: COL037-1.p *)
5 (* -------------------------------------------------------------------------- *)
7 (* File : COL037-1 : TPTP v3.7.0. Released v1.0.0. *)
9 (* Domain : Combinatory Logic *)
11 (* Problem : Strong fixed point for B, S, and C *)
13 (* Version : [WM88] (equality) axioms. *)
15 (* English : The strong fixed point property holds for the set *)
17 (* P consisting of the combinators B, S, and C, where ((Sx)y)z *)
19 (* = (xz)(yz), ((Bx)y)z = x(yz), ((Cx)y)z = (xz)y. *)
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.22 v3.4.0, 0.25 v3.3.0, 0.29 v3.1.0, 0.44 v2.7.0, 0.36 v2.6.0, 0.33 v2.5.0, 0.25 v2.4.0, 0.33 v2.3.0, 0.00 v2.2.1, 0.22 v2.2.0, 0.14 v2.1.0, 0.88 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 ( 3 constant; 0-2 arity) *)
47 (* Number of variables : 10 ( 0 singleton) *)
49 (* Maximal term depth : 4 ( 4 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 c X) Y) Z) (apply (apply X Z) Y).
62 ∀H1:∀X:Univ.∀Y:Univ.∀Z:Univ.eq Univ (apply (apply (apply b X) Y) Z) (apply X (apply Y Z)).
63 ∀H2:∀X:Univ.∀Y:Univ.∀Z:Univ.eq Univ (apply (apply (apply s X) Y) Z) (apply (apply X Z) (apply Y Z)).∃Y:Univ.eq Univ (apply Y (f Y)) (apply (f Y) (apply Y (f Y))))
77 napply (ex_intro ? ? ? ?) ##[
81 ntry (nassumption) ##;
84 (* -------------------------------------------------------------------------- *)