<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>KB Bio 101 : A Challenge for OWL Reasoners</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Vinay K. Chaudhri</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Michael A. Wessel</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Stijn Heymans</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>SRI International</institution>
          ,
          <addr-line>333 Ravenswood Avenue, Menlo Park, CA 94025-3493</addr-line>
          ,
          <country country="US">USA</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>We describe the axiomatic content of a biology knowledge base that poses both theoretical and empirical challenges for OWL reasoning. The knowledge base is organized hierarchically as a set of classes with necessary and sufficient properties. The relations have domain and range restrictions, are organized into a hierarchy, can have cardinality constraints and composition axioms stated for them. The necessary and sufficient properties of classes induce general graphs for which there are no known decidable reasoners. The OWL version of the knowledge base presented in this paper is an approximation of the original knowledge base. The knowledge content is practically motivated by an education application and has been extensively tested for quality.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>1 Introduction</title>
      <p>
        The goal of Project Halo is to develop a “Digital Aristotle” - a reasoning system
capable of answering novel questions and solving problems in a broad range of scientific
disciplines and related human affairs [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ]. As part of this effort, SRI has created a
system called Automated User-Centered Reasoning and Acquisition System (AURA) [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ],
which enables educators to encode knowledge from science textbooks in a way that it
can be used for answering questions by reasoning.
      </p>
      <p>
        A team of biologists used AURA to encode a significant subset of a popular biology
textbook that is used in advanced high school and introductory college courses in the
United States [
        <xref ref-type="bibr" rid="ref15">15</xref>
        ]. The knowledge base called KB Bio 101 (for short: KBB101) is
an outcome of this effort. KBB101 is a central component of an electronic textbook
application called Inquire Biology [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ] aimed at students studying from it.
      </p>
      <p>
        AURA uses a frame-based knowledge representation and reasoning system called
Knowledge Machine (KM) [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]. We have translated the original KM-version of KBB101
into first-order logic with equality. By using this representation as a common basis, we
have translated it into multiple different formats including SILK [
        <xref ref-type="bibr" rid="ref9">9</xref>
        ], OWL2 functional
[
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], answer set programming [
        <xref ref-type="bibr" rid="ref5">5</xref>
        ], and the TPTP FOF syntax [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. In this paper, we
describe the OWL2 translation. The translations are available for download [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ].1
pressed graphically as shown in the left half of Fig. 1. Here, white nodes represent
universally quantified variables, and grey nodes represent existentially quantified
variables. Cell hence corresponds to the following first-order formula:
8x : Cell (x) )
      </p>
      <p>9y1; y2 : hasPart (x; y1) ^ hasPart (x; y2) ^ Ribosome(y1) ^ Chromosome(y2)
Using the well-known technique of Skolemization, we can also write this as follows;
the advantages of Skolem functions will become clear shortly:
8x : Cell (x) )
hasPart (x; fC1 ell(x)) ^ hasPart (x; fC2 ell(x))^</p>
      <p>Ribosome(fC1 ell(x)) ^ Chromosome(fC2 ell(x))</p>
      <p>The system supports inheritance. Consider the subclass EukaryoticCell , which
inherits knowledge from Cell , see the right half of Fig. 1. The Chromosome in
EukaryoticCell was inherited from Cell , and then specialized into a
EukaryoticChromosome, and likewise for Ribosome. The N ucleus was added locally in
EukaryoticCell . The advantage of using Skolem functions is that the inheritance can be
made explicit by means of equality atoms: by adding f 3
ECell(x) = fC2 ell(x); fE2 Cell(x) =
fC1 ell(x) to the Skolemized formula for EukaryoticCell it is made explicit that the
EukaryoticChromosome in EukaryoticCell is a specialization of the Chromosome
in Cell and consequently, all knowledge which was modeled for that Chromosome
in the context of Cell also applies to the EukaryoticChromosome in the context of
EukaryoticCell (in addition to what was modeled for Chromosome itself, of course):
8x : EukaryoticCell(x) ) Cell(x)^
hasPart (x; fE1 Cell(x)) ^ hasPart (x; fE2 Cell(x)) ^ hasPart (x; fE3 Cell(x))^
EukaryoticChromosome(fE3 Cell(x)) ^ N ucleus(fE1 Cell(x))^
EukaryoticRibosome(fE2 Cell(x)) ^ isInside(fE3 Cell(x); fECell(x))^
1
3 2 2 1
fECell(x) = fCell(x) ^ fECell(x) = fCell(x)</p>
      <p>The employed graphical modeling paradigm can be described as inherit, specialize,
