Ulrike Sattler. University of Manchester, UK. TU Dresden, Germany. Institut für Theoretische Informatik

Size: px
Start display at page:

Download "Ulrike Sattler. University of Manchester, UK. TU Dresden, Germany. Institut für Theoretische Informatik"

Transcription

1 Description Logics Basics, Applications, and More Ian Horrocks Information Management Group University of Manchester, UK Ulrike Sattler Institut für Theoretische Informatik, 1

2 Overview of the Tutorial History and Basics: Syntax, Semantics, ABoxes, Tboxes, Inference Problems and their interrelationship, and Relationship with other logical formalisms Applications of DLs: ER-diagrams with i.com demo, ontologies, etc. including system demonstration Reasoning Procedures: simple tableaux and why they work Reasoning Procedures II: more complex tableaux, non-standard inference problems Complexity issues Implementing/Optimising DL systems 2

3 Description Logics family of logic-based knowledge representation formalisms well-suited for the representation of and reasoning about terminological knowledge configurations ontologies database schemata... schema design, evolution, and query optimisation source integration in heterogeneous databases/data warehouses conceptual modelling of multidimensional aggregation descendents of semantics networks, frame-based systems, and KL-ONE aka terminological KR systems, concept languages, etc. 3

4 Description Logic Architecture of a Standard DL System Knowledge Base I N Terminology F E R E N Father = Man has child.... Human = Mammal Biped. Concrete Situation John:Human Father John has child Bill. C E S Y S T E M I N T E R F A C E 4

5 Introduction to DL I A Description Logic - mainly characterised by a set of constructors that allow to build complex concepts and roles from atomic ones, concepts correspond to classes / are interpreted as sets of objects, roles correspond to relations / are interpreted as binary relations on objects, Example: Happy Father in the DL ALC Man has-child.blue has-child.green has-child.happy Rich 5

6 Introduction to DL: Syntax and Semantics of ALC Semantics given by means of an interpretation I = I, I: Constructor Syntax Example Semantics atomic concept A Human A I I atomic role R likes R I I I For C, D concepts and R a role name conjunction C D Human Male C I D I disjunction C D Nice Rich C I D I negation C Meat I \ C I exists restrict. R.C has-child.human {x y. x, y R I y C I } value restrict. R.C has-child.blond {x y. x, y R I y C I } 6

7 Introduction to DL: Other DL Constructors Constructor Syntax Example Semantics number restriction n R 7 has-child {x {y. x, y R I } n} n R 1 has-mother {x {y. x, y R I } n} inverse role R has-child { x, y y, x R I } trans. role R has-child R I concrete domain u1,..., un.p h-father age, age. > {x u I 1,..., ui n P } etc. Many different DLs/DL constructors have been investigated 7

8 Introduction to DL: Knowledge Bases: TBoxes For terminological knowledge: TBox contains Concept definitions A = C A a concept name, C a complex concept Father = Man has-child.human Human = Mammal has-child.human introduce macros/names for concepts, can be acyclic Axioms C1 C2 Ci complex concepts favourite.brewery drinks.beer restrict your models An interpretation I satisfies a concept definition A. = C iff A I = C I an axiom C1 C2 iff C I 1 CI 2 a TBox T iff I satisfies all definitions and axioms in T I is a model of T 8

9 Introduction to DL: Knowledge Bases: ABoxes For assertional knowledge: ABox contains Concept assertions a : C a an individual name, C a complex concept John : Man has-child.male Happy Role assertions a1, a2 : R ai individual names, R a role John, Bill : has-child An interpretation I satisfies a concept assertion a : C iff a I C I a role assertion a1, a2 : R iff a I 1, ai 2 RI an ABox A iff I satisfies all assertions in A I is a model of A 9

10 Introduction to DL: Basic Inference Problems Subsumption: C D Is C I D I in all interpretations I? w.r.t. TBox T : C T D Is C I D I in all models I of T? structure your knowledge, compute taxonomy Consistency: Is C consistent w.r.t. T? Is there a model I of T with C I? of ABox A: Is A consistent? Is there a model of A? of KB T,A: Is T,A consistent? Is there a model of both T and A? Inference Problems are closely related: C T D iff C D is inconsistent w.r.t. T, no model of I has an instance of C D C is consistent w.r.t. T iff not C T A A Decision Procdures for consistency w.r.t. TBoxes suffice 10

11 Introduction to DL: Basic Inference Problems II For most DLs, the basic inference problems are decidable, with complexities between P and ExpTime. Why is decidability important? Why does semi-decidability not suffice? If subsumption and hence consistency is undecidable, and subsumption is semi-decidable, then consistency is not semi-decidable consistency is semi-decidable, then subsumption is not semi-decidable Quest for a highly expressive DL with practicable inference problems where expressiveness depends on the application practicability changed over the time 11

12 Introduction to DL: History Complexity of Inferences provided by DL systems over the time Investigation of Complexity of Inference Problems/Algorithms starts Undecidable KL-ONE NIKL Loom ExpTime Fact, DLP, Race PSpace Crack, Kris NP PTime Classic ATT late 80s early mid 90s 90s late 90s 12

13 Introduction to DL: State-of-the-implementation-art In the last 5 years, DL-based systems were built that can handle DLs far more expressive than ALC close relatives of converse-dpdl Number restrictions: people having at most 2 cats and exactly 1 dog Complex roles: inverse has-child child-of, transitive closure offspring has-child, role inclusion has-daughter has-child, etc. implement provably sound and complete inference algorithms for ExpTime-complete problems can handle large knowledge bases e.g., Galen medical terminology ontology: 2,740 concepts, 413 roles, 1,214 axioms are highly optimised versions of tableau-based algorithms perform surprisingly well on benchmarks for modal logic reasoners Tableaux 98, Tableaux 99 13

14 Relationship with Other Logical Formalisms: First Order Predicate Logic Most DLs are decidable fragments of FOL: Introduce a unary predicate A for a concept name A a binary relation R for a role name R Translate complex concepts C, D as follows: txa = Ax, tya = Ay, txc D = txc txd, tyc D = tyc tyd, txc D = txc txd, tyc D = tyc tyd, tx R.C = y.rx, y tyc, ty R.C = x.ry, x txc, tx R.C = y.rx, y tyc, ty R.C = x.ry, x txc.. A TBox T = {Ci = D i} is translated as ΦT = x. txci txdi 1 i n 14

15 Relationship with Other Logical Formalisms: First Order Predicate Logic II C is consistent iff its translation txc is satisfiable, C is consistent w.r.t. T iff its translation txc ΦT is satisfiable, C D iff txc txd is valid C T D iff Φt x.txc txd is valid. ALC is a fragment of FOL with 2 variables L2, known to be decidable ALC with inverse roles and Boolean operators on roles is a fragment of L2 further adding number restrictions yields a fragment of C2 L2 with counting quantifiers, known to be decidable in contrast to most DLs, adding transitive roles binary relations/ transitive closure operator to L2 leads to undecidability many DLs like many modal logics are fragments of the Guarded Fragment most DLs are less complex than L2: L2 is NExpTime-complete, most DLs are in ExpTime 15

16 Relationship with Other Logical Formalisms: Modal Logics DLs and Modal Logics are closely related: ALC multi-modal K: C D C D, C D C D C C, R.C R C, R.C [R]C transitive roles transitive frames e.g., in K4 regular expressions on roles regular expressions on programs e.g., in PDL inverse roles converse programs e.g., in C-PDL number restrictions deterministic programs e.g., in D-PDL no TBoxes available in modal logics internalise axioms using a universal role u: C. = D [u]c D no ABox available in modal logics use nominals 16

17 Applications of Description Logics Applications p. 1/9

