]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/contribs/ng_TPTP/CASC_2008/COL046-1.ma
Preparing for 0.5.9 release.
[helm.git] / helm / software / matita / contribs / ng_TPTP / CASC_2008 / COL046-1.ma
1 include "logic/equality.ma".
2
3 (* Inclusion of: COL046-1.p *)
4
5 (* -------------------------------------------------------------------------- *)
6
7 (*  File     : COL046-1 : TPTP v3.7.0. Released v1.0.0. *)
8
9 (*  Domain   : Combinatory Logic *)
10
11 (*  Problem  : Strong fixed point for B, M and S *)
12
13 (*  Version  : [WM88] (equality) axioms. *)
14
15 (*  English  : The strong fixed point property holds for the set  *)
16
17 (*             P consisting of the combinators B, M and S, where ((Sx)y)z  *)
18
19 (*             = (xz)(yz), ((Bx)y)z = x(yz), Mx = xx. *)
20
21 (*  Refs     : [Smu85] Smullyan (1978), To Mock a Mocking Bird and Other Logi *)
22
23 (*           : [MW87]  McCune & Wos (1987), A Case Study in Automated Theorem *)
24
25 (*           : [WM88]  Wos & McCune (1988), Challenge Problems Focusing on Eq *)
26
27 (*           : [Wos89] Wos (1989), A Challenge Problem and a Recent Workshop *)
28
29 (*  Source   : [Wos89] *)
30
31 (*  Names    : - [Wos89] *)
32
33 (*  Status   : Unsatisfiable *)
34
35 (*  Rating   : 0.33 v3.4.0, 0.50 v3.3.0, 0.57 v3.2.0, 0.64 v3.1.0, 0.67 v2.7.0, 0.55 v2.6.0, 0.17 v2.5.0, 0.25 v2.4.0, 0.00 v2.2.1, 0.67 v2.2.0, 0.71 v2.1.0, 1.00 v2.0.0 *)
36
37 (*  Syntax   : Number of clauses     :    4 (   0 non-Horn;   4 unit;   1 RR) *)
38
39 (*             Number of atoms       :    4 (   4 equality) *)
40
41 (*             Maximal clause size   :    1 (   1 average) *)
42
43 (*             Number of predicates  :    1 (   0 propositional; 2-2 arity) *)
44
45 (*             Number of functors    :    5 (   3 constant; 0-2 arity) *)
46
47 (*             Number of variables   :    8 (   0 singleton) *)
48
49 (*             Maximal term depth    :    4 (   3 average) *)
50
51 (*  Comments :  *)
52
53 (* -------------------------------------------------------------------------- *)
54 ntheorem prove_fixed_point:
55  (∀Univ:Type.∀X:Univ.∀Y:Univ.∀Z:Univ.
56 ∀apply:∀_:Univ.∀_:Univ.Univ.
57 ∀b:Univ.
58 ∀f:∀_:Univ.Univ.
59 ∀m:Univ.
60 ∀s:Univ.
61 ∀H0:∀X:Univ.eq Univ (apply m X) (apply X X).
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))))
64 .
65 #Univ ##.
66 #X ##.
67 #Y ##.
68 #Z ##.
69 #apply ##.
70 #b ##.
71 #f ##.
72 #m ##.
73 #s ##.
74 #H0 ##.
75 #H1 ##.
76 #H2 ##.
77 napply (ex_intro ? ? ? ?) ##[
78 ##2:
79 nauto by H0,H1,H2 ##;
80 ##| ##skip ##]
81 ntry (nassumption) ##;
82 nqed.
83
84 (* -------------------------------------------------------------------------- *)