and extend. During the modeling process, the system keeps track of the specialized and
extended Skolem functions and records the inheritance structures as demonstrated.</p>
      <p>
        Since the above axiom defines a graph, it is not expressible in the known decidable
description logics [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ].
3
      </p>
    </sec>
    <sec id="sec-2">
      <title>The Axiomatic Content of KB Bio 101</title>
      <p>We first describe the signature of an AURA KB in first order logic. KBB101 is an
AURA KB. Let CN be a set of class names (e.g., Cell 2 CN ), and RN be a set of
relation names (e.g., hasPart 2 RN ). Let AN RN be a set of attribute names (e.g.,
color ; temperature 2 AN ). Let C; C1; C2; : : : ; D; D1; D2; : : : ; E; E1; E2; : : : ; F; F1;
F2; : : : be class names, and R; R1; R2; : : : ; S; S1; S2; : : : ; T; T1; T2; : : : be relation names.
Let fx; y; z; x1; x2; : : :g be a set of variables, and, for every C 2 CN , let ff n1C ; f n2C ; : : :g
be a set of function symbols. We have the following sets of constants: scalar constant
values SCs = fsmall ; big ; : : :g, categorical constant values CCs = fblue; green; : : :g,
cardinal unit classes CUCs = fmeter ; year ; : : :g, and CN [ RN are considered
constants as well. There are three kinds of attributes; they are used in so-called value atoms,
see below:
Cardinal attribute values: For example, t is 43 years would be represented as
age(t; t1); theCardinalValue(t1; 43); cardinalUnitClass (t1; year ).</p>
      <p>Categorial attribute values: For example, t has color green would be represented as
color (t; t1); theCategoricalValue(t1; green):
Scalar attribute values: For example, t is big w.r.t. a house (where house is a class)
would be represented as size(t; t1); theScalarValue(t1; big ); scalarUnitClass (t1;
house).</p>
      <p>Next we describe the axiomatic content. An AURA KB is a tuple
(CTAs; CAs; RAs; EQAs), where CTAs is a set of constant type assertions, RAs
is a set of relation axioms, CAs is a set of class axioms, and EQAs is a set of equality
atoms. Those axioms are described in the following:</p>
      <p>CTAs : The AURA KB contains, for every c 2 SCs [ CCs [ CUCs, 1 to n type
assertions of the form C(c), where C 2 CN (the types of the constant).</p>
      <p>EQAs : A set of equality atoms for C, of the form t = f n(t0), where t; t0 2
fx; f n1C (x); f n2C (x); : : :g, and f n 2 ff n1D; f n2D; : : :g, with C 6= D, for some D (D
is a class mentioned in C, or a direct or indirect superclass of C).</p>
      <p>CAs : For every class name C 2 CN , it may contain the following kinds of
axioms: DAs : disjointness axioms: 8x : C(x) ) :D(x); TAs : taxonomic axioms:
8x : C(x) ) E(x); NCAs : necessary conditions: 8x : C(x) ) [x], where
[x] is a conjunction of unary (class) atoms and binary (relation) atoms over terms
fx; f n1C (x); f n2C (x); : : :g.</p>
      <p>There are two special equality relations, namely equal ; notEqual , which are user
