1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
fof(axCommLem0, axiom,
( ! [Var_DEVICE] :
(hasType(type_CommunicationDevice, Var_DEVICE) =>
(( ! [Var_COMMUNICATION] :
(hasType(type_Communication, Var_COMMUNICATION) =>
(f_instrument(Var_COMMUNICATION,Var_DEVICE)))))))).
fof(axCommLem1, axiom,
( ! [Var_SYSTEM] :
(hasType(type_TelephoneSystem, Var_SYSTEM) =>
(( ? [Var_PHONE] :
(hasType(type_Telephone, Var_PHONE) &
(f_engineeringSubcomponent(Var_PHONE,Var_SYSTEM)))))))).
fof(axCommLem2, axiom,
( ! [Var_SYSTEM] :
(hasType(type_TelephoneSystem, Var_SYSTEM) =>
(( ? [Var_LINE] :
(hasType(type_MainTelephoneLine, Var_LINE) &
(f_engineeringSubcomponent(Var_LINE,Var_SYSTEM)))))))).
fof(axCommLem3, axiom,
( ! [Var_SAT] :
(hasType(type_CommunicationSatellite, Var_SAT) =>
(( ? [Var_SYSTEM] :
(hasType(type_CommunicationSystem, Var_SYSTEM) &
(f_engineeringSubcomponent(Var_SAT,Var_SYSTEM)))))))).
fof(axCommLem4, axiom,
( ! [Var_SYSTEM] :
(hasType(type_RadioSystem, Var_SYSTEM) =>
(( ? [Var_DEVICE] :
(hasType(type_RadioReceiver, Var_DEVICE) &
(f_engineeringSubcomponent(Var_DEVICE,Var_SYSTEM)))))))).
fof(axCommLem5, axiom,
( ! [Var_SYSTEM] :
(hasType(type_TelevisionSystem, Var_SYSTEM) =>
(( ? [Var_STATION] :
(hasType(type_TelevisionStation, Var_STATION) &
(f_engineeringSubcomponent(Var_STATION,Var_SYSTEM)))))))).
fof(axCommLem6, axiom,
( ! [Var_SYSTEM] :
(hasType(type_TelevisionSystem, Var_SYSTEM) =>
(( ? [Var_DEVICE] :
(hasType(type_TelevisionReceiver, Var_DEVICE) &
(f_engineeringSubcomponent(Var_DEVICE,Var_SYSTEM)))))))).
fof(axCommLem7, axiom,
( ! [Var_SYSTEM] :
(hasType(type_CableTelevisionSystem, Var_SYSTEM) =>
(( ? [Var_DEVICE] :
(hasType(type_TelevisionReceiver, Var_DEVICE) &
(f_engineeringSubcomponent(Var_DEVICE,Var_SYSTEM)))))))).
fof(axCommLem8, axiom,
( ! [Var_PART] :
(hasType(type_InternetServiceProvider, Var_PART) =>
(f_engineeringSubcomponent(Var_PART,inst_Internet))))).
fof(axCommLem9, axiom,
( ! [Var_INDIVIDUAL] :
((hasType(type_Object, Var_INDIVIDUAL) & hasType(type_Agent, Var_INDIVIDUAL)) =>
(((f_attribute(Var_INDIVIDUAL,inst_InternetUser)) => (( ? [Var_PROCESS] :
(hasType(type_Process, Var_PROCESS) &
(((f_agent(Var_PROCESS,Var_INDIVIDUAL)) & (f_instrument(Var_PROCESS,inst_Internet)))))))))))).
|