18 Application Areas I Terminological KR and Ontologies DLs initially designed for terminological KR and reasoning Natural to use DLs to build and maintain ontologies Semantic Web Semantic markup will be added to web resources Aim is machine understandability Markup will use Ontologies to provide common terms of reference with clear semantics Requirement for web based ontology language Well defined semantics Builds on existing Web standards XML, RDF, RDFS Resulting language DAML+OIL is based on a DL SHIQ DL reasoning can be used to, e.g., Support ontology design and maintenance Classify resources w.r.t. ontologies Applications p. 2/9

19 Application Areas II Configuration Classic system used to configure telecoms equipment Characteristics of components described in DL KB Reasoner checks validity and price of configurations Software information systems LaSSIE system used DL KB for flexible software documentation and query answering Database applications... Applications p. 3/9

20 Database Schema and Query Reasoning DLR n-ary DL can capture semantics of many conceptual modelling methodologies e.g., EER Satisfiability preserving mapping to SHIQ allows use of DL reasoners e.g., FaCT, RACER DL Abox can also capture semantics of conjunctive queries Can reason about query containment w.r.t. schema DL reasoning can be used to support Schema design, evolution and query optimisation Source integration in heterogeneous databases/data warehouses Conceptual modelling of multidimensional aggregation E.g., I.COM Intelligent Conceptual Modelling tool Enrico Franconi Uses FaCT system to provide reasoning support for EER Applications p. 4/9

21 I.COM Demo Applications p. 5/9

22 Terminological KR and Ontologies General requirement for medical terminologies Static lists/taxonomies difficult to build and maintain Need to be very large and highly interconnected Inevitably contain many errors and omissions Galen project aims to replace static hierarchy with DL Describe concepts e.g., spiral fracture of left femur Use DL classifier to build taxonomy Needed expressive DL and efficient reasoning Descriptions use transitive/inverse roles, GCIs etc. Very large KBs tens of thousands of concepts Even prototype KB is very large 3,000 concepts Existing incomplete classifier took 24 hours to classify KB FaCT system sound and complete takes 60 seconds Applications p. 6/9

23 Reasoning Support for Ontology Design DL reasoner can be used to support design and maintenance Example is OilEd ontology editor for DAML+OIL Frame based interface like Protegé, OntoEdit, etc. Extended to clarify semantics and capture whole DAML+OIL language Slots explicitly existential or value restrictions Boolean connectives and nesting Properties for slot relations transitive, functional etc. General axioms Reasoning support for OilEd provided by FaCT system Frame representation translated into SHIQ Communicates with FaCT via CORBA interface Indicates inconsistencies and implicit subsumptions Can make implicit subsumptions explicit in KB Applications p. 7/9

24 DAML+OIL Medical Terminology Examples E.g., DAML+OIL medical terminology ontology Transitive roles capture transitive partonomy, causality, etc. Smoking causes.cancer plus Cancer causes.death Cancer FatalThing GCIs represent additional non-definitional knowledge Stomach-Ulcer =. Ulcer haslocation.stomach plus Stomach-Ulcer haslocation.lining-of-stomach Ulcer haslocation.stomach OrganLiningLesion Inverse roles capture e.g. causes/causedby relationship Death causedby.smoking PrematureDeath Smoking CauseOfPrematureDeath Cardinality restrictions add consistency constraints BloodPressure hasvalue.high Low 1hasValue plus High Low HighLowBloodPressure Applications p. 8/9

25 OilEd Demo Applications p. 9/9

26 Reasoning Procedures: Deciding Consistency of ALCN Concepts As a warm-up, we describe a tableau-based algorithm that decides consistency of ALCN concepts, tries to build a tree model I for input concept C0, breaks down C0 syntactically, inferring constraints on elements in I, uses tableau rules corresponding to operators in ALCN e.g.,, works non-deterministically, in PSpace stops when clash occurs terminates returns C0 is consistent iff C0 is consistent 17

27 Reasoning Procedures: Tableau Algorithm works on a tree semantics through viewing tree as an ABox: nodes represent elements of I, labelled with sub-concepts of C0 edges represent role-successorships between elements of I works on concepts in negation normal form: push negation inside using de Morgan laws and R.C R. C R.C R. C n R n + 1R n R n 1R n 1 0 R A A is initialised with a tree consisting of a single root node x0 with Lx0 = {C0}: a tree T contains a clash if, for a node x in T, {A, A} Lx or { m R, n R} Lx for n < m returns C0 is consistent if rules can be applied s.t. they yield clah-free, complete no more rules apply tree 18

28 Reasoning Procedures: ALC Tableau Rules x {C1 C2,...} x {C1 C2, C1, C2,...} x {C1 C2,...} x { R.C,...} x R x { R.C,...} R y {...} x y x R {C1 C2, C,...} for C {C1, C2} { R.C,...} {C} { R.C,...} y {..., C} 19

29 Reasoning Procedures: N Tableau Rules $%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$%$ *%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%*%* x { n R,...} x has no R-succ. x R merge two R-succs. { n R,...} x { n R,...}... R > n x R y {} { n R,...} 20

30 Reasoning Procedures: Soundness and Completeness Lemma Let C0 be an ALCN concept and T obtained by applying the tableau rules to C0. Then 1. the rule application terminates, 2. if T is clash-free and complete, then T defines canonical tree model for C0, and 3. if C0 has a model I, then the rules can be applied such that they yield a clash-free and complete T. Corollary 1 The tableau algorithm is a PSpace decision procedure for consistency and subsumption of ALCN concepts 2 ALCN has the tree model property 21

31 Reasoning Procedures: Soundness and Completeness II Proof of the Lemma 1. Termination The algorithm monotonically constructs a tree whose depth is linear in C0 : quantifier depth decreases from node to succs. breadth is linear in C0 even if number in NRs are coded binarily 2. Canonical model Complete, clash-free tree T defines a tree pre-model I: nodes x correspond to elements x I edges x R y define role-relationship x A I iff A Lx for concept names A Easy to that C Lx x C I if C n R If n R Lx, then x might have less than n R-successors, but the -rule ensures that there is 1 R-successor... 22

32 Reasoning Procedures: Soundness and Completeness III copy some R-successors including sub-trees to obtain n R-successors: = n x... R { n R,...} x... R { n R,...}... < n canonical tree model for input concept 3. Completeness Use model I of C0 to steer application of non-determistic rules, via mapping π : Nodes of Tree I with C Lx πx C I. This easily implies clash-freenes of the tree generated. 23

33 Make the Tableau Algorithm run in PSpace: To make the tableau algorithm run in PSpace: 1 observe that branches are independent from each other 2 observe that each node label requires linear space only 3 recall that paths are of length C0 4 construct/search the tree depth first 5 re-use space from already constructed branches space polynomial in C0 suffices for each branch/for the algorithm tableau algorithm runs in NPspace Savitch: NPspace = PSpace 24

34 Reasoning Procedures: Extensibility This tableau algorithm can be modified to a PSpace decision procedure for ALC with qualifying number restrictions n R C and n R C ALC with inverse roles has-child ALC with role conjunction R S.C and R S.C TBoxes with acyclic concept definitions: unfolding macro expansion is easy, but suboptimal: may yield exponential blow-up lazy unfolding unfolding on demand is optimal, consistency in PSpace decidable 25

35 Reasoning Procedures: Extensibility II Language extensions that require more elaborate techniques include TBoxes with general axioms Ci Di: each node must be labelled with Ci Di quantifier depth no longer decreases termination not guaranteed Transitive closure of roles: node labels R.C yields C in all R n -successor labels quantifier depth no longer decreases termination not guaranteed Use blocking cycle detection to ensure termination but the right blocking to retain soundness and completeness 26

36 Reasoning Procedures II Reasoning Procedures II p. 1/9

37 Non-Termination As already mentioned, for ALC with general axioms basic algorithm is non-terminating E.g. if human has-mother.human T, then human has-mother.human added to every node w Lw = {human, human has-mother.human, has-mother.human} has-mother x Lx = {human, human has-mother.human, has-mother.human} has-mother y Ly = {human, human has-mother.human, has-mother.human} Reasoning Procedures II p. 2/9

