@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix test: . @prefix : <#> . <> a test:Test; owl:versionInfo "$Id: siblingfather-2.n3,v 1.1 2003/06/25 12:49:23 mdean Exp $"; rdfs:comment "use rules to express axioms not naturally entailed by OWL: 2 (full) siblings have the same father (with subproperties)". :sibling a owl:ObjectProperty. :brother a owl:ObjectProperty; rdfs:subPropertyOf :sibling. :jason :brother :noah. :jason :father :mike. { ?x :sibling ?y. ?x :father ?f } => { ?y :father ?f } . { :noah :father :mike } => { <> test:successful "true" } .