Changes between Version 5 and Version 6 of Reasoning


Ignore:
Timestamp:
05/31/11 17:29:07 (2 years ago)
Author:
tadamusiak
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Reasoning

    v5 v6  
    77We present here a simple example how reasoner could be employed, but considerably more complicated scenarios are in use by the OWL community.  
    88 
    9 Consider the following hypothetical ontology (annotated with Description Logic syntax below) describing the anatomical relations among the parts of heart.  
     9[[Image(wiki:r:ontology.png)]] 
     10 
     11Consider the following hypothetical ontology (annotated with Description Logic syntax above) describing the anatomical relations among the parts of heart.  
    1012We start by defining four classes: ''Heart'', ''!HeartComponent'', ''!LeftHeart'', and ''!MitralValve'' and two object properties to describe the partonomy: ''partOf'' and ''hasPart''. The two '''''primitive classes''''' ''!LeftHeart'' and ''!MitralValve'' have additional necessary conditions defined as ''partOf some Heart'' and ''partOf some !LeftHeart'' respectively in order to describe that mitral valve is a component of left heart, which in turn is a part of the whole heart. We additionally create a '''''defined class''''' ''!HeartComponent'' as a convenience class to capture all the different parts of heart as subsumptions and this is our primary query -- find all parts of heart.  
    1113 
    1214Simply parsing the ontology to find which classes have the statement ''partOf some Heart'' among their restrictions would only return ''!LeftHeart'', but miss ''!MitralValve'' completely. However, if we additionally specify that ''partOf'' is transitive, the reasoner would be able to infer that ''!MitralValve'' is also a ''!HeartComponent''. 
    1315 
    14 [[Image(wiki:r:ontology.png)]] 
     16 
    1517 
    1618Conversely, while it is possible to query for all classes fulfilling the existential restriction ''partOf some Heart'' to retrieve all parts of heart, the opposite query for ''hasPart some !LeftHeart'' will not return ''Heart'' due to the OWL's open world assumption, unless a closure axiom ''hasPart some Heart AND hasPart only Heart'' is additionally specified on ''!LeftHeart'' class.