38 Blocking When creating new node, check ancestors for equal superset label If such a node is found, new node is blocked w Lw = {human, human has-mother.human, has-mother.human} has-mother Blocked x Lx = {human, human has-mother.human} Reasoning Procedures II p. 3/9

39 Blocking with More Expressive DLs Simple subset blocking may not work with more complex logics E.g., reasoning with inverse roles Expanding node label can affect predecessor Label of blocking node can affect predecessor E.g., testing C S.C w.r.t. Tbox T = { R. S. C, R.C} Blocked Ly = {C, R. S. C, R.C} w R y Lw = {C, S.C, R. S. C, R.C} S x Blocked Lx = {C, R. S. C, R.C} Reasoning Procedures II p. 4/9

40 Dynamic Blocking Solution for inverse roles is dynamic blocking Blocks can be established broken and re-established Continue to expand R.C terms in blocked nodes Check that cycles satisfy R.C concepts Ly = {C, R. S. C, R.C} w R y Lw = {C, S.C, R. S. C, R.C, S. C, C} S x Clash Lx = {C, R. S. C, R.C, S R. C} z Lz = {C, R. S. C, R.C} Reasoning Procedures II p. 5/9

41 Non-finite Models With number restrictions some satisfiable concepts have only non-finite models E.g., testing C w.r.t. T = { R.C, 1R } w Lw = { C, R.C, 1R } R x Lx = {C, R.C, 1R } R y Ly = {C, R.C, 1R } R model must be non-finite Reasoning Procedures II p. 6/9

42 Inadequacy of Dynamic Blocking With non-finite models, even dynamic blocking not enough E.g., testing C w.r.t. T = { R.C R. C, 1R } w Lw = { C, R.C R. C, 1R } R x Lx = {C R. C, R.C R. C, 1R, C, R. C} R Blocked y Ly = {C R. C, R.C R. C, 1R, C, R. C} But R. C Ly not satisfied Inconsistency due to 1R Ly and C Lx Reasoning Procedures II p. 7/9

43 Double Blocking I Problem due to R. C term only satisfied in predecessor of blocking node w Lw = { C, R.C R. C, 1R } R x Lx = {C R. C, R.C R. C, 1R, C, R. C} Solution is Double Blocking pairwise blocking Predecessors of blocked and blocking nodes also considered In particular, R.C terms satisfied in predecessor of blocking node must also be satisfied in predecessor of blocked node C Lw Reasoning Procedures II p. 8/9

44 Double Blocking II Due to pairwise condition, block no longer holds Expansion continues and contradiction discovered w Lw = { C, R.C R. C, 1R } R x Lx = {C R. C, R.C R. C, 1R, C, R. C, C} R Clash y Ly = {C R. C, R.C R. C, 1R, C, R. C} Reasoning Procedures II p. 9/9

45 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only I inverse roles: h-child N NRs: n h-child subsumption of FL0 co-np wrt acyc. TBoxes Q Qual. NRs: n h-child Blond O nominals: John is a concept R + declare roles as transitive F feature chain disagreement,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 27

46 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only I inverse roles: h-child N NRs: n h-child subsumption of FL0 co-np wrt acyc. TBoxes Q Qual. NRs: n h-child Blond O nominals: John is a concept R + declare roles as transitive F feature chain disagreement,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 28

47 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept R + declare roles as transitive F feature chain disagreement,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 29

48 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept R + declare roles as transitive F feature chain disagreement,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 30

49 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept R + declare roles as transitive F feature chain disagreement,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 31

50 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept R + declare roles as transitive F feature chain disagreement,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 32

51 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes ALCN O ALCO ALCHIQR + add role hierarchies I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement ALCF R fi, + gi declare functional roles roles as transitive f1... Boolean fn g1. ops.. gm on roles and f1... fn g1... gm ALC ALCIO wrt acyc. TBoxes ALC,, ALCF ALCIQO 33

52 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCIQR + ALCreg add regular roles ALCu add universal role ALC+ GCIs wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement R + declare roles as transitive,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 34

53 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCreg ALCIQR + ALC add regular roles ALCu add universal role wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, R declare roles as transitive + ALCF,, Boolean ops on roles wrt acyc. TBoxes 35

54 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCreg ALCIQR + ALC add regular roles ALCu add universal role wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, R declare roles as transitive + ALCF,, Boolean ops on roles wrt acyc. TBoxes 36

55 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCreg ALCIQR + ALC add regular roles ALCu add universal role wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, R declare roles as transitive + ALCF,, Boolean ops on roles wrt acyc. TBoxes 37

56 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCreg ALCIQR + ALC add regular roles ALCu add universal role wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement R + declare roles as transitive,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 38

57 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCreg ALCIQR + ALC add regular roles ALCu add universal role wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement R + declare roles as transitive,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 39

58 Complexity of DLs: Overview of the Complexity of Concept Consistency P co-np PSpace ExpTime NExpTime ALN without ALUN NP without, only A ALE co-np without and NRs, only A ALCN wrt acyc. TBoxes ALCreg ALCIQR + ALC add regular roles ALCu add universal role wrt general TBoxes + QI still in ExpTime subsumption of FL0 and only subsumption of FL0 co-np wrt acyc. TBoxes I inverse roles: h-child N NRs: n h-child Q Qual. NRs: n h-child Blond O nominals: John is a concept F feature chain disagreement R + declare roles as transitive,, Boolean ops on roles ALCN O ALCO ALCF ALCHIQR + add role hierarchies ALCIO ALC ALCIQO ALC,, ALCF wrt acyc. TBoxes 40

59 Complexity of DLs: What was left out We left out a variety of complexity results for concept consistency of other DLs e.g., those with concrete domains other standard inferences e.g., deciding consistency of ABoxes w.r.t. TBoxes non-standard inferences such as matching and unification of concepts rewriting concepts least common subsumer of a set of concepts most specific concept of an ABox individual 41

60 Implementing DL Systems Implementation p. 1/14

61 Naive Implementations Problems include: Space usage Storage required for tableaux datastructures Rarely a serious problem in practice Time usage Search required due to non-deterministic expansion Serious problem in practice Mitigated by: Careful choice of algorithm Highly optimised implementation Implementation p. 2/14

62 Careful Choice of Algorithm Transitive roles instead of transitive closure Deterministic expansion of R.C, even when R R+ Relatively simple blocking conditions Cycles always represent part of cyclical models Direct algorithm/implementation instead of encodings GCI axioms can be used to encode additional operators/axioms Powerful technique, particularly when used with FL closure Can encode cardinality constraints, inverse roles, range/domain,... E.g., domain R.C R. C FL encodings introduce large numbers of axioms BUT even simple domain encoding is disastrous with large numbers of roles Implementation p. 3/14

63 Highly Optimised Implementation Optimisation performed at 2 levels Computing classification partial ordering of concepts Objective is to minimise number of subsumption tests Can use standard order-theoretic techniques E.g., use enhanced traversal that exploits information from previous tests Also use structural information from KB E.g., to select order in which to classify concepts Computing subsumption between concepts Objective is to minimise cost of single subsumption tests Small number of hard tests can dominate classification time Recent DL research has addressed this problem with considerable success Implementation p. 4/14

64 Optimising Subsumption Testing Optimisation techniques broadly fall into 2 categories Pre-processing optimisations Aim is to simplify KB and facilitate subsumption testing Largely algorithm independent Particularly important when KB contains GCI axioms Algorithmic optimisations Main aim is to reduce search space due to non-determinism Integral part of implementation But often generally applicable to search based algorithms Implementation p. 5/14

