Description logic

Description logic

Description logic (DL) is a family of formal knowledge representation languages. It is more expressive than propositional logic but has more efficient decision problems than first-order predicate logic.

DL is used in artificial intelligence for formal reasoning on the concepts of an application domain (known as terminological knowledge). It is of particular importance in providing a logical formalism for ontologies and the Semantic Web. The most notable application outside information science is in bioinformatics where DL assists in the codification of medical knowledge.

Contents

Introduction

A Description Logic (DL) models concepts, roles and individuals, and their relationships.

The fundamental modeling concept of a DL is the axiom - a logical statement relating roles and/or concepts.[1] This is a key difference from the frames paradigm where a frame specification declares and completely defines a class.[1]

Nomenclature

Differences from OWL

Synonyms
OWL DL
class concept
property role
object individual

Naming convention

There are many varieties of Description Logic and there is an informal naming convention, roughly describing the operators allowed. The expressivity is encoded in the label for a logic using the following letters:

\mathcal{F} Functional properties.
\mathcal{E} Full existential qualification (Existential restrictions that have fillers other than owl:Thing).
\mathcal{U} Concept union.
\mathcal{C} Complex concept negation.
\mathcal{S} An abbreviation for \mathcal{ALC} with transitive roles.
\mathcal{H} Role hierarchy (subproperties - rdfs:subPropertyOf).
\mathcal{R} Limited complex role inclusion axioms; reflexivity and irreflexivity; role disjointness.
\mathcal{O} Nominals. (Enumerated classes of object value restrictions - owl:oneOf, owl:hasValue).
\mathcal{I} Inverse properties.
\mathcal{N} Cardinality restrictions (owl:cardinality, owl:maxCardinality).
\mathcal{Q} Qualified cardinality restrictions (available in OWL 2, cardinality restrictions that have fillers other than owl:Thing).
^\mathcal{(D)} Use of datatype properties, data values or data types.

Examples

As an example, \mathcal{ALC} is a centrally important description logic from which comparisons with other varieties can be made. \mathcal{ALC} is simply \mathcal{AL} with complement of any concept allowed, not just atomic concepts.

A further example, the description logic \mathcal{SHIQ} is the logic \mathcal{ALC} plus extended cardinality restrictions, and transitive and inverse roles. The naming conventions aren't purely systematic so that the logic \mathcal{ALCOIN} might be referred to as \mathcal{ALCNIO} and abbreviations are made where possible, \mathcal{ALC} is used instead of the equivalent \mathcal{ALUE}.

The Protégé ontology editor supports \mathcal{SHOIN}^\mathcal{(D)}. Three major bioinformatic terminology bases, Snomed, Galen, and GO, are expressible in \mathcal{EL} (with additional role properties).

OWL 2 provides the expressiveness of \mathcal{SROIQ}^\mathcal{(D)}, OWL-DL is based on \mathcal{SHOIN}^\mathcal{(D)}, and for OWL-Lite it is \mathcal{SHIF}^\mathcal{(D)}.

Exceptions

Some canonical DLs that do not exactly fit this convention are:

\mathcal{AL} Attributive language. This is the base language which allows:
  • Atomic negation (negation of concepts that do not appear on the left hand side of axioms)
  • Concept intersection
  • Universal restrictions
  • Limited existential quantification
\mathcal{FL}_o A sub-language of \mathcal{FL^-}, which is obtained by disallowing limited existential quantification.
\mathcal{EL} Intersection and full existential restriction.

History

Description logic (DL) was given its current name in the 1980s. Previous to this it was called (chronologically): terminological systems, and concept languages.

Knowledge representation

Frames and semantic networks lack formal (logic-based) semantics.[2] DL was first introduced into Knowledge Representation (KR) systems to overcome this deficiency.[2]

The first DL-based KR system was KL-ONE (by Ronald J. Brachman and Schmolze, 1985). During the '80s other DL-based systems using structural subsumption algorithms[2] were developed including KRYPTON (1983), LOOM (1987), BACK (1988), K-REP (1991) and CLASSIC (1991). This approach featured DL with limited expressiveness but relatively efficient (polynomial time) reasoning.[2]

In the early '90s, the introduction of a new tableau based algorithm paradigm allowed efficient reasoning on more expressive DL.[2] DL-based systems using these algorithms - such as KRIS (1991) - show acceptable reasoning performance on typical inference problems even though the worst case complexity is no longer polynomial.[2]