asserted equality atoms. The intended semantics is the semantics of first-order
equality resp. in-equality. In order to distinguish them from the equalities in EQAs we use
different predicate names.</p>
      <p>Moreover, [x] can contain the following value atoms: for a term t, let oat be
a floating point number, scalar 2 SCs, categorical 2 CCs, cardinalUnitClass 2
CUCs, and scalarUnitClass 2 CN , then the following atoms are value atoms:
theCardinalValue(t; oat ), theScalarValue(t; scalar ); theCategoricalValue(t;
categorical ); cardinalUnitClass (t; cardinalUnitClass ); and scalarUnitClass (t;
scalarUnitClass ):</p>
      <p>In addition, an AURA KB can contain qualified number restrictions. Due to a lack of
counting quantifiers, we represent them by means of quadrary atoms
maxCardinality (t; R; n; C) (resp. minCardinality and exactCardinality ), where n
is a non-negative integer, C is a class, and R is a relation name.</p>
      <p>SCAs : sufficient conditions: 8x : [x; : : :] ) C(x)^EQs [x; : : :], where [x; : : :]
is a conjunction of unary, binary, value and qualified number restriction atoms over
terms fx; x1; x2; : : :g, the sufficient conditions, and EQs [X; : : :] is a conjunction of
equality atoms of the form t1 = t2, where t1 2 fx; x1; x2; : : :g, and t2 2 fx; f n1C (x);
f n2C (x); : : :g, linking the variables in the antecedent to the Skolem function values in
the consequent of the necessary conditions, (x). Obviously, requiring the use of the
Skolem functions in the antecedent of the sufficient condition would be a too strong
requirement and render the sufficient condition inapplicable in many cases. Also note that
0 [x] [x], where 0 [x] is the result of substituting the variables [x] with their
respective Skolem terms from EQs [x; : : :]: 0 [x] = [x]ft17!t2;t1=t22EQs[x;:::]g. Hence,
every sufficient condition is also necessary (a byproduct of the graphical modeling).</p>
      <p>For a given class name C, we refer to the corresponding axioms as DAs(C);
TAs(C), and EQAs(C). We refer to the union of all axioms for C as CAs(C).</p>
      <p>RAs : For every relation name R 2 RN , RAs may contain the following: DRAs :
relation domain restrictions 8x; y : R(x; y) ) C1(x) _ : : : _ Cn(x); RRAs : relation
range restrictions 8x; y : R(x; y) ) D1(y) _ : : : _ Dm(y); RHAs : simple relation
hierarchy 8x; y : R(x; y) ) S(x; y); QRHAs : qualified relation hierarchy 8x; y :
R(x; y)^C(x)^D(y) ) S(x; y); IRAs : inverse relations 8x; y : R(x; y) ) S(y; x);
12NAs : 1-to-N cardinality 8x; y; z : R(x; y) ^ R(z; y) ) x = z; N21As : N-to-1
cardinality 8x; y; z : R(x; y)^R(x; z) ) y = z; TRANSAs : simple transitive closure
axioms 8x; y; z : R(x; y) ^ Rstar (y; z) ^ C(x) ^ D(y) ^ E(z) ) Rstar (x; z), where
Rstar (x; z) = R (x; z); GTRANSLAs : generalized transitive closure axioms (left
composition) 8x; y; z : R(x; y) ^ S(y; z) ^ C(x) ^ D(y) ^ E(z) ) Rstar (x; z); and
GTRANSRAs : generalized transitive closure axioms (right composition) 8x; y; z :
R(x; y) ^ S(y; z) ^ C(x) ^ D(y) ^ E(z) ) Sstar (x ; z ).</p>
      <p>We refer to the axioms for a relation R by DRAs(R) etc. We refer to the union of
all axioms for R as RAs(R).
4</p>
    </sec>
    <sec id="sec-3">
      <title>The OWL Translations of KB Bio 101</title>
      <p>
        Our OWL translator produces OWL2 functional syntax [
        <xref ref-type="bibr" rid="ref17">17</xref>
        ], which has good human