65 Pre-processing Optimisations Useful techniques include Normalisation and simplification of concepts Refinement of technique first used in KRIS system Lexically normalise and simplify all concepts in KB Combine with lazy unfolding in tableaux algorithm Facilitates early detection of inconsistencies clashes Absorption simplification of general axioms Eliminate GCIs by absorbing into definition axioms Definition axioms efficiently dealt with by lazy expansion Avoidance of potentially costly reasoning whenever possible Normalisation can discover obvious unsatisfiability Structural analysis can discover obvious subsumption Implementation p. 6/14

66 Normalisation and Simplification Normalise concepts to standard form, e.g.: R.C R. C C D C D Simplify concepts, e.g.: D C A D A C D R.... C... C... Lazily unfold concepts in tableaux algorithm Use names/pointers to refer to complex concepts Only add structure as required by progress of algorithm Detect clashes between lexically equivalent concepts {HappyFather, HappyFather} clash { has-child.doctor Lawyer, has-child. Doctor Lawyer} search Implementation p. 7/14

67 Absorption I Reasoning w.r.t. set of GCI axioms can be very costly GCI C D adds D C to every node label Expansion of disjunctions leads to search With 10 axioms and 10 nodes search space already GALEN medical terminology KB contains hundreds of axioms Reasoning w.r.t. primitive definition axioms is relatively efficient For CN D, add D only to node labels containing CN For CN D, add D only to node labels containing CN Can expand definitions lazily Only add definitions after other local propositional expansion Only add definitions one step at a time Implementation p. 8/14

68 Absorption II Transform GCIs into primitive definitions, e.g. CN C D CN D C CN C D CN D C Absorb into existing primitive definitions, e.g. CN A, CN D C CN A D C CN A, CN D C CN A D C Use lazy expansion technique with primitive definitions Disjunctions only added to relevant node labels Performance improvements often too large to measure At least four orders of magnitude with GALEN KB Implementation p. 9/14

69 Algorithmic Optimisations Useful techniques include Avoiding redundancy in search branches Davis-Putnam style semantic branching search Syntactic branching with no-good list Dependency directed backtracking Backjumping Dynamic backtracking Caching Cache partial models Cache satisfiability status of labels Heuristic ordering of propositional and modal expansion Min/maximise constrainedness e.g., MOMS Maximise backtracking e.g., oldest first Implementation p. 10/14

70 Dependency Directed Backtracking Allows rapid recovery from bad branching choices Most commonly used technique is backjumping Tag concepts introduced at branch points e.g., when expanding disjunctions Expansion rules combine and propagate tags On discovering a clash, identify most recently introduced concepts involved Jump back to relevant branch points without exploring alternative branches Effect is to prune away part of the search space Performance improvements with GALEN KB again too large to measure Implementation p. 11/14

71 Backjumping E.g., if R. A R.A B C1 D1... Cn Dn Lx Backjump x Pruning Lx {Cn-1} Lx {C1} Lx { C1, D1} x x Lx { C2, D2} Lx {Cn} x x Lx { Cn, Dn} Ly = {A B, A, A, B} R R y y Ly = {A B, A, A, B} Clash Clash Clash... Clash Implementation p. 12/14

72 Caching Cache the satisfiability status of a node label Identical node labels often recur during expansion Avoid re-solving problems by caching satisfiability status When Lx initialised, look in cache Use result, or add status once it has been computed Can use sub/super set caching to deal with similar labels Care required when used with blocking or inverse roles Significant performance gains with some kinds of problem Cache partial models of concepts Use to detect obvious non-subsumption C D if C D is satisfiable C D satisfiable if models of C and D can be merged If not, continue with standard subsumption test Can use same technique in sub-problems Implementation p. 13/14

73 Summary Naive implementation results in effective non-termination Problem is caused by non-deterministic expansion search GCIs lead to huge search space Solution partial is Careful choice of logic/algorithm Avoid encodings Highly optimised implementation Most important optimisations are Absorption Dependency directed backtracking backjumping Caching Performance improvements can be very large E.g., more than four orders of magnitude Implementation p. 14/14

74 DL Resources The official DL homepage: The DL mailing list: Patrick Lambrix s very useful DL site including lots of interesting links: The annual DL workshop: DL2002 co-located KR2002: Proceedings on-line available at: The OIL homepage: More about i com: More about FaCT: 42

Reasoning with Expressive Description Logics: Theory and Practice

Reasoning with Expressive Description Logics: Theory and Practice Reasoning with Expressive Description Logics: Theory and Practice Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK Reasoning with Expressive DLs p.1/39 Talk Outline Introduction

More information

Nonstandard Inferences in Description Logics

Nonstandard Inferences in Description Logics Nonstandard Inferences in Description Logics Franz Baader Theoretical Computer Science Germany Short introduction to Description Logics Application in chemical process engineering Non-standard inferences

More information

Description Logic: Axioms and Rules

Description Logic: Axioms and Rules Description Logic: Axioms and Rules Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK Dagstuhl Rule Markup Techniques, 7th Feb 2002 p.1/51 Talk Outline Motivation: The Semantic

More information

l A family of logic based KR formalisms l Distinguished by: l Decidable fragments of FOL l Closely related to Propositional Modal & Dynamic Logics

l A family of logic based KR formalisms l Distinguished by: l Decidable fragments of FOL l Closely related to Propositional Modal & Dynamic Logics What Are Description Logics? Description Logics l A family of logic based KR formalisms Descendants of semantic networks and KL-ONE Describe domain in terms of concepts (classes), roles (relationships)

More information

DAML+OIL and Description Logic Reasoning

DAML+OIL and Description Logic Reasoning DAML+OIL and Description Logic Reasoning Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK Reasoning with Expressive DLs p. 1/47 Talk Outline The Semantic Web and DAML+OIL Description

More information

Reasoning with DAML+OIL:

Reasoning with DAML+OIL: Reasoning with DAML+OIL: What can it do for YOU? Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK DAML PI meeting, Nashua, July 2001 p.1/9 DAML+OIL Language Overview DAML+OIL

More information

Description Logics and OWL

Description Logics and OWL Description Logics and OWL Based on slides from Ian Horrocks University of Manchester (now in Oxford) Where are we? OWL Reasoning DL Extensions Scalability OWL OWL in practice PL/FOL XML RDF(S)/SPARQL

More information

Optimised Classification for Taxonomic Knowledge Bases

Optimised Classification for Taxonomic Knowledge Bases Optimised Classification for Taxonomic Knowledge Bases Dmitry Tsarkov and Ian Horrocks University of Manchester, Manchester, UK {tsarkov horrocks}@cs.man.ac.uk Abstract Many legacy ontologies are now being

More information

Towards Efficient Reasoning for Description Logics with Inverse Roles

Towards Efficient Reasoning for Description Logics with Inverse Roles Towards Efficient Reasoning for Description Logics with Inverse Roles Yu Ding and Volker Haarslev Concordia University, Montreal, Quebec, Canada {ding yu haarslev}@cse.concordia.ca Abstract This paper

More information

Explaining Subsumption in ALEHF R + TBoxes

Explaining Subsumption in ALEHF R + TBoxes Explaining Subsumption in ALEHF R + TBoxes Thorsten Liebig and Michael Halfmann University of Ulm, D-89069 Ulm, Germany liebig@informatik.uni-ulm.de michael.halfmann@informatik.uni-ulm.de Abstract This

More information

AI Fundamentals: Knowledge Representation and Reasoning. Maria Simi

AI Fundamentals: Knowledge Representation and Reasoning. Maria Simi AI Fundamentals: Knowledge Representation and Reasoning Maria Simi Description logics LESSON 6: SYNTAX AND SEMANTICS, DECISION PROBLEMS, INFERENCE Categories and objects [AIMA, Cap 12] Most of the reasoning

More information

LTCS Report. Concept Descriptions with Set Constraints and Cardinality Constraints. Franz Baader. LTCS-Report 17-02

LTCS Report. Concept Descriptions with Set Constraints and Cardinality Constraints. Franz Baader. LTCS-Report 17-02 Technische Universität Dresden Institute for Theoretical Computer Science Chair for Automata Theory LTCS Report Concept Descriptions with Set Constraints and Cardinality Constraints Franz Baader LTCS-Report