From the mid '90s, reasoners were created with good practical performance on very expressive DL with high worst case complexity.[2] Examples from this period include FaCT,[3] RACER (2001), CEL (2005), and KAON 2 (2005).

DL reasoners, such as FaCT, FaCT++,[3] RACER, DLP and Pellet,[4] implement the analytic tableau method. KAON2 is implemented by algorithms which reduce a SHIQ(D) knowledge base to a disjunctive datalog program.

Semantic Web

The DARPA Agent Markup Language (DAML) and Ontology Inference Layer (OIL) ontology languages for the semantic web can be viewed as syntactic variants of DL.[5] In particular, the formal semantics and reasoning in OIL use the \mathcal{SHIQ} DL.[6] The DAML+OIL DL was developed as a submission to[7] - and formed the starting point of - the World Wide Web Consortium (W3C) Web Ontology Working Group.[8] In 2004, the Web Ontology Working Group completed its work by issuing the OWL[9] recommendation. The design of OWL is based on the \mathcal{SH} family of DL[10] with OWL DL and OWL Lite based on \mathcal{SHOIN}^\mathcal{(D)} and \mathcal{SHIF}^\mathcal{(D)} respectively.[10]

The W3C OWL Working Group began work in 2007 on a refinement of - and extension to - OWL.[11] In 2009, this was completed by the issuance of the OWL2 recommendation.[12] OWL2 is based on the description logic \mathcal{SROIQ}^\mathcal{(D)}.[13] Practical experience demonstrated that OWL DL lacked several key features necessary to model complex domains.[1]

Modeling

In DL, a distinction is drawn between the so-called TBox (terminological box) and the ABox (assertional box). In general, the TBox contains sentences describing concept hierarchies (i.e., relations between concepts) while the ABox contains ground sentences stating where in the hierarchy individuals belong (i.e., relations between individuals and concepts). For example, the statement:

(1) Every employee is a person

belongs in the TBox, while the statement:

(2) Bob is an employee

belongs in the ABox.

Note that the TBox/ABox distinction is not significant, in the same sense that the two "kinds" of sentences are not treated differently in first-order logic (which subsumes most DL). When translated into first-order logic, a subsumption axiom like (1) is simply a conditional restriction to unary predicates (concepts) with only variables appearing in it. Clearly, a sentence of this form is not privileged or special over sentences in which only constants ("grounded" values) appear like (2).

So why was the distinction introduced? The primary reason is that the separation can be useful when describing and formulating decision-procedures for various DL. For example, a reasoner might process the TBox and ABox separately, in part because certain key inference problems are tied to one but not the other one ('classification' is related to the TBox, 'instance checking' to the ABox). Another example is that the complexity of the TBox can greatly affect the performance of a given decision-procedure for a certain DL, independently of the ABox. Thus, it is useful to have a way to talk about that specific part of the knowledge base.

The secondary reason is that the distinction can make sense from the knowledge base modeler's perspective. It is plausible to distinguish between our conception of terms/concepts in the world (class axioms in the TBox) and particular manifestations of those terms/concepts (instance assertions in the ABox). In the above example: when the hierarchy within a company is the same in every branch but the assignment to employees is different in every department (because there are other people working there), this distinction makes sense to reuse the TBox for different branches.

There are two features of Description Logic that are not shared by most other data description formalisms: DL does not make the Unique Name Assumption (UNA) or the Closed World Assumption (CWA). Not having UNA means that two concepts with different names may be allowed by some inference to be shown to be equivalent. Not having CWA, or rather having the Open World Assumption (OWA) means that lack of knowledge of a fact does not immediately imply knowledge of the negation of a fact.

Formal description

Like first order logic (FOL), a syntax defines which collections of symbols are legal expressions in a Description Logic (DL), and semantics determine meaning. Unlike FOL, a DL may have several well known syntactic variants.[5]

Syntax

The syntax of a member of the description logic family is characterized by its recursive definition, in which the constructors that can be used to form concept terms are stated. Some constructors are related to logical constructors in first-order logic (FOL) such as intersection or conjunction of concepts, union or disjunction of concepts, negation or complement of concepts, universal restriction and existential restriction. Other constructors have no corresponding construction in FOL including restrictions on roles for example, inverse, transitivity and functionality.

Notation

Let C and D be concepts, a and b be individuals, and R be a role.

