]> matita.cs.unibo.it Git - helm.git/blob - helm/software/matita/contribs/ng_TPTP/COL066-2.ma
Preparing for 0.5.9 release.
[helm.git] / helm / software / matita / contribs / ng_TPTP / COL066-2.ma
1 include "logic/equality.ma".
2
3 (* Inclusion of: COL066-2.p *)
4
5 (* -------------------------------------------------------------------------- *)
6
7 (*  File     : COL066-2 : TPTP v3.7.0. Bugfixed v1.2.0. *)
8
9 (*  Domain   : Combinatory Logic *)
10
11 (*  Problem  : Find combinator equivalent to P from B, Q and W *)
12
13 (*  Version  : [WM88] (equality) axioms. *)
14
15 (*             Theorem formulation : The combinator is provided and checked. *)
16
17 (*  English  : Construct from B, Q and W alone a combinator that behaves as *)
18
19 (*             the combinator P does, where ((Bx)y)z = x(yz), ((Qx)y)z = *)
20
21 (*             y(xz), (Wx)y = (xy)y, (((Px)y)y)z = (xy)((xy)z) *)
22
23 (*  Refs     : [WM88]  Wos & McCune (1988), Challenge Problems Focusing on Eq *)
24
25 (*           : [WW+90] Wos et al. (1990), Automated Reasoning Contributes to  *)
26
27 (*  Source   : [TPTP] *)
28
29 (*  Names    :  *)
30
31 (*  Status   : Unsatisfiable *)
32
33 (*  Rating   : 0.11 v3.4.0, 0.12 v3.3.0, 0.00 v2.7.0, 0.09 v2.6.0, 0.00 v2.1.0, 0.29 v2.0.0 *)
34
35 (*  Syntax   : Number of clauses     :    4 (   0 non-Horn;   4 unit;   1 RR) *)
36
37 (*             Number of atoms       :    4 (   4 equality) *)
38
39 (*             Maximal clause size   :    1 (   1 average) *)
40
41 (*             Number of predicates  :    1 (   0 propositional; 2-2 arity) *)
42
43 (*             Number of functors    :    7 (   6 constant; 0-2 arity) *)
44
45 (*             Number of variables   :    8 (   0 singleton) *)
46
47 (*             Maximal term depth    :    9 (   4 average) *)
48
49 (*  Comments :  *)
50
51 (*  Bugfixes : v1.2.0 : Redundant [fgh]_substitution axioms removed. *)
52
53 (* -------------------------------------------------------------------------- *)
54
55 (* ----This is the P equivalent *)
56 ntheorem prove_p_combinator:
57  (∀Univ:Type.∀X:Univ.∀Y:Univ.∀Z:Univ.
58 ∀apply:∀_:Univ.∀_:Univ.Univ.
59 ∀b:Univ.
60 ∀q:Univ.
61 ∀w:Univ.
62 ∀x:Univ.
63 ∀y:Univ.
64 ∀z:Univ.
65 ∀H0:∀X:Univ.∀Y:Univ.eq Univ (apply (apply w X) Y) (apply (apply X Y) Y).
66 ∀H1:∀X:Univ.∀Y:Univ.∀Z:Univ.eq Univ (apply (apply (apply q X) Y) Z) (apply Y (apply X Z)).
67 ∀H2:∀X:Univ.∀Y:Univ.∀Z:Univ.eq Univ (apply (apply (apply b X) Y) Z) (apply X (apply Y Z)).eq Univ (apply (apply (apply (apply (apply (apply q q) (apply w (apply q (apply q q)))) x) y) y) z) (apply (apply x y) (apply (apply x y) z)))
68 .
69 #Univ ##.
70 #X ##.
71 #Y ##.
72 #Z ##.
73 #apply ##.
74 #b ##.
75 #q ##.
76 #w ##.
77 #x ##.
78 #y ##.
79 #z ##.
80 #H0 ##.
81 #H1 ##.
82 #H2 ##.
83 nauto by H0,H1,H2 ##;
84 ntry (nassumption) ##;
85 nqed.
86
87 (* -------------------------------------------------------------------------- *)