# baseURI: http://www.workingontologist.org/Examples/Chapter7/AncestryInference

@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix daml:    <http://www.daml.org/2001/03/daml+oil#> .
@prefix anc:        <http://www.workingontologist.org/Examples/Chapter7/Ancestry#> .
@prefix owl:     <http://www.w3.org/2002/07/owl#> .

<http://www.workingontologist.org/Examples/Chapter7/AncestryInferences>
      a       owl:Ontology .



anc:Alexia a anc:DescendantOfWillemAlexander , anc:DescendantOfBeatrix , anc:DescendantOfWilhelmina .

anc:DescendantOfWillemAlexander rdfs:subClassOf anc:DescendantOfBeatrix .
anc:DescendantOfBeatrix rdfs:subClassOf  anc:DescendantOfWilhelmina .

anc:Alexia anc:hasAncestor  anc:WillemAlexander .
anc:Alexia anc:hasAncestor  anc:Beatrix .
anc:Alexia anc:hasAncestor  anc:Wilhelmina . 




          


