Select language: english | cesky | deutsch | italiano | simplified chinese | traditional chinese | hindi
Concept:
English word:
Home

relation (Relation)

The Class of relations. There are three kinds of Relation: Predicate, Function, and List. Predicates and Functions both denote sets of ordered n-tuples. The difference between these two Classes is that Predicates cover formula-forming operators, while Functions cover term-forming operators. A List, on the other hand, is a particular ordered n-tuple.

Ontology

SUMO / BASE-ONTOLOGY

Superclass(es)

[tree]
entity
is subclass of
  abstract  
is subclass of
  relation  

Subclass(es)

single valued relation  total valued relation  partial valued relation  binary relation  probability relation  spatial relation  temporal relation  ternary relation  quaternary relation  quintary relation  list  predicate  variable arity relation  relation extended to quantities 

Coordinate term(s)

attribute  graph  graph element  proposition  quantity  set or class 

Constrains relations

domain  domain subclass  holds  subrelation  valence 

Related WordNet synsets

relation
an abstraction belonging to or characteristic of two entities or parts together
relation is kind of (all)...   relation is kind of...   kinds of relation...   kinds of relation (all)...  
relationship, human relationship
(`relationship' is often used where `relation' would serve (as in "the relationship between inflation and unemployment")) preferred usage of `relationship' is for human relations or states of relatedness; "the relationship between mothers and children"
relationship is kind of (all)...   relationship is kind of...   kinds of relationship...   kinds of relationship (all)...  
relational
having a relation or being related
relational is similar to...  
See more related synsets on a separate page.

Axioms (6)

If and ? are disjoint and rel is a member of "()", then rel is an instance of relation.
(=>
      (and
            (disjointRelation @ROW)
            (inList
                  ?REL
                  (ListFn @ROW)))
      (instance ?REL Relation))

relation is disjointly decomposed into binary relation,ternary relation,quaternary relation,quintary relation,variable arity relation.
(disjointDecomposition Relation BinaryRelation TernaryRelation QuaternaryRelation QuintaryRelation VariableArityRelation)

relation is exhaustively partitioned into predicate,function,list.
(partition Relation Predicate Function List)

relation is exhaustively partitioned into total valued relation,partial valued relation.
(partition Relation TotalValuedRelation PartialValuedRelation)

If rel is an instance of relation, then rel() holds if and only if rel() holds.
(=>
      (instance ?REL Relation)
      (<=>
            (holds ?REL @ROW)
            (?REL @ROW)))

rel is an instance of total valued relation if and only if there exists valence so that rel is an instance of relation and rel %&has valence argument(s) and
(<=>
      (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))))))