TBox für Aufgabenblatt 8
 
 

1.1

1.2
1.3
1.4
1.5
1.6
1.7

2.1
2.2
2.3
2.4
2.5
2.6

3.1
3.2
3.3
3.4
3.5
3.6
3.7
3.8
3.9
3.10
3.11
3.12

(signature
   :atomic-concepts  (person human female male woman man parent
      mother father grandmother aunt uncle sister brother)
   :roles ((has-child :parent has-descendant)
     (has-descendant :transitiv t)
     (has-sibling)
     (has-sister :parent has-sibling)
     (has-brother :parent has-sibling)
     (has-gender :feature t)))

(implies *top* (all has-child person))
(implies (some has-child *top*) parent)
(implies (some has-sibling *top*) (or brother sister))
(implies *top* (all has-sibling (or sister brother)))
(implies *top* (all has-sister (some has-gender female)))
(implies *top* (all has-brother (some has-gender male)))

(implies person (and human (some has-gender (or female male))))
(disjoint female male)
(implies woman (and person (some has-gender female)))
(implies man (and person (some has-gender male)))
(equivalent parent (and person (some has-child person)))
(equivalent mother (and woman parent))
(equivalent father (and man parent))
(equivalent grandmother (and mother (some has-child (some has-child person))))
(equivalent aunt (and woman (some has-sibling parent)))
(equivalent uncle (and man (some has-sibling parent)))
(equivalent brother (and man (some has-sibling person)))
(equivalent sister (and woman (some has-sibling person)))