More information

Optimising Terminological Reasoning for Expressive Description Logics

Optimising Terminological Reasoning for Expressive Description Logics Optimising Terminological Reasoning for Expressive Description Logics Dmitry Tsarkov, Ian Horrocks and Peter F. Patel-Schneider School of Computer Science University of Manchester, UK, and Bell Labs Research

More information

Description Logic. Eva Mráková,

Description Logic. Eva Mráková, Description Logic Eva Mráková, glum@fi.muni.cz Motivation: ontology individuals/objects/instances ElizabethII Philip Philip, Anne constants in FOPL concepts/classes/types Charles Anne Andrew Edward Male,

More information

Description Logics for Conceptual Data Modeling in UML

Description Logics for Conceptual Data Modeling in UML Description Logics for Conceptual Data Modeling in UML Giuseppe De Giacomo Dipartimento di Informatica e Sistemistica SAPIENZA Università di Roma Description Logics G. De Giacomo Description Logics for

More information

Week 4. COMP62342 Sean Bechhofer, Uli Sattler

Week 4. COMP62342 Sean Bechhofer, Uli Sattler Week 4 COMP62342 Sean Bechhofer, Uli Sattler sean.bechhofer@manchester.ac.uk, uli.sattler@manchester.ac.uk Today Some clarifications from last week s coursework More on reasoning: extension of the tableau

More information

Description Logics as Ontology Languages for Semantic Webs

Description Logics as Ontology Languages for Semantic Webs Description Logics as Ontology Languages for Semantic Webs Franz Baader, Ian Horrocks, and Ulrike Sattler Presented by:- Somya Gupta(10305011) Akshat Malu (10305012) Swapnil Ghuge (10305907) Presentation

More information

Scalability via Parallelization of OWL Reasoning

Scalability via Parallelization of OWL Reasoning Scalability via Parallelization of OWL Reasoning Thorsten Liebig, Andreas Steigmiller, and Olaf Noppens Institute for Artificial Intelligence, Ulm University 89069 Ulm, Germany firstname.lastname@uni-ulm.de

More information

Searching for the Holy Grail. Ian Horrocks Information Systems Group Oxford University Computing Laboratory

Searching for the Holy Grail. Ian Horrocks Information Systems Group Oxford University Computing Laboratory Searching for the Holy Grail Ian Horrocks Information Systems Group Oxford University Computing Laboratory Background and Motivation Medicine has a large and complex vocabulary

More information

Appendix 1. Description Logic Terminology

Appendix 1. Description Logic Terminology Appendix 1 Description Logic Terminology Franz Baader Abstract The purpose of this appendix is to introduce (in a compact manner) the syntax and semantics of the most prominent DLs occurring in this handbook.

More information

Appendix 1. Description Logic Terminology

Appendix 1. Description Logic Terminology Appendix 1 Description Logic Terminology Franz Baader Abstract The purpose of this appendix is to introduce (in a compact manner) the syntax and semantics of the most prominent DLs occurring in this handbook.

More information

An Overview of Tableau Algorithms for Description Logics Λ

An Overview of Tableau Algorithms for Description Logics Λ An Overview of Tableau Algorithms for Description Logics Λ Franz Baader (baader@cs.rwth-aachen.de) and Ulrike Sattler (sattler@cs.rwth-aachen.de) LuFG Theoretical Computer Science, RWTH Aachen, Germany

More information

OWL and tractability. Based on slides from Ian Horrocks and Franz Baader. Combining the strengths of UMIST and The Victoria University of Manchester

OWL and tractability. Based on slides from Ian Horrocks and Franz Baader. Combining the strengths of UMIST and The Victoria University of Manchester OWL and tractability Based on slides from Ian Horrocks and Franz Baader Where are we? OWL Reasoning DL Extensions Scalability OWL OWL in practice PL/FOL XML RDF(S)/SPARQL Practical Topics Repetition: DL

More information

Ontologies and the Web Ontology Language OWL

Ontologies and the Web Ontology Language OWL Chapter 7 Ontologies and the Web Ontology Language OWL vocabularies can be defined by RDFS not so much stronger than the ER Model or UML (even weaker: no cardinalities) not only a conceptual model, but

More information

A Tableaux Decision Procedure for SHOIQ

A Tableaux Decision Procedure for SHOIQ A Tableaux Decision Procedure for SHOIQ Ian Horrocks and Ulrike Sattler School of Computer Science, University of Manchester, UK horrocks sattler@csmanacuk Abstract This paper presents a tableaux decision

More information

Description Logic: A Formal Foundation for Ontology Languages and Tools

Description Logic: A Formal Foundation for Ontology Languages and Tools Description Logic: A Formal Foundation for Ontology Languages and Tools Part 2: Tools Ian Horrocks Information Systems Group Oxford University Computing Laboratory Contents

More information

Logik für Informatiker Logic for computer scientists. Ontologies: Description Logics

Logik für Informatiker Logic for computer scientists. Ontologies: Description Logics Logik für Informatiker for computer scientists Ontologies: Description s WiSe 2009/10 Ontology languages description logics (efficiently decidable fragments of first-order logic) used for domain ontologies

More information

Principles of Knowledge Representation and Reasoning

Principles of Knowledge Representation and Reasoning Principles of Knowledge Representation and Semantic Networks and Description Logics II: Description Logics Terminology and Notation Albert-Ludwigs-Universität Freiburg Bernhard Nebel, Stefan Wölfl, and

More information

Description Logics. F. Description Logics. This section is based on material from Ian Horrocks:

Description Logics. F. Description Logics. This section is based on material from Ian Horrocks: Description Logics F. Description Logics OWL DL ist äquivalent zur Beschreibungslogik SHOIN(D n ). Auf letzterer basiert also die Semantik von OWL DL. Unter Beschreibungslogiken (Description Logics) versteht

More information

OWL 2 Profiles. An Introduction to Lightweight Ontology Languages. Markus Krötzsch University of Oxford. Reasoning Web 2012

OWL 2 Profiles. An Introduction to Lightweight Ontology Languages. Markus Krötzsch University of Oxford. Reasoning Web 2012 University of Oxford Department of Computer Science OWL 2 Profiles An Introduction to Lightweight Ontology Languages Markus Krötzsch University of Oxford Reasoning Web 2012 Remark for the Online Version

More information

OPTIMISING TABLEAUX DECISION PROCEDURES FOR DESCRIPTION LOGICS

OPTIMISING TABLEAUX DECISION PROCEDURES FOR DESCRIPTION LOGICS OPTIMISING TABLEAUX DECISION PROCEDURES FOR DESCRIPTION LOGICS A thesis submitted to the University of Manchester for the degree of Doctor of Philosophy in the Faculty of Science and Engineering 1997 By

More information

Ordering Heuristics for Description Logic Reasoning

Ordering Heuristics for Description Logic Reasoning Ordering Heuristics for Description Logic Reasoning Dmitry Tsarkov and Ian Horrocks School of Computer Science University of Manchester Manchester, UK traskov horrocks@cs.man.ac.uk Abstract We present

More information

Description Logics Reasoning Algorithms Concluding Remarks References. DL Reasoning. Stasinos Konstantopoulos. IIT, NCSR Demokritos

Description Logics Reasoning Algorithms Concluding Remarks References. DL Reasoning. Stasinos Konstantopoulos. IIT, NCSR Demokritos Stasinos Konstantopoulos 10-3-2006 Overview Description Logics Definitions Some Family Members Reasoning Algorithms Introduction Resolution Calculus Tableau Calculus Concluding Remarks Definitions The

More information

Presented By Aditya R Joshi Neha Purohit

Presented By Aditya R Joshi Neha Purohit Presented By Aditya R Joshi Neha Purohit Pellet What is Pellet? Pellet is an OWL- DL reasoner Supports nearly all of OWL 1 and OWL 2 Sound and complete reasoner Written in Java and available from http://

