简体   繁体   English

在 OWL 中,一个属性是否可能是多个属性的倒数?

[英]In OWL, is possible that a property is the inverse of more than one property?

it is possible that a property has multiple 'inverseOf' characteristic simultaneously?一个属性是否可能同时具有多个“inverseOf”特征? For instance:例如:

<prop1, owl:inverseOf, prop2>
<prop1, owl:inverseOf, prop3>
<prop1, owl:inverseOf, prop4>

There's no problem with asserting that a property p is the inverseOf more than one property, eg, q, and r.断言属性 p 是多个属性的 inverseOf 没有问题,例如 q 和 r。 It does mean, however, q and r end up being equivalent.然而,这确实意味着 q 和 r 最终是等价的。 Since自从

p inverseOf q p 逆 q
p inverseOf r p 倒数 r

means that意思是

p(x,y) implies q(y,x) p(x,y) 隐含 q(y,x)
p(x,y) implies r(y,x) p(x,y) 意味着 r(y,x)
q(y,x) implies p(x,y) q(y,x) 意味着 p(x,y)
r(y,x) implies p(x,y) r(y,x) 意味着 p(x,y)

we can infer that我们可以推断

q(y,x) implies r(y,x) q(y,x) 意味着 r(y,x)
r(y,x) implies q(y,x) r(y,x) 意味着 q(y,x)

which means that意思就是

q equivalentProperty r q 等效属性 r

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM