全值關係 (TotalValuedRelation)
A Relation is a TotalValuedRelation
just in case there exists an assignment for the last argument position of the
Relation given any assignment of values to every argument position except
the last one. Note that declaring a Relation to be both a TotalValuedRelation
and a SingleValuedRelation means that it is a total function.
Ontology
SUMO / BASE-ONTOLOGYSuperclass(es)
Instance(s)
持續時間
Coordinate term(s)
二元關係
序列
偏值關係
述詞
或然率關係
四元關係
五元關係
與量關係
單值關係
空間關係
時間關係
三元關係
變異元數關係
Axioms (2)
關係 完全 分割成 全值關係,偏值關係.
(partition Relation TotalValuedRelation PartialValuedRelation)
rel 是 全值關係 的 實例 if and only if there exists valence so that rel 是 關係 的 實例 and rel %&有 論元(s) valence and - if for all number,element,class holds: if number 小於 valence and rel 的 論元 number 是 class 的 實例 and element 等於 ""()" 的 第二 元素", then element 是 class 的 實例,
- then there exists item so that rel(,item) (不) 成立s
.
(<=>
(instance ?REL TotalValuedRelation)
(exists
(?VALENCE)
(and
(instance ?REL Relation)
(valence ?REL ?VALENCE)
(=>
(forall
(?NUMBER ?ELEMENT ?CLASS)
(=>
(and
(lessThan ?NUMBER ?VALENCE)
(domain ?REL ?NUMBER ?CLASS)
(equal
?ELEMENT
(ListOrderFn
(ListFn @ROW)
?NUMBER)))
(instance ?ELEMENT ?CLASS)))
(exists
(?ITEM)
(holds ?REL @ROW ?ITEM))))))