Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to represent this sentence in description logic? [closed]

How to describe this in description logic?

"every human is either male or female"

Thanks

like image 881
ahmed Avatar asked May 27 '09 06:05

ahmed


1 Answers

The answers provided here so far do not use Description Logic syntax (which is variable-free). Assuming you want the actual Description Logic syntax that is used in scientific papers about Description Logics, check out this:

human \sqsubseteq (male \sqcup female) \sqcap \neg (male \sqcap female)

Its written in LaTeX, you can use an online LaTeX equation editor, e.g. this to render this expression.

like image 91
Kaarel Avatar answered Nov 17 '22 00:11

Kaarel