Conventional Notation
Symbol Description Example Read
\top all concept names \top top
\bot empty concept \bot bottom
\sqcap intersection or conjunction of concepts C \sqcap D C and D
\sqcup union or disjunction of concepts C \sqcup D C or D
\neg negation or complement of concepts \neg C not C
\forall universal restriction \forall R.C all R-successors are in C
\exists existential restriction \exists R.C an R-successor exists in C
\sqsubseteq Concept inclusion C \sqsubseteq D all C are D
\equiv Concept equivalence C \equiv D C is equivalent to D
\dot = Concept definition C \dot = D C is defined to be equal to D
: Concept assertion a:C a is a C
: Role assertion (a,b):R a is R-related to b

The description logic ALC

The prototypical DL Attributive Concept Language with Complements (\mathcal{ALC}) was introduced by Manfred Schmidt-Schauß and Gert Smolka in 1991, and is the basis of many more expressive DL.[2] The following definitions follow the treatment in Baader et al.[2]

Let NC, NR and NO be (respectively) sets of concept names (also known as atomic concepts), role names and individual names (also known as individuals, nominals or objects). Then the ordered triple (NC, NR, NO ) is the signature.

Concepts

The set of \mathcal{ALC} concepts is the smallest set such that:

  • The following are concepts:
    • \top (top is a concept)
    • \bot (bottom is a concept)
    • Every A \in N_C (all atomic concepts are concepts)
  • If C and D are concepts and R \in N_R then the following are concepts:
    • C\sqcap D (the intersection of two concepts is a concept)
    • C\sqcup D (the union of two concepts is a concept)
    • \neg C (the complement of a concept is a concept)
    • \forall R.C (the universal restriction of a concept by a role is a concept)
    • \exists R.C (the existential restriction of a concept by a role is a concept)
Terminological axioms

A general concept inclusion (GCI) has the form C \sqsubseteq D where C and D are concepts. Write C \dot = D when C \sqsubseteq D and D \sqsubseteq C. A TBox is any finite set of GCIs.

Assertional axioms
  • A concept assertion is a statement of the form a:C where a \in N_O and C is a concept.
  • A role assertion is a statement of the form (a,b):R where a, b \in N_O and R is a role.

An ABox is a finite set of assertional axioms.

Knowledge base

A knowledge base (KB) is an ordered pair (\mathcal{T}, \mathcal{A}) for TBox \mathcal{T} and ABox \mathcal{A}.

Semantics

The semantics of description logic are defined by interpreting concepts as sets of individuals and roles as sets of pairs of individuals. Those individuals are typically assumed from a given domain. The semantics of non atomic concepts and roles is then defined in terms of atomic concepts and roles. This is done by using a recursive definition similar to the syntax.

The description logic ALC

The following definitions follow the treatment in Baader et al.[2]

A terminological interpretation \mathcal{I}=(\Delta^{\mathcal{I}}, \cdot^{\mathcal{I}}) over a signature (NC,NR,NO) consists of

  • a non-empty set \Delta^{\mathcal{I}} called the domain
  • a interpretation function \cdot^{\mathcal{I}} that maps:
    • every individual a to an element a^{\mathcal{I}} \in \Delta^{\mathcal{I}}
    • every concept to a subset of \Delta^{\mathcal{I}}
    • every role name to a subset of \Delta^{\mathcal{I}}  \times \Delta^{\mathcal{I}}

such that

Define \mathcal{I} \models (read I models) as follows

TBox
  • \mathcal{I} \models C \sqsubseteq D if and only if C^{\mathcal{I}} \subseteq D^{\mathcal{I}}
  • \mathcal{I} \models \mathcal{T} if and only if \mathcal{I} \models t for every t \in \mathcal{T}
ABox
  • \mathcal{I} \models a : C if and only if a^{\mathcal{I}} \in C^{\mathcal{I}}
  • \mathcal{I} \models (a,b) : R if and only if (a^{\mathcal{I}},b^{\mathcal{I}}) \in R^{\mathcal{I}}
  • \mathcal{I} \models \mathcal{A} if and only if \mathcal{I} \models a for every a \in \mathcal{A}
Knowledge base

Let \mathcal{K} = (\mathcal{T}, \mathcal{A}) be a knowledge base.

  • \mathcal{I} \models \mathcal{K} if and only if \mathcal{I} \models \mathcal{T} and \mathcal{I} \models \mathcal{A}

Inference

Decision problems