More information

OWL 2 The Next Generation. Ian Horrocks Information Systems Group Oxford University Computing Laboratory

OWL 2 The Next Generation. Ian Horrocks Information Systems Group Oxford University Computing Laboratory OWL 2 The Next Generation Ian Horrocks Information Systems Group Oxford University Computing Laboratory What is an Ontology? What is an Ontology? A model of (some aspect

More information

OWL an Ontology Language for the Semantic Web

OWL an Ontology Language for the Semantic Web OWL an Ontology Language for the Semantic Web Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK OWL p. 1/27 Talk Outline OWL p. 2/27 Talk Outline The Semantic Web OWL p. 2/27 Talk

More information

2 Subsumption testing. Abstract. 1 Introduction. 3 Performance

2 Subsumption testing. Abstract. 1 Introduction. 3 Performance Í Ò Ö ÔØ ÓÒ ÄÓ Û Ø ÓÒ ÔØ ÁÒÐÙ ÓÒ Ian Horrocks and Alan Rector Medical Informatics Group Department of Computer Science University of Manchester Oxford Road, Manchester M13 9PL, UK (horrocks rector@cs.man.ac.uk)

More information

Semantic reasoning for dynamic knowledge bases. Lionel Médini M2IA Knowledge Dynamics 2018

Semantic reasoning for dynamic knowledge bases. Lionel Médini M2IA Knowledge Dynamics 2018 Semantic reasoning for dynamic knowledge bases Lionel Médini M2IA Knowledge Dynamics 2018 1 Outline Summary Logics Semantic Web Languages Reasoning Web-based reasoning techniques Reasoning using SemWeb

More information

Evaluating a modular Abox algorithm

Evaluating a modular Abox algorithm Evaluating a modular Abox algorithm Sergio Tessaris, Ian Horrocks and Graham Gough Department of Computer Science University of Manchester Manchester, UK {tessaris horrocks gough}@cs.man.ac.uk Abstract

More information

Computing least common subsumers for FLE +

Computing least common subsumers for FLE + Computing least common subsumers for FLE + Sebastian Brandt and Anni-Yasmin Turhan Theoretical Computer Science, TU Dresden, Germany Email: {brandt, turhan}@tcs.inf.tu-dresden.de Abstract Transitive roles

More information

! model construction

! model construction Logics of Image Interpretation 1 Describing Image Interpretation in Logical Terms In 2D images (with possible occlusions) we never see the complete 3D reality.? deduction! model construction "from the

More information

Logical Foundations for the Semantic Web

Logical Foundations for the Semantic Web Logical Foundations for the Semantic Web Reasoning with Expressive Description Logics: Theory and Practice Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK Logical Foundations

More information

Converting Instance Checking to Subsumption: A Rethink for Object Queries over Practical Ontologies

Converting Instance Checking to Subsumption: A Rethink for Object Queries over Practical Ontologies International Journal of Intelligence Science, 2015, 5, 44-62 Published Online January 2015 in SciRes. http://www.scirp.org/journal/ijis http://dx.id.org/10.4236/ijis.2015.51005 Converting Instance Checking

More information

DL Reasoner vs. First-Order Prover

DL Reasoner vs. First-Order Prover DL Reasoner vs. First-Order Prover Dmitry Tsarkov and Ian Horrocks Department of Computer Science The University of Manchester Manchester, UK {tsarkov horrocks}@cs.man.ac.uk Abstract We compare the performance

More information

THE DESCRIPTION LOGIC HANDBOOK: Theory, implementation, and applications

THE DESCRIPTION LOGIC HANDBOOK: Theory, implementation, and applications THE DESCRIPTION LOGIC HANDBOOK: Theory, implementation, and applications Edited by Franz Baader Deborah L. McGuinness Daniele Nardi Peter F. Patel-Schneider Contents List of contributors page 1 1 An Introduction

More information

Scalable Ontology-Based Information Systems

Scalable Ontology-Based Information Systems Scalable Ontology-Based Information Systems Ian Horrocks Information Systems Group Oxford University Computing Laboratory What is an Ontology? What is an Ontology? A model

More information

A Knowledge Compilation Technique for ALC Tboxes

A Knowledge Compilation Technique for ALC Tboxes A Knowledge Compilation Technique for ALC Tboxes Ulrich Furbach and Heiko Günther and Claudia Obermaier University of Koblenz Abstract Knowledge compilation is a common technique for propositional logic

More information

On the Scalability of Description Logic Instance Retrieval

On the Scalability of Description Logic Instance Retrieval On the Scalability of Description Logic Instance Retrieval Ralf Möller, Volker Haarslev, Michael Wessel 1 Introduction Although description logics (DLs) are becoming more and more expressive, our experience

More information

On the Scalability of Description Logic Instance Retrieval

On the Scalability of Description Logic Instance Retrieval On the Scalability of Description Logic Instance Retrieval V. Haarslev 1, R. Moeller 2, M. Wessel 2 1 Concordia University, Montreal 2 Hamburg University of Technology (TUHH) 1 Supported by EU Project

More information

Implementing an ALCRP(D) ABox Reasoner Progress Report. 2 The Implementation. 1 Introduction. 2.1 Preprocessing. 2.

Implementing an ALCRP(D) ABox Reasoner Progress Report. 2 The Implementation. 1 Introduction. 2.1 Preprocessing. 2. Implementing an ALCRP(D) ABox Reasoner Progress Report Volker Haarslev and Ralf Möller and Anni-Yasmin Turhan University of Hamburg, Computer Science Department, Vogt-Kölln-Str. 30, 22527 Hamburg, Germany

More information

Extending Datatype Support in Web Ontology Reasoning

Extending Datatype Support in Web Ontology Reasoning Extending Datatype Support in Web Ontology Reasoning Jeff Z. Pan and Ian Horrocks Information Management Group Department of Computer Science University of Manchester Oxford Road, Manchester M13 9PL, UK

More information

Representing Product Designs Using a Description Graph Extension to OWL 2

Representing Product Designs Using a Description Graph Extension to OWL 2 Representing Product Designs Using a Description Graph Extension to OWL 2 Henson Graves Lockheed Martin Aeronautics Company Fort Worth Texas, USA henson.graves@lmco.com Abstract. Product development requires

More information

RELATIONAL REPRESENTATION OF ALN KNOWLEDGE BASES

RELATIONAL REPRESENTATION OF ALN KNOWLEDGE BASES RELATIONAL REPRESENTATION OF ALN KNOWLEDGE BASES Thomas Studer ABSTRACT The retrieval problem for a knowledge base O and a concept C is to find all individuals a such that O entails C(a). We describe a

More information

Practical Reasoning for Description Logics with Functional Restrictions, Inverse and Transitive Roles, and Role Hierarchies

Practical Reasoning for Description Logics with Functional Restrictions, Inverse and Transitive Roles, and Role Hierarchies Practical Reasoning for Description Logics with Functional Restrictions, Inverse and Transitive Roles, and Role Hierarchies Ian Horrocks Department of Computer Science, University of Manchester Ulrike

More information

Semantic Web Ontologies

Semantic Web Ontologies Semantic Web Ontologies CS 431 April 4, 2005 Carl Lagoze Cornell University Acknowledgements: Alun Preece RDF Schemas Declaration of vocabularies classes, properties, and structures defined by a particular

More information

Racer - An Inference Engine for the Semantic Web

Racer - An Inference Engine for the Semantic Web Racer - An Inference Engine for the Semantic Web Concordia University Department of Computer Science and Software Enineering http://www.cse.concordia.ca/~haarslev/ Collaboration with: Ralf Möller, Hamburg

More information

Introduction to Description Logics

Introduction to Description Logics Introduction to Description Logics Outline History of DLs Informal introduction to DLs A Simple DL: ALC Semantics of ALC Reasoning problems in ALC The DLs ALCN, ALCQ and ALCQO Translating DLs to FOL DLs:

More information

Knowledge Engineering with Semantic Web Technologies

Knowledge Engineering with Semantic Web Technologies This file is licensed under the Creative Commons Attribution-NonCommercial 3.0 (CC BY-NC 3.0) Knowledge Engineering with Semantic Web Technologies Lecture 3 Ontologies and Logic 3.7 Description Logics

More information

Get my pizza right: Repairing missing is-a relations in ALC ontologies

Get my pizza right: Repairing missing is-a relations in ALC ontologies Get my pizza right: Repairing missing is-a relations in ALC ontologies Patrick Lambrix, Zlatan Dragisic and Valentina Ivanova Linköping University Sweden 1 Introduction Developing ontologies is not an

More information

SEMANTIC WEB AND COMPARATIVE ANALYSIS OF INFERENCE ENGINES

SEMANTIC WEB AND COMPARATIVE ANALYSIS OF INFERENCE ENGINES SEMANTIC WEB AND COMPARATIVE ANALYSIS OF INFERENCE ENGINES Ms. Neha Dalwadi 1, Prof. Bhaumik Nagar 2, Prof. Ashwin Makwana 1 1 Computer Engineering, Chandubhai S Patel Institute of Technology Changa, Dist.

More information

From Tableaux to Automata for Description Logics

From Tableaux to Automata for Description Logics Fundamenta Informaticae XX (2003) 1 33 1 IOS Press From Tableaux to Automata for Description Logics Franz Baader, Jan Hladik, and Carsten Lutz Theoretical Computer Science, TU Dresden, D-01062 Dresden,

More information

OWL Rules, OK? Ian Horrocks Network Inference Carlsbad, CA, USA

OWL Rules, OK? Ian Horrocks Network Inference Carlsbad, CA, USA OWL Rules, OK? Ian Horrocks Network Inference Carlsbad, CA, USA ian.horrocks@networkinference.com Abstract Although the OWL Web Ontology Language adds considerable expressive power to the Semantic Web

More information

COMBINING INTEGER PROGRAMMING AND TABLEAU-BASED REASONING: A HYBRID CALCULUS FOR THE DESCRIPTION LOGIC SHQ

COMBINING INTEGER PROGRAMMING AND TABLEAU-BASED REASONING: A HYBRID CALCULUS FOR THE DESCRIPTION LOGIC SHQ COMBINING INTEGER PROGRAMMING AND TABLEAU-BASED REASONING: A HYBRID CALCULUS FOR THE DESCRIPTION LOGIC SHQ Nasim Farsiniamarj A thesis in The Department of Computer Science and Software Engineering Presented

More information

SEMANTICS. Retrieval by Meaning

SEMANTICS. Retrieval by Meaning SEMANTICS 1 Retrieval by Meaning Query: "Accident of a Mercedes" Retrieved image: Methods for retrieval by meaning: high-level image understanding beyond state-of-the-art except easy cases natural language

More information

Description Logic Systems with Concrete Domains: Applications for the Semantic Web

Description Logic Systems with Concrete Domains: Applications for the Semantic Web Description Logic Systems with Concrete Domains: Applications for the Semantic Web Volker Haarslev and Ralf Möller Concordia University, Montreal University of Applied Sciences, Wedel Abstract The Semantic

More information

Ontologies and OWL. Riccardo Rosati. Knowledge Representation and Semantic Technologies

Ontologies and OWL. Riccardo Rosati. Knowledge Representation and Semantic Technologies Knowledge Representation and Semantic Technologies Ontologies and OWL Riccardo Rosati Corso di Laurea Magistrale in Ingegneria Informatica Sapienza Università di Roma 2016/2017 The Semantic Web Tower Ontologies

More information

Reasoning and Query Answering in Description Logics

Reasoning and Query Answering in Description Logics Reasoning and Query Answering in Description Logics Magdalena Ortiz Vienna University of Technology AMW School, 20 May 2013 1/117 Reasoning and Querying in DLs 1. Motivation Ontologies An ontology is a

More information

A platform for distributing and reasoning with OWL-EL knowledge bases in a Peer-to-Peer environment

A platform for distributing and reasoning with OWL-EL knowledge bases in a Peer-to-Peer environment A platform for distributing and reasoning with OWL-EL knowledge bases in a Peer-to-Peer environment Alexander De Leon 1, Michel Dumontier 1,2,3 1 School of Computer Science 2 Department of Biology 3 Instititute

More information

Language. DAML+OIL: a Reason-able Web Ontology. Manchester, UK. Ian Horrocks. University of Manchester.

Language. DAML+OIL: a Reason-able Web Ontology. Manchester, UK. Ian Horrocks. University of Manchester. DAML+OIL: a Reason-able Web Ontology Language Ian Horrocks horrocks@cs.man.ac.uk University of Manchester Manchester, UK EDBT 2002: DAML+OIL p. 1/32 Talk Outline The Semantic Web Web Ontology Languages

More information

Description Logics: A Logical Foundation of the Semantic Web and its Applications

Description Logics: A Logical Foundation of the Semantic Web and its Applications Description Logics and Semantic Web Description Logics: A Logical Foundation of the Semantic Web and its Applications Volker Haarslev Concordia University, Computer Science Department 1455 de Maisonneuve

More information

Querying Data through Ontologies

Querying Data through Ontologies Querying Data through Ontologies Instructor: Sebastian Link Thanks to Serge Abiteboul, Ioana Manolescu, Philippe Rigaux, Marie-Christine Rousset and Pierre Senellart Web Data Management and Distribution

More information

Description Logics. Description Logics and Databases

Description Logics. Description Logics and Databases 1 + Description Logics Description Logics and Databases Enrico Franconi Department of Computer Science University of Manchester http://www.cs.man.ac.uk/~franconi 2 + Description Logics and Databases Queries

More information

Modeling multidimensional database

Modeling multidimensional database Modeling multidimensional database Author: Dhananjay Patil Organization: Evaltech, Inc. Evaltech Research Group, Data Warehousing Practice. Date: 07/02/04 Email: erg@evaltech.com Abstract: The Purpose

More information

A Tableau-based Federated Reasoning Algorithm for Modular Ontologies

A Tableau-based Federated Reasoning Algorithm for Modular Ontologies A Tableau-based Federated Reasoning Algorithm for Modular Ontologies Jie Bao 1, Doina Caragea 2, Vasant Honavar 1 1 Artificial Intelligence Research Laboratory, Department of Computer Science, Iowa State

More information

! Assessed assignment 1 Due 17 Feb. 3 questions Level 10 students answer Q1 and one other

! Assessed assignment 1 Due 17 Feb. 3 questions Level 10 students answer Q1 and one other ! Assessed assignment 1 Due 17 Feb. 3 questions Level 10 students answer Q1 and one other! Q1 Understand an OWL ontology Install Protégé and download the clothing.owl ontology from the KMM website Answer

More information

Rewriting Ontology-Mediated Queries. Carsten Lutz University of Bremen

Rewriting Ontology-Mediated Queries. Carsten Lutz University of Bremen Rewriting Ontology-Mediated Queries Carsten Lutz University of Bremen Data Access and Ontologies Today, data is often highly incomplete and very heterogeneous Examples include web data and large-scale

More information

Benchmarking DL Reasoners Using Realistic Ontologies

Benchmarking DL Reasoners Using Realistic Ontologies Benchmarking DL Reasoners Using Realistic Ontologies Zhengxiang Pan Bell Labs Research and Lehigh University zhp2@lehigh.edu Abstract. We did a preliminary benchmark on DL reasoners using real world OWL

More information

Description Logics and Disjunctive Datalog The Story so Far

Description Logics and Disjunctive Datalog The Story so Far Description Logics and Disjunctive Datalog The Story so Far Ullrich Hustadt University of Liverpool Liverpool, UK U.Hustadt@csc.liv.ac.uk Boris Motik Forschungszentrum Informatik Karlsruhe, Germany motik@fzi.de

More information

jcel: A Modular Rule-based Reasoner

jcel: A Modular Rule-based Reasoner jcel: A Modular Rule-based Reasoner Julian Mendez Theoretical Computer Science, TU Dresden, Germany mendez@tcs.inf.tu-dresden.de Abstract. jcel is a reasoner for the description logic EL + that uses a

More information

Modularity in Ontologies: Introduction (Part A)

Modularity in Ontologies: Introduction (Part A) Modularity in Ontologies: Introduction (Part A) Thomas Schneider 1 Dirk Walther 2 1 Department of Computer Science, University of Bremen, Germany 2 Faculty of Informatics, Technical University of Madrid,

More information

Algebraic Tableau Algorithm for ALCOQ

Algebraic Tableau Algorithm for ALCOQ Algebraic Tableau Algorithm for ALCOQ Jocelyne Faddoul 1, Volker Haarslev 1, and Ralf Möller 2 1 Concordia University, Montreal, Canada {j_faddou, haarslev}@encs.concordia.ca 2 Hamburg University of Technology,

More information

Ontology-Based Data Access

Ontology-Based Data Access Ontology-Based Data Access ISWC 2007 Tutorial Diego Calvanese 1, Domenico Lembo 2 1 Free University of Bozen-Bolzano, 2 Sapienza Università di Roma 6th Int. Semantic Web Conference Busan, South Korea Nov.

More information

Description Logics. Structural Description Logics (Acknowledgement: Enrico Franconi) Object-Oriented Representations. Applications

Description Logics. Structural Description Logics (Acknowledgement: Enrico Franconi) Object-Oriented Representations. Applications Description Logics Structural Description Logics (Acknowledgement: Enrico Franconi) The need for a formalism Ambiguities of object-oriented representations A structure upon FOL A predicate level language

More information

Formalisms for Representing Ontologies: State of the Art Survey

Formalisms for Representing Ontologies: State of the Art Survey Formalisms for Representing Ontologies: State of the Art Survey Deliverable TONES-D06 F. Baader 4, D. Calvanese 1, G. De Giacomo 2, P. Fillottrani 1, E. Franconi 1, B. Cuenca Grau 3, I. Horrocks 3, A.

More information

OWL extended with Meta-modelling

OWL extended with Meta-modelling OWL extended with Meta-modelling Regina Motz 1, Edelweis Rohrer 1, Paula Severi 2 and Ignacio Vidal 1 1 Instituto de Computación, Facultad de Ingeniería, Universidad de la República, Uruguay 2 Department

More information

A Unified Logical Framework for Rules (and Queries) with Ontologies - position paper -

A Unified Logical Framework for Rules (and Queries) with Ontologies - position paper - A Unified Logical Framework for Rules (and Queries) with Ontologies - position paper - Enrico Franconi Sergio Tessaris Faculty of Computer Science, Free University of Bozen-Bolzano, Italy lastname@inf.unibz.it

More information

Consequence based Procedure for Description Logics with Self Restriction

Consequence based Procedure for Description Logics with Self Restriction Consequence based Procedure for Description Logics with Self Restriction Cong Wang and Pascal Hitzler Kno.e.sis Center, Wright State University, Dayton, OH, U.S.A. {wang.156, pascal.hizler}@wright.edu

More information

University of Innsbruck

University of Innsbruck STI INNSBRUCK SEMANTIC TECHNOLOGY INSTITUTE University of Innsbruck Semantic Technology Institute Exploring Propositional Local-Search Procedures for Tableau-based Reasoning in the Description Logic ALC

More information

Structure of This Presentation

Structure of This Presentation Inferencing for the Semantic Web: A Concise Overview Feihong Hsu fhsu@cs.uic.edu March 27, 2003 Structure of This Presentation General features of inferencing for the Web Inferencing languages Survey of

More information

COMP4418 Knowledge Representation and Reasoning

COMP4418 Knowledge Representation and Reasoning COMP4418 Knowledge Representation and Reasoning Week 3 Practical Reasoning David Rajaratnam Click to edit Present s Name Practical Reasoning - My Interests Cognitive Robotics. Connect high level cognition

More information

Role-depth Bounded Least Common Subsumers for EL + and ELI

Role-depth Bounded Least Common Subsumers for EL + and ELI Role-depth Bounded Least Common Subsumers for EL + and ELI Andreas Ecke and Anni-Yasmin Turhan TU Dresden, Institute for Theoretical Computer Science Abstract. For EL the least common subsumer (lcs) need

More information

The revival of structural subsumption in tableau-based description logic reasoners

The revival of structural subsumption in tableau-based description logic reasoners The revival of structural subsumption in tableau-based description logic reasoners V. Haarslev 1, R. Möller 2, S. Wandelt 2 1 Concordia University, Montreal, Canada 2 Hamburg University of Technology,

More information

Tractable Extensions of the Description Logic EL with Numerical Datatypes

Tractable Extensions of the Description Logic EL with Numerical Datatypes Tractable Extensions of the Description Logic EL with Numerical Datatypes Despoina Magka, Yevgeny Kazakov, and Ian Horrocks Oxford University Computing Laboratory Wolfson Building, Parks Road, OXFORD,

More information

Foundations of AI. 9. Predicate Logic. Syntax and Semantics, Normal Forms, Herbrand Expansion, Resolution

Foundations of AI. 9. Predicate Logic. Syntax and Semantics, Normal Forms, Herbrand Expansion, Resolution Foundations of AI 9. Predicate Logic Syntax and Semantics, Normal Forms, Herbrand Expansion, Resolution Wolfram Burgard, Andreas Karwath, Bernhard Nebel, and Martin Riedmiller 09/1 Contents Motivation

More information

Semantic Web. Part 3 The ontology layer 1: Ontologies, Description Logics, and OWL

Semantic Web. Part 3 The ontology layer 1: Ontologies, Description Logics, and OWL Semantic Web Part 3 The ontology layer 1: Ontologies, Description Logics, and OWL Riccardo Rosati Corso di Laurea Magistrale in Ingegneria Informatica Sapienza Università di Roma 2012/2013 REMARK Most

More information

Standardization of Ontologies

Standardization of Ontologies Standardization of Ontologies Kore Nordmann TU Dortmund March 17, 2009 Outline History Related technologies Ontology development General history HTML UNTANGLE HTML 2.0 XML rec. XHTML RDF(S)

More information

Augmenting Concept Languages by Transitive Closure of Roles An Alternative to Terminological Cycles

Augmenting Concept Languages by Transitive Closure of Roles An Alternative to Terminological Cycles Augmenting Concept Languages by Transitive Closure of Roles An Alternative to Terminological Cycles Franz Baader* German Research Center for Artificial Intelligence Projektgruppe WINO, Postfach 2080 W-6750

More information

Tractable Extensions of the Description Logic EL with Numerical Datatypes

Tractable Extensions of the Description Logic EL with Numerical Datatypes Proc. 23rd Int. Workshop on Description Logics (DL2010), CEUR-WS 573, Waterloo, Canada, 2010. Tractable Extensions of the Description Logic EL with Numerical Datatypes Despoina Magka, Yevgeny Kazakov,

More information

A Description Logic Prover in Prolog

A Description Logic Prover in Prolog A Description Logic Prover in Prolog Ismail Faizi Kongens Lyngby 2011 IMM-B.Sc.-2011-8 Technical University of Denmark Informatics and Mathematical Modelling Building 321, DK-2800 Kongens Lyngby, Denmark

More information

Conjunctive Query Containment in Description Logics with n-ary Relations

Conjunctive Query Containment in Description Logics with n-ary Relations Conjunctive Query Containment in Description Logics with n-ary Relations Diego Calvanese and Giuseppe De Giacomo and Maurizio Lenzerini Dipartimento di Informatica e Sistemistica Università di Roma La

More information