1 / 72

Knowledge representation 1

Knowledge representation 1. The importance of knowledge representation. Contrary to the beliefs of early workers in AI, experience has shown that Intelligent Systems cannot achieve anything useful unless they contain a large amount of real-world - probably domain-specific - knowledge.

benjamin
Download Presentation

Knowledge representation 1

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Knowledgerepresentation1

  2. The importance of knowledge representation • Contrary to the beliefs of early workers in AI, experience has shown that Intelligent Systems cannot achieve anything useful unless they contain a large amount of real-world - probably domain-specific - knowledge. • Humans almost always tackle difficult real-world problems by using their resources of knowledge - "experience", "training" etc.

  3. The importance of knowledge representation • This raises the problem of how knowledge can be represented inside a computer, in such a way that an AI program can manipulate it. • Some knowledge representation formalisms that have featured in intelligent systems:

  4. Knowledge rep. formalisms • Production rules • Formal logic, and languages based on it (e.g. PROLOG) • Structured objects: • Semantic nets (or networks) • Frames, and object-orientated programming, which was derived from frames • Other similar objects, such as Scripts

  5. Knowledge rep. formalisms • We have already examined Production rules (or "Rule-based reasoning") in some detail. We will now look at some other formalisms.

  6. Logic

  7. Formal logic, and languages based on formal logic • Logic, which was originally just the study of what distinguishes sound argument from unsound argument, has developed (over many centuries) into a powerful and rigorous system whereby true statements can be discovered, given other statements that are already known to be true.

  8. Formal logic, and languages based on formal logic • From the point of view of AI, and other branches of computer science, logic is valuable because it provides • a language, for knowledge representation, with a well-defined, non-ambiguous, semantics (i.e. system of meanings). • a well-defined proof theory; there are reliable techniques in formal logic for establishing that an argument (i.e. a set of deductions from statements known to be true) is sound.

  9. Formal logic, and languages based on formal logic • This makes logic a "gold standard" • Other knowledge representations can be evaluated according to whether they produce the same results as formal logic, on a particular reasoning task. • If they produce a different result, there's something wrong with them.

  10. Formal logic, and languages based on formal logic • There are various forms of logic, of which the simplest is probably propositional calculus (also known as sentence logic), and the most commonly used in AI is first order predicate calculus (also known as first order predicate logic).

  11. Propositional calculus • Propositional calculus is built out of simple statements called propositions which are either true or false. • Example: “London is a city” is a proposition. So is “Ice is hot”.

  12. Propositional calculus • These are joined together to form more complex statements by logical connectives, expressing simple ideas such as and, or, not, if…then….

  13. Propositional calculus • There are standard symbols for these: Ù stands for “and”, Ústands for “or”, Østands for “not”, Þstands for “if … then …”, Ûstands for “if and only if”.

  14. Logic: propositional calculus • example of a statement written in propositional calculus: Suppose that R stands for “It is raining”, G stands for “I have got a coat”, W stands for “I will get wet”. The statement RÙØG ÞW is a way of writing "If it is raining and I have not got a coat, then I will get wet."

  15. Logic: predicate calculus • Predicate calculus can make statements about objects, and the properties of objects, and the relationships between objects (propositional calculus can’t). • It contains predicates – statements like this: a(S) or this: b(S, T) that mean S has the property a, or S and T are connected by the relationship b.

  16. Logic: predicate calculus • Example of a statement written in predicate calculus: Suppose that c stands for "the cat", m stands for "the mat", s stands for "sits on", b stands for "black", f stands for "fat", h stands for "happy". The statement (f(c) Ù b(c) Ù s(c,m))  h(c) is a way of writing "If the fat black cat sits on the mat then it is happy".

  17. Logic: predicate calculus • As well as having the same logical connectives as propositional calculus, predicate calculus has two quantifiers, " meaning “for all”, and $meaning “there exists”.

  18. Logic: predicate calculus • Example of statement written in predicate calculus using these quantifiers: • Suppose that d stands for “is a day”, p stands for “is a person”, mo stands for “is mugged on”, mi stands for “is mugged in”, S stands for Soho, x stands for some unspecified day and y stands for some unspecified person. "x( d(x) ®$y( p(y) Ù mo(y, x) Ù mi(y, S))) expresses the idea "Someone is mugged in Soho every day."

  19. Logic: predicate calculus • Notice that while the statement in English - "Someone is mugged in Soho every day” - is ambiguous, the statement written in predicate calculus - "x( d(x) ®$y( p(y) Ù mo(y, x) Ù mi(y, S))) isn’t. • In general, translating statements from a natural language (e.g. English) into some form of logic forces you to sort out any ambiguity.

  20. Formal logic • The tools available to logicians include: • A set of symbols indicating propositions, predicates, variables, constants, etc • A set of logical connectives which can be used to combine simple terms into compound terms, with precisely-defined effects on the truth values involved.

  21. Formal logic • The tools available to logicians include: • A set of logical equivalences, which can be used to convert one compound term into another, containing different connectives, without altering its truth value. • For instance, De Morgan’s 2nd theorem states that ¬(PQ) is logically equivalent to (¬P¬Q)

  22. Formal logic • The tools available to logicians include: • The concepts of tautology and contradiction (statements that are always true, and always false, respectively). • Some well-established rules of inference (i.e. ways of proving an argument is sound). For instance, if you know that CD and you know that D isn’t true, then you know that ¬C must be true - a rule of inference known as modus tolens.

  23. Formal logic • The tools available to logicians include: • A test of the validity of an argument using a truth table; this is available in propositional calculus, but not other logics.

  24. Formal logic • So far, this is a description of a technique for working out arguments on paper. • However, some (though probably not all) the techniques of logical manipulation can be computerised.

  25. Formal logic • Computer programs have been written which are able to perform (some of) the operations of formal logic, and can therefore "reason" in this way. • This is a classic way to represent and solve a problem in artificial intelligence.

  26. Proving a theorem in logic • Proving a theorem by resolution: the stages, together with an example proof

  27. Proving a theorem in logic • The axioms, and the theorem: • "Every rich person owns a house. Susan is rich. Susan is a person. Therefore Susan owns a house."

  28. Proving a theorem in logic • 1. Convert these statements into predicate calculus (I've used x, y, & z for variables. Susan is a • constant). x [(person(x)  rich(x)) y(house(y)  owns(x,y))]. rich(Susan). person(Susan). The conclusion: z(house(z)  owns(Susan,z)).

  29. Proving a theorem in logic • 2. Negate the conclusion. • This becomes: ¬z(house(z)  owns(Susan,z)).

  30. Proving a theorem in logic • 3. An 8-stage process of syntactic manipulation, designed to convert these statements into clause form. (a) Eliminate implications, using the logical equivalence that a  b  ¬a  b 1st statement becomes: x [¬(person(x)  rich(x)) y(house(y)  owns(x,y))].

  31. Proving a theorem in logic • (b) Move negations inwards (i.e., ensure that no lines, or groups of terms, begin with ¬). Use suitable logical equivalences such as: ¬(¬a)  a ¬(ab)  ¬a¬b ¬(ab)  ¬a¬b ¬x P(x) x ¬P(x) ¬x P(x) x ¬P(x) The 1st statement becomes: x [(¬person(x)  ¬rich(x)) y(house(y)  owns(x,y))]. The conclusion becomes: z ¬(house(z)  owns(Susan,z)) then z ¬house(z)  ¬owns(Susan,z)).

  32. Proving a theorem in logic • (c) Standardise variables so that different quantifiers refer to different variables.

  33. Proving a theorem in logic • (d) Eliminate all existential quantifiers ("skolemisation"). This is done by substituting a different predicate name which is unique to the object in question, (but which relates to the universally-quantified class in which it is found), rather than labelling it as an instance of a class of objects. 1st statement becomes: x [(¬person(x)  ¬rich(x))  (house(G(x))  owns(x,G(x))]

  34. Proving a theorem in logic • (e) Eliminate all universal quantifiers, by assuming that all variables are universally quantified. 1st statement becomes: (¬person(x)  ¬rich(x))  (house(G(x))  owns(x,G(x)) The conclusion becomes: ¬house(z)  ¬owns(Susan,z)

  35. Proving a theorem in logic • (f) Rewrite in conjunctive normal form. This means groups of terms joined by "and", the groups themselves being terms joined by "or". Use the logical equivalence that a(bc)  (ab)(ac) 1st statement becomes: (¬person(x)  ¬rich(x)  house(G(x)))  (¬person(x)  ¬rich(x)  owns(x,G(x)))

  36. Proving a theorem in logic • (g) Regarding statements produced as a result of (f): since the groups are joined by "and", they can become separate statements in their own right. 1st statement becomes: ¬person(x)  ¬rich(x)  house(G(x)) ¬person(x)  ¬rich(x)  owns(x,G(x))

  37. Proving a theorem in logic • (h) Change the variable names, so that each clause uses different variables. We finish up with 5 clauses like this: clause 1: ¬person(x)  ¬rich(x)  house(G(x)) clause 2: ¬person(y)  ¬rich(y)  owns(y,G(y)) clause 3: rich(Susan). clause 4: person(Susan). clause 5: ¬house(z)  ¬owns(Susan,z)).

  38. Proving a theorem in logic • 4. A cycle in which two clauses are picked, because they can be resolved to give a third. If the clause that results is empty, the proof has succeeded. If not, the new clause is added to the others, and this stage is repeated. Resolving clauses: pick 2 clauses which contain the same term, negated in one case, notnegated in the other.

  39. Proving a theorem in logic • Combine them to form a new clause, containing all the terms that were in both the old ones, except that the term which is present as a and ¬a is eliminated; however, if in one case it contains an argument (or arguments) which is a variable and in the other case a constant, substitute the constant for the variable, everywhere that that constant appears in the clause.

  40. Proving a theorem in logic • Empty clause: the result of resolving 2 clauses which each only contained one term, so that nothing remains.

  41. Proving a theorem in logic • In the case of our example, the process is as follows: resolve 1 & 3 to give: ¬person(Susan)  house(G(Susan)) Add this to the clauses as no.6. resolve 6 & 4 to give: house(G(Susan)) Add this to the clauses as no.7.

  42. Proving a theorem in logic resolve 2 & 3 to give: ¬person(Susan)  owns(Susan, G(Susan)) Add this as no.8. resolve 8 & 4 to give: owns(Susan, G(Susan)) Add this as no.9. resolve 7 & 5 to give: ¬owns(Susan, G(Susan)) Add this as no.10.

  43. resolve 10 & 9. This gives an empty clause. So the proof has succeeded.

  44. Formal logic • Computer languages have been written which incorporate (part of) the reasoning mechanisms to be found in formal logic. • The most important is Prolog.

  45. Formal logic: Prolog • The result is a declarative programming language - • a language that can (sometimes) be left to work out the solutions to problems itself. • It’s only necessary to provide a description of the problem. • This is radically different to a conventional programming language where, unless you incorporate an algorithm, the program is quite incapable of solving the problem.

  46. Formal logic • Example of logic, used for knowledge representation: Kowalski's project to represent the British Nationality Act in PROLOG.

  47. Logic: formal methods • Logic is used by computer scientists when they are engaged in Formal Methods: describing the performance of a program precisely, so that they can prove that it does (or doesn’t) perform the task that it is supposed to. • In other words, establishing the validity of a program.

  48. Knowledge Representation using structured objects

  49. Knowledge Representation using structured objects • Structured objects are: • knowledge representation formalisms whose components are essentially similar to the nodes and arcs found in graphs. • in contrast to production rules and formal logic. • an attempt to incorporate certain desirable features of human memory organisation into knowledge representations.

  50. Knowledge Representation using structured objects Semantic nets

More Related