In addition to the ability to describe concepts formally, one also would like to employ the description of a set of concepts to ask questions about the concepts and instances described. The most common decision problems are basic database-query-like questions like instance checking (is a particular instance (member of an A-box) a member of a given concept) and relation checking (does a relation/role hold between two instances, in other words does a have property b), and the more global-database-questions like subsumption (is a concept a subset of another concept), and concept consistency (is there no contradiction among the definitions or chain of definitions). The more operators one includes in a logic and the more complicated the T-box (having cycles, allowing non-atomic concepts to include each other), usually the higher the computational complexity is for each of these problems (see Navigator on Description Logic Complexity for examples).

Relationship with other logic

First order logic

Many Description Logic models (DLs) are decidable fragments of first order logic (FOL).[2] Some DLs now include operations (for example, transitive closure of roles) that allow efficient inference but cannot be expressed in FOL.[2]

Fuzzy description logic

Fuzzy description logic combines fuzzy logic with DLs. Since many concepts that are needed for intelligent systems lack well defined boundaries, or precisely defined criteria of membership, fuzzy logic is needed to deal with notions of vagueness and imprecision. This offers a motivation for a generalization of description logic towards dealing with imprecise and vague concepts.

What people should also think about for intelligent systems is multiple viewpoints of the data. This will lead to subjective (as opposed to objective) intelligent systems.

Modal logic

Description Logic is related to — but developed independently of — modal logic (ML).[2] Many - but not all - DL are syntactic variants of ML.[2]

Examples

Syntactic Variants
DL ML
\mathcal{ALC} K[2]

Temporal description logic

Temporal description logic represents - and allow reasoning about - time dependent concepts and many different approaches to this problem exist.[14] For example, a description logic might be combined with a modal temporal logic such as Linear temporal logic.

See also

Notes

  1. ^ a b c Grau, B.; Horrocks, I.; Motik, B.; Parsia, B.; Patelschneider, P.; Sattler, U. (2008). "OWL 2: The next step for OWL". Web Semantics: Science, Services and Agents on the World Wide Web 6 (4): 309–322. doi:10.1016/j.websem.2008.05.001.  edit
  2. ^ a b c d e f g h i j k l m n o Franz Baader, Ian Horrocks, and Ulrike Sattler Chapter 3 Description Logics. In Frank van Harmelen, Vladimir Lifschitz, and Bruce Porter, editors, Handbook of Knowledge Representation. Elsevier, 2007.
  3. ^ a b Tsarkov, D.; Horrocks, I. (2006). "FaCT++ Description Logic Reasoner: System Description". Automated Reasoning. Lecture Notes in Computer Science. 4130. pp. 292–297. doi:10.1007/11814771_26. ISBN 978-3-540-37187-8. http://www.cs.ox.ac.uk/ian.horrocks/Publications/download/2006/TsHo06a.pdf.  edit
  4. ^ Sirin, E.; Parsia, B.; Grau, B.; Kalyanpur, A.; Katz, Y. (2007). "Pellet: A practical OWL-DL reasoner". Web Semantics: Science, Services and Agents on the World Wide Web 5 (2): 51–53. doi:10.1016/j.websem.2007.03.004. http://pellet.owldl.com/papers/sirin05pellet.pdf.  edit
  5. ^ a b Ian Horrocks and Ulrike Sattler Ontology Reasoning in the SHOQ(D) Description Logic, in Proceedings of the Seventeenth International Joint Conference on Artificial Intelligence, 2001.
  6. ^ Fensel, D.; Van Harmelen, F.; Horrocks, I.; McGuinness, D. L.; Patel-Schneider, P. F. (2001). "OIL: An ontology infrastructure for the Semantic Web". IEEE Intelligent Systems 16 (2): 38–45. doi:10.1109/5254.920598.  edit
  7. ^ Ian Horrocks and Peter F. Patel-Schneider The Generation of DAML+OIL. In Proceedings of the 2001 Description Logic Workshop (DL 2001), volume 49 of CEUR <http://ceur-ws.org/>, pages 30–35, 2001.
  8. ^ Web Ontology Working Group Charter, 2003
  9. ^ W3C Press Release, 2004
  10. ^ a b Horrocks, I. (2003). "From SHIQ and RDF to OWL: The making of a Web Ontology Language". Web Semantics: Science, Services and Agents on the World Wide Web 1: 7–26. doi:10.1016/j.websem.2003.07.001. http://www.comlab.ox.ac.uk/people/ian.horrocks/Publications/download/2003/HoPH03a.pdf.  edit
  11. ^ OWL Working Group Charter, 2007
  12. ^ Hitzler, Pascal; Krötzsch, Markus; Parsia, Bijan; Patel-Schneider, Peter F.; Rudolph, Sebastian (27 October 2009). "OWL 2 Web Ontology Language Primer". OWL 2 Web Ontology Language. World Wide Wed Consortium. http://www.w3.org/TR/2009/REC-owl2-primer-20091027/. Retrieved 2010-12-14. 
  13. ^ Pascal Hitzler, Markus Krötzsch, Sebastian Rudolph (August 25, 2009). Foundations of Semantic Web Technologies. CRCPress. ISBN 142009050X. http://www.semantic-web-book.org. 
  14. ^ Alessandro Artale and Enrico Franconi "Temporal Description Logics". In "Handbook of Temporal Reasoning in Artificial Intelligence", 2005.

