1 include "logic/equality.ma".
3 (* Inclusion of: COL087-1.p *)
5 (* -------------------------------------------------------------------------- *)
7 (* File : COL087-1 : TPTP v3.2.0. Released v2.7.0. *)
9 (* Domain : Combinatory Logic *)
11 (* Problem : Strong fixed point for B and M *)
13 (* Version : [Cla03] axioms. *)
15 (* English : The strong fixed point property holds for the set with the *)
17 (* combinators B and M as a basis, where Bxyz = x(yz) and *)
21 (* Refs : [WM88] Wos & McCune (1988), Challenge Problems Focusing on Eq *)
23 (* : [Cla03] Claessen (2003), Email to G. Sutcliffe *)
25 (* Source : [Cla03] *)
31 (* Rating : 1.00 v2.7.0 *)
33 (* Syntax : Number of clauses : 3 ( 0 non-Horn; 3 unit; 1 RR) *)
35 (* Number of atoms : 3 ( 3 equality) *)
37 (* Maximal clause size : 1 ( 1 average) *)
39 (* Number of predicates : 1 ( 0 propositional; 2-2 arity) *)
41 (* Number of functors : 4 ( 2 constant; 0-2 arity) *)
43 (* Number of variables : 5 ( 0 singleton) *)
45 (* Maximal term depth : 4 ( 3 average) *)
49 (* -------------------------------------------------------------------------- *)
50 ntheorem strong_fixpoint:
51 ∀Univ:Type.∀X:Univ.∀Y:Univ.∀Z:Univ.
52 ∀apply:∀_:Univ.∀_:Univ.Univ.
56 ∀H0:∀X:Univ.eq Univ (apply m X) (apply X X).
57 ∀H1:∀X:Univ.∀Y:Univ.∀Z:Univ.eq Univ (apply (apply (apply b X) Y) Z) (apply X (apply Y Z)).∃Y:Univ.eq Univ (apply Y (f Y)) (apply (f Y) (apply Y (f Y)))
76 (* -------------------------------------------------------------------------- *)