readability and is readily processed by most OWL2 reasoners. The generated KBs have
been syntax-tested with Prote´ge´ 4.2 [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ] (utilizing the OWLAPI parser) as well as
RacerPro [
        <xref ref-type="bibr" rid="ref16">16</xref>
        ] (which has its own proprietary parser).
      </p>
      <p>
        The following features of KBB101 might be challenging for OWL reasoners:
Cycles: KBB101 contains terminological cycles. It does not have the finite model
property, nor the tree model property [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ].
      </p>
      <p>Size: the most complete export is 16 MBs big.</p>
      <p>
        Complexity: the most complete export exploits SHOIQ(Dn) [
        <xref ref-type="bibr" rid="ref3">3</xref>
        ] (potentially we
could use SROIQ(Dn) [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], but we currently do not include complex role inclusions,
see below for a discussion).
      </p>
      <p>Graph structures: we cannot represent the graph structures truthfully in OWL2.
The original graph structures have to be approximated. We do this by rewriting and
exporting the KBB101 in two flavors. Flavor 1 - Unraveling: We unravel the graph
structures up to a certain maximal depth n. Unraveling is a standard technique from
modal logics - let us give the following intuition: Given a class graph C (see Fig. 1), an
up to max. depth n unraveled version of C can be produced by an n-bounded depth-first
graph traversal of C, starting from the root node x, that outputs the (inverse) edge label
whenever an (inverse) edge is traversed to visit a successor node, together with the node
label. This produces a tree. This tree with max-depth n is then translated into OWL2
functional syntax as described. It results in an approximation of the original KBB101
which gets better the larger the value of n is. Note that nodes reachable only over paths
of length &gt; n are excluded. The filenames of KBB101s which were produced using
unraveling start with kb-owl-syntax-unraveled-depth-n. We currently vary
n from 0 to 4 and produce the corresponding KBB101s. With n = 0, the axioms in
NCAs and SCAs are basically ignored, as the unraveled tree consists of the root node
only (hence, only the taxonomy is exported). Flavor 2 - Node IDs: We can represent
the graph structure by introducing symbolic node identifiers in the OWL2 class
expressions. Even though the OWL2 reasoner will be blind to the intended semantic meaning
of these node IDs, modeling graph structure and co-references, the original graph
structure is at least represented and could, in principle, be exploited for reasoning by some
powerful extended future OWL2 reasoner. Note that node IDs are only introduced if
required (in tree-shaped class descriptions they are not required). Moreover, those node
IDs can either be rendered as atomic classes, or introduced as nominals. The filenames
of the respective KBB101s start with kb-owl-syntax-coreference-IDs.</p>
      <p>
        Explicit inheritance and equality: the inter-class co-references between Skolem
function values and equality atoms cannot be represented in OWL2. We hence skip
all the axioms in EQNs. We consider the OWL2 export underspecified. In principle,
we could preserve some of those by using functional properties and encoding tricks,
but even then, feature agreements or role value maps might be required, and already
ALCF with general TBoxes is undecidable [
        <xref ref-type="bibr" rid="ref2">2</xref>
        ].
      </p>
      <p>Rendering of axioms We can en- and disable the export of certain axiom types,
e.g, there is a switch which determines whether DAs are exported or not, and likewise
for other axiom types. We produce all KBB101s for all possible combinations of those
switches. Let us describe the rendering of class axioms and relation axioms. In the
following, C’ denotes the OWL2 version of class C, and R’ the corresponding property
of relation R.</p>
      <p>
        The class axioms CA(C) are exported as follows: The axioms TAs(C) and NCA(C)