References

Further reading

External links

Tools

Reasoners

There are some reasoners that deal with OWL and Description Logic. These are some of the most popular:

  • CEL is a free (for non-commercial use) LISP-based reasoner
  • Cerebra Engine was a commercial C++-based reasoner, acquired in 2006 by webMethods.
  • FaCT++ is a free open-source C++-based reasoner.
  • KAON2 is a free (free for non-commercial usage) Java reasoner.
  • MSPASS is a free open-source C reasoner for numerous description logic models.
  • Pellet is a dual-licensed (AGPL and proprietary) commercial, Java-based reasoner.
  • RacerPro of Racer Systems is a commercial (free trials and research licenses are available) lisp-based reasoner.
  • Sim-DL is a free open-source Java-based reasoner for the language ALCHQ. It also provides a similarity measurement functionality between concepts. To access this functionality a Protégé plugin can be used.
  • HermiT is an open source reasoner based on the hypertableaux calculus. It is developed by the University of Oxford.
Editors
  • Protégé is a free, open source ontology editor and knowledge-base framework, which can use DL reasoners which offer a DIG interface as backends for consistency checks.
  • SWOOP is an open source ontology editor originally developed at the University of Maryland.
Interfaces

Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • description logic — noun One of a family of knowledge representation languages which can be used to represent the concept definitions of an application domain (known as terminological knowledge) in a structured and formally well understood way …   Wiktionary

  • Logic Control — is a control surface originally designed by Emagic in cooperation with Mackie. HistoryLogic Control was first designed as a dedicated control surface for Emagic s Logic Digital Audio Workstation software. About 6 months later, Mackie re packaged… …   Wikipedia

  • Description — For other uses, see Description (disambiguation). Description is one of four rhetorical modes (also known as modes of discourse), along with exposition, argumentation, and narration. Each of the rhetorical modes is present in a variety of forms… …   Wikipedia

  • Logic — For other uses, see Logic (disambiguation). Philosophy …   Wikipedia

  • Logic design — In electronic design, logic design is a step in the standard design cycle in which the functional design of an electronic circuit is converted into the representation which captures logic operations, arithmetic operations, control flow, etc. A… …   Wikipedia

  • Description of a Career — DoaC redirects here. DoaC may also refer to Diary of a Camper. Description Of A Career (DOAC) is a semantic vocabulary created by Ramon A. Parada to describe professional capabilities of a worker. It has been designed to be compatible with the… …   Wikipedia

  • Description Logics — Beschreibungslogiken (engl. description logics) sind eine Familie von Sprachen zur Wissensrepräsentation. Die meisten Beschreibungslogiken sind eine Untermenge der Prädikatenlogik erster Stufe, im Gegensatz zu dieser aber entscheidbar. Dies… …   Deutsch Wikipedia

  • Logic synthesis — is a process by which an abstract form of desired circuit behavior (typically register transfer level (RTL) or behavioral) is turned into a design implementation in terms of logic gates. Common examples of this process include synthesis of HDLs,… …   Wikipedia

  • Logic simulation — is the use of a computer program to simulate the operation of a digital circuit. Logic simulation is the primary tool used for verifying the logical correctness of a hardware design. In many cases logic simulation is the first activity performed… …   Wikipedia

  • Logic optimization — a part of logic synthesis, is the process of finding an equivalent representation of the specified logic circuit under one or more specified constraints. Generally the circuit is constrained to minimum chip area meeting a prespecified delay.… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”