are combined into one axiom of the form 8x : C(x) ) , which is then rendered as a
SubClassOf(C 0) axiom. Here, 0 is either an – up to depth n – unraveled
version of as an OWL2 class expression, or the 0 class expression uses node IDs for
representing the graph structure as described. Note that the DAs(C) and EQAs(C)
are excluded here. Moreover, if C has a user-description or -comment, then this is
rendered as AnnotationAssertion(C’ string). During rendering of SCAs, we
are omitting the EQs [x; : : :] from 8x : [x; : : :] ) C(x) ^ EQs [x; : : :] 2 SCAs.
KBB101s with SCAs preserved have a triggers in their file names. We generate
a SubClassOf( 0 C) axiom, where 0 is [x; : : :] as an OWL2 class
expression, unraveled up to depth n. Disjointness axioms DAs are represented by means
of DisjointClasses. The rendering of DAs can be suppressed; KBB101s with
DAs preserved have -disjointness in their file names. The rendering of
cardinality constraints in necessary conditions NCAs can be omitted. Also, we may choose
to only export the cardinality constraints with cardinalities 0 and 1, as those are the
only cardinality constraints used by the KM reasoning system [
        <xref ref-type="bibr" rid="ref7">7</xref>
        ] (the other
cardinality constraints are ignored). KBB101s with cardinality constraints preserved have a
cardinalities resp. km-relevant-cardinalities in their file names.
      </p>
      <p>We also employ class and property annotation axioms to represent user descriptions
and documentations.</p>
      <p>The inter-class equality axioms EQAs are ignored – as explained, there is no
straightforward way to model our Skolem function inheritance in OWL2. However, the user
asserted intra-class equality and in-equality atoms are retained, and we are using the
:same-as and :not-equal object properties for that purpose.</p>
      <p>
        Exporting the relation axioms RAs is straightforward, too. KBB101s with
relation axioms retained have a relation-axioms in their file names: The axioms
TRANSAs, GTRANSLAs , GTRANSRAs are analyzed. If an axiom can be
truthfully encoded as an OWL2 complex role inclusion axiom obeying the regularity
condition [
        <xref ref-type="bibr" rid="ref10">10</xref>
        ], then it is included in the file (unfortunately, none are, so the KBB101 ends
up in SHOIQ(Dn) instead of SROIQ(Dn)). If a relations R turns out to be
transitive, then this is declared by means of TransitiveObjectProperty(R) axiom.
RDAs(R) are rendered as ObjectPropertyDomain(R, C), for every 8x; y :
R(x; y) ) C(x) 2 RDAs(R): RRAs(R) are rendered as
ObjectPropertyRange(R, C), for every 8x; y : R(x; y) ) D(y) 2 RRAs(R): RHAs(R) are
rendered as SubObjectProperty(R,S), for every 8x; y : R(x; y) ) S(x; y) 2
RHAs(R): IRAs(R) are rendered as InverseObjectProperties(R, S), for
every 8x; y : R(x; y) ) S(y; x) 2 IRAs(R): If N21As(R) 6= ;, then we declare
FunctionalObjectProperty(R), and ObjectProperty(R) otherwise. If R
has a user-description string, then this is rendered as an AnnotationAssertion(R
string).
      </p>
      <p>Rendering of terms: OWL2 is a term-free language. However, there is the analog
of first-order constants, so-called nominals, and we may choose to use them for the
representation of categorical property values (such as green) and scalar symbolic
property values (such as big). A categorical property value such as green can either be
represented as a type / instance assertion of the form
ClassAssertion(:ColorConstant :green) and then used as a nominal object property filler in class
subexpressions such as ObjectHasValue(:color :green), or :green might be
a special subclass of :ColorConstant, SubClassOf(:green
:ColorConstant), and then used in an ObjectSomeValuesFrom(:color :green)
expression to represent the color of some object. However, for string- and float-based
property values we need to use a datatype property-based representation, e.g.
DataHasValue(:theCardinalValue "43.0e0"ˆˆxsd:float). KBB101s
using the nominal representation have a value-nominals in their file names, and
otherwise value-classes. The rendering of value classes and nominals can also be
switched off completely.
5</p>
    </sec>
    <sec id="sec-4">
      <title>Conclusion</title>
      <p>
        An initial version of the KB Bio 101 in OWL2 is now available [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ] and we are very
interested to actively engage with the research community to facilitate its use. We are
also looking forward to seeing the reasoning runtimes of different systems participating
in the ORE 2013 reasoner competition for the different OWL2 variants of KBB101.
The reasoning problems we are currently interested in are consistency checking and
classification.
      </p>
      <p>Acknowledgment: This work has been funded by Vulcan Inc.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>F.</given-names>
            <surname>Baader</surname>
          </string-name>
          .
          <article-title>Terminological Cycles in a Description Logic with Existential Restrictions</article-title>
          .
          <source>In International Joint Conference on Atificial Intelligence</source>
          ,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <given-names>F.</given-names>
            <surname>Baader</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Calvanese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. L.</given-names>
            <surname>McGuinness</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Nardi</surname>
          </string-name>
          , and
          <string-name>
            <given-names>P. F.</given-names>
            <surname>Patel-</surname>
          </string-name>
          Schneider, editors.
          <source>The Description Logic Handbook: Theory</source>
          , Implementation, and
          <string-name>
            <surname>Applications</surname>
          </string-name>
          . Cambridge University Press,
          <year>2003</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <given-names>F.</given-names>
            <surname>Baader</surname>
          </string-name>
          and
          <string-name>
            <given-names>B.</given-names>
            <surname>Hollunder</surname>
          </string-name>
          .
          <article-title>Qualifying Number Restrictions in Concept Languages</article-title>
          .
          <source>In International Conference on Knowledge Representation and Reasoning</source>
          ,
          <year>1991</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <given-names>V. K.</given-names>
            <surname>Chaudhri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Heymans</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Wessel</surname>
          </string-name>
          .
          <source>The Bio KB 101 Download Page</source>
          ,
          <year>2012</year>
          . See http://www.ai.sri.com/halo/halobook2010/exported-kb/biokb. html.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <given-names>V. K.</given-names>
            <surname>Chaudhri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. W. Stijn</given-names>
            <surname>Heymans</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S. C.</given-names>
            <surname>Tran</surname>
          </string-name>
          .
          <article-title>Object-Oriented Knowledge Bases in Logic Programming</article-title>
          .
          <source>Technical report</source>
          , SRI International,
          <year>2013</year>
          . Available from http: //www.ai.sri.com/pub_list/
          <year>1935</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <given-names>V. K.</given-names>
            <surname>Chaudhri</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Wessel</surname>
          </string-name>
          , and
          <string-name>
            <surname>S. Heymans. KB</surname>
          </string-name>
          <article-title>Bio 101: A Challenge for TPTP FirstOrder Reasoners</article-title>
          .
          <source>In CADE-24 Workshop on Knowledge Intensive Automated Reasoning</source>
          ,
          <year>2013</year>
          . Available from http://www.ai.sri.com/pub_list/
          <year>1937</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <given-names>P.</given-names>
            <surname>Clark</surname>
          </string-name>
          and
          <string-name>
            <given-names>B.</given-names>
            <surname>Porter</surname>
          </string-name>
          .
          <article-title>Building Concept Representations from Reusable Components</article-title>
          . In AAAI. AAAI Press,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <given-names>D.</given-names>
            <surname>Gunning</surname>
          </string-name>
          and
          <string-name>
            <given-names>V.</given-names>
            <surname>Chaudhri</surname>
          </string-name>
          et al.
          <source>Project Halo Update Progress Toward Digital Aristotle. AI Magazine</source>
          ,
          <year>Fall 2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <given-names>B.</given-names>
            <surname>Grosof</surname>
          </string-name>
          .
          <source>The SILK Project: Semantic Inferencing on Large Knowledge</source>
          ,
          <year>2012</year>
          . See http: //silk.semwebcentral.org/.
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10. I.
          <string-name>
            <surname>Horrocks</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          <string-name>
            <surname>Kutz</surname>
            , and
            <given-names>U.</given-names>
          </string-name>
          <string-name>
            <surname>Sattler</surname>
          </string-name>
          .
          <article-title>The Even More Irresistible SROIQ</article-title>
          .
          <source>In International Conference on Knowledge Representation and Reasoning</source>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <given-names>V.</given-names>
            <surname>Inc</surname>
          </string-name>
          .
          <source>Project Halo</source>
          ,
          <year>2012</year>
          . See http://www.projecthalo.com/.
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <given-names>B.</given-names>
            <surname>Motik</surname>
          </string-name>
          ,
          <string-name>
            <given-names>B. C.</given-names>
            <surname>Grau</surname>
          </string-name>
          ,
          <string-name>
            <surname>I. Horrocks</surname>
          </string-name>
          , and
          <string-name>
            <given-names>U.</given-names>
            <surname>Sattler</surname>
          </string-name>
          .
          <article-title>Representing Ontologies Using Description Logics, Description Graphs, and Rules</article-title>
          .
          <source>Artificial Intelligence</source>
          ,
          <volume>173</volume>
          (
          <issue>14</issue>
          ), Sept.
          <year>2009</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <given-names>A.</given-names>
            <surname>Overholtzer</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A.</given-names>
            <surname>Spaulding</surname>
          </string-name>
          ,
          <string-name>
            <given-names>V. K.</given-names>
            <surname>Chaudhri</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Gunning</surname>
          </string-name>
          .
          <article-title>Inquire: An Intelligent Textbook</article-title>
          .
          <source>In Proceedings of the Vidoe Track of AAAI Conference on Artificial Intelligence</source>
          . AAAI Press,
          <year>2012</year>
          . See http://www.aaaivideos.org/2012/inquire_ intelligent_textbook/.
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14. Prote´ge´ Group.
          <source>The Prote´ge´ Ontology Editor and Knowledge Acquisition System</source>
          ,
          <year>2012</year>
          . See http://protege.stanford.edu.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>J. B. Reece</surname>
            ,
            <given-names>L. A.</given-names>
          </string-name>
          <string-name>
            <surname>Urry</surname>
            ,
            <given-names>M. L.</given-names>
          </string-name>
          <string-name>
            <surname>Cain</surname>
            ,
            <given-names>S. A.</given-names>
          </string-name>
          <string-name>
            <surname>Wasserman</surname>
            ,
            <given-names>P. V.</given-names>
          </string-name>
          <string-name>
            <surname>Minorsky</surname>
            , and
            <given-names>R. B.</given-names>
          </string-name>
          <string-name>
            <surname>Jackson</surname>
          </string-name>
          .
          <source>Campbell Biology</source>
          , 9th ed.
          <source>Harlow: Pearson Education</source>
          ,
          <year>2011</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <given-names>V.</given-names>
            <surname>Haarslev</surname>
          </string-name>
          and
          <string-name>
            <given-names>K.</given-names>
            <surname>Hidde</surname>
          </string-name>
          and
          <string-name>
            <given-names>R.</given-names>
            <surname>Mo</surname>
          </string-name>
          <article-title>¨ller and M. Wessel. The RacerPro Knowledge Representation and Reasoning System</article-title>
          .
          <source>Semantic Web Journal</source>
          ,
          <volume>3</volume>
          (
          <issue>3</issue>
          ):
          <fpage>267</fpage>
          -
          <lpage>277</lpage>
          ,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17. W3C OWL Working Group.
          <article-title>OWL 2 Web Ontology Language: Document Overview</article-title>
          .
          <source>W3C Recommendation</source>
          , 27
          <year>October 2009</year>
          . Available at http://www.w3.org/TR/ owl2-overview/.
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>