FUNDAMENTALS OF ARTIFICIAL INTELLIGENCE KNOWLEDGE REPRESENTATION AND NETWORKED SCHEMES

Size: px
Start display at page:

Download "FUNDAMENTALS OF ARTIFICIAL INTELLIGENCE KNOWLEDGE REPRESENTATION AND NETWORKED SCHEMES"

Transcription

1 Riga Technical University Faculty of Computer Science and Information Technology Department of Systems Theory and Design FUNDAMENTALS OF ARTIFICIAL INTELLIGENCE Lecture 7 KNOWLEDGE REPRESENTATION AND NETWORKED SCHEMES Dr.habil.sc.ing., professor Janis Grundspenkis, Dr.sc.ing., lecturer Alla Anohina-Naumeca Department of Systems Theory and Design Faculty of Computer Science and Information Technology Riga Technical University {janis.grundspenkis, alla.anohina-naumeca}@rtu.lv Address: Meza street 1/4- {550, 545}, Riga, Latvia, LV-1048 Phone: (+371) 67089{581, 595}

2 Knowledge representation Knowledge representation is the method used to encode knowledge in an intelligent system s knowledge base. The object of knowledge representation is to express knowledge in computer-tractable form, such that it can be used to help intelligent system perform well. 2/44

3 Knowledge base A knowledge base is an integral part of any knowledge-based intelligent system. It maps objects and relationships of the real world to computational objects and relationships. Knowledge base Object 1 Object 2 Object 3 Relation 1 Relation 2 Object 1 Relation 1 Relation 2 Object 2 Domain Object 3 3/44

4 But what is knowledge? Knowledge is an abstract term that attempts to capture an individual s understanding of a given subject. In the world of intelligent systems the domain-specific knowledge is captured. Domain is a well-focused subject area. Cognitive psychologists have formed a number of theories to explain how humans solve problems. This work uncovered the types of knowledge humans commonly use, how they mentally organize this knowledge, and how they use it efficiently to solve a problem. 4/44

5 Types of knowledge (1) Declarative knowledge Concepts Facts Objects Describes what is known about a problem. This includes simple statements that are asserted to be either true or false. This also includes a list of statements that more fully describes some object or concept (object-attributevalue triplet). 5/44

6 Types of knowledge (2) Procedural knowledge Rules Strategies Agendas Procedures Describes how a problem is solved. This type of knowledge provides direction on how to do something. 6/44

7 Types of knowledge (3) Heuristic Knowledge Rules of Thumb Describes a rule-of-thumb that guides the reasoning process. Heuristic knowledge is often called shallow knowledge. It is empirical and represents the knowledge compiled by an expert through the experience of solving past problems. 7/44

8 Types of knowledge (4) Meta- Knowledge Knowledge about the other types of knowledge and how to use them Describes knowledge about knowledge. This type of knowledge is used to pick other knowledge that is best suited for solving a problem. Experts use this type of knowledge to enhance the efficiency of problem solving by directing their reasoning in the most promising area. 8/44

9 Types of knowledge (5) Structural Knowledge Rule sets Concept relationships Concept to object relationships Describes knowledge structures. This type of knowledge describes an expert s overall mental model of the problem. The expert s mental model of concepts, subconcepts, and objects is typical of this type of knowledge. 9/44

10 Knowledge representation (1) In general, a representation is a set of conventions about how to describe a class of things. A description makes use of the conventions of a representation to describe some particular thing. The function of any representation scheme is to capture essential features of a problem domain and make that information available to a problem solving procedure. 10/44

11 Knowledge representation (2) A representation consists of four fundamental parts: A lexical part that determines which symbols are allowed in the representation s vocabulary. A structural part that describes constraints on how the symbols can be arranged. A procedural part that specifies access procedures that enable to create descriptions, to modify them, and to answer questions using them. A semantic part that establishes a way of associating meaning with the description. 11/44

12 Knowledge representation schemes (1) There are 4 schemes of knowledge representation: Logical schemes Predicate calculus Procedural schemes IF..THEN.. rules Propositional calculus Networked schemes Semantic nets Structured schemes Scripts Conceptual graphs Frames 12/44

13 Knowledge representation schemes (2) Logical schemes represent knowledge, using mathematical or orthographic symbols, inference rules and are based on precisely defined syntax and semantics. In procedural schemes knowledge is represented as a set of instructions for problem-solving. That allows to modify a knowledge base easily and to separate a knowledge base from an inference mechanism. Networked schemes use a graph to represent knowledge. Nodes of a graph display objects or concepts in a domain, but arcs define relationships between objects, their attributes and values of attributes. Structured schemes extend networked representation by displaying each node in a graph as a complex data structure. 13/44

14 Semantic nets Author: Quillian, 1967 Idea: Concepts are a part of knowledge about world. People perceive concepts and reason with them. Concepts are related with relationships between them. Relationships between concepts form understanding of people. 14/44

15 Definition of semantic nets Semantic network is a knowledge representation schema that captures knowledge as a graph. The nodes denote objects or concepts, their properties and corresponding values. The arcs denote relationships between the nodes. Both nodes and arcs are generally labelled (arcs have weights). Symbols of semantic nets: - A concept - A relationship 15/44

16 Nodes of semantic nets Nodes of semantic nets can represent: Concepts Objects Events Features Time etc. 16/44

17 Relationships (1) Several kinds of relationships are used in semantic nets: 1. Class - Superclass or IS-a relationship Car Is- a Vehicle Class Superclass 2. Instance-class or Is an instance of relationship John s car Is an instance of Car Instance Class 17/44

18 Relationships (2) 3. Part-Whole or Part of relationship Door Part of Car Part Whole 4. Object-Attribute or Has relationship John s car Has Color Objects Attribute 18/44

19 Relationships (3) 5. Attribute-Value or Value relationship Color Value Red Attribute Value 6. Logical relationships (and, or, not) 7. Linguistic relationships (examples: likes, owns, travels ) 19/44

20 Inheritance (1) Inheritance is possible in semantic nets. Inheritance is a process by which the local information of a superclass node is assumed by a class node, a subclass node, and an instance node. Example: All vehicle have a brand name and a model. A car is a class of a superclass Vehicle. So Car inherits all features of Vehicle, that is, Brand and Model Vehicle has has Brand name Model Is a Car 20/44

21 Example of semantic nets John s car Is an instance of Has Has Car Is a Vehicle Brand name Reg.No. Value LA 657 Value BMW Has Model owner Has Value John Age 22 Value 850 works Bank Has Value Lateko 21/44

22 Conceptual graphs Author: Sowa, 1984 A conceptual graph is a finite, connected, bipartite graph. Two types of nodes are used in conceptual graphs: - A concept - A conceptual relationship 22/44

23 Arcs of conceptual graphs (1) In conceptual graphs the following arcs are allowed: Between a concept and a conceptual relationship Between a conceptual relationship and a concept 23/44

24 Arcs of conceptual graphs (2) The following arcs are not allowed in conceptual graphs: Between a concept and a concept Between a conceptual relationship and a conceptual relationship 24/44

25 Conceptual relationships (1) Every conceptual relation r has a relation type t and a nonnegative integer n called its valence. The number of arcs that belong to r is equal to its valence n. A conceptual relation of valence n is said to be n-adic, and its arcs are numbered from 1 to n. For every n-adic conceptual relation r, there is a sequence of n concept types t 1,...,t n, called the signature of r. A 0-adic conceptual relation has no arcs, and its signature is empty. All conceptual relations of the same relation type t have the same valence n and the same signature s. The term monadic is synonymous with 1-adic, dyadic with 2- adic, and triadic with 3-adic. 25/44

26 Conceptual relationships (2) 1-adic relation Must be one outgoing arc from a conceptual relationship 2-adic relation Must be one outgoing and one ingoing arc 3-adic relation Must be two ingoing arcs and one outgoing arc 26/44

27 Concepts (1) Concepts have the following form: Concept = Type + Referent, where Type is a type of a concept, cannot be empty; Referent = Quantifier + Designator, can be empty Type: Referent Type Teacher: Mary Referent 27/44

28 Concepts (2) Forms of cocnepts: 1. A node containing only a type of a concept Type Dog There is a dog, but it is not specified which one dog 2. Type + individual marker. s of persons, places or organizations can be displayed by an individual marker. Type Dog: Reksi Individual marker 28/44

29 Concepts (3) 3. Specific but unnamed individual. Identity of a object can be acquired from context performing inference Dog: #134 Cup: # 4. Several objects: - By listing them Guests: {John, Mary, Michael} agent Sing object Song - Using {*} Birds: {*} Several birds 29/44

30 Concepts (4) 5. Precise number of Person Moves on 6. Units of measurements sec 7. All by using or Fish: attribute wet All fish are wet 30/44

31 Concepts (5) 8. A conceptual graph can include a concept which is a conceptual graph by itself Example: Person: Tom experiencer believes proposition object Person: Jane agent likes pizza object 31/44

32 Concepts (6) 9. Different combinations Number: 18 There is a number 18 There are eighteen numbers 18 Number: 18 There are eighteen numbers and all of them are equal with 18 There are 5 numbers and all are equal with 18 32/44

33 Operations of conceptual graphs (1) Theory of conceptual graphs defines 4 operations: Copying Restricting Joining Simplifying Copying allows acquiring of a new conceptual graph G1 which is identical with the already existent conceptual graph G. 33/44

34 Operations of conceptual graphs (2) Restricting allows replacing of a concept node by its specialization. Two cases are possible: Type can be replaced by an individual marker Type can be replaced by its subtype Joining allows joining of two conceptual graphs if they have an identical concept node. Simplifying allows removing of one of two identical nodes of a conceptual relation together with all its arcs. 34/44

35 Operations of conceptual graphs (3) In order to apply the mentioned operations a type hierarchy must be defined: if s and t are types of concepts and t s, then t is subtype of s. Examples: Manager Employee Person Dog Animal John Man Person 35/44

36 Operations of conceptual graphs (4) Example: For example, we have two conceptual graphs G1 and G2 and a type hierarchy Dog Animal G1 Is a Animal Meat-eater color brown G2 location Dog: Reksi porch color brown 36/44

37 Operations of conceptual graphs (5) Example: Restricting operation can be applied to the graph G1 by replacing type Animal with its subtype Dog: Reksi. A new graph G3 is acquired as a result. G3 Is a Meat-eater Dog: Reksi color brown 37/44

38 Operations of conceptual graphs (6) Example: Now we can join graphs G2 un G3, because they have an identical concept node Dog:Reksi. A new graph G4 is acquired. Is a Meat-eater G4 location porch Dog:Reksi color brown color brown 38/44

39 Operations of conceptual graphs (7) Example: By simplifying the graph G4 a new graph G5 is acquired. Is a Meat-eater G5 location porch Dog:Reksi color brown 39/44

40 Inheritance in conceptual graphs By using restriction and joining operations of conceptual graphs it is possible to support inheritance. When a type is replaced by an individual marker an instance inherits features from a type. When a type is replaced by a subtype then the subtype inherits features from the type. Example: The type hierarchy Chimpanzee Primate is defined Type Primate Part of hand replaces Inheritance made by a subtype Subtype Chimpanzee Part of hand replaces Inheritance made by an instance An individual marker Chimpanzee: bonzo Part of hand 40/44

41 Logic and conceptual graphs (1) In conceptual graphs it is possible to represent logical operations AND, OR and NOT. 1. Negation is implemented using a propositional node and a unary conceptual relation NOT Example: A conceptual graph displaying a sentence The sun is not shining NOT proposition Shine agent Sun 41/44

42 Logic and conceptual graphs (2) 2. Conjunction is displayed by placing both conceptual graphs in the common propositional node. Example: A conceptual graph displaying a sentence The study course is interesting and difficult proposition Study course attribute Interesting Study course attribute Difficult 42/44

43 Logic and conceptual graphs (3) Disjunction is represented by negation and conjunction: 1. A graph G1 must be placed an a propositional node and its negation must be made 2. A graph G2 must be placed an a propositional node and its negation must be made 3. Both negations must be placed in a propositional node and its negation must be made proposition Example: proposition Person: John attribute silly Not proposition Person: John attribute smart Not Not 43/44

44 Example G1 Student: # John G2 Language: C# language mean Program agent Student: # G3 Company: # EuroSoft G4 Company: # agent Develop object Applications mean Language: C# language G5 Company: # place Work agent Student: # 44/44

Artificial Intelligence

Artificial Intelligence Artificial Intelligence ICS461 Fall 2010 1 Lecture #12B More Representations Outline Logics Rules Frames Nancy E. Reed nreed@hawaii.edu 2 Representation Agents deal with knowledge (data) Facts (believe

More information

Introduction to formal semantics -

Introduction to formal semantics - Introduction to formal semantics - Introduction to formal semantics 1 / 25 structure Motivation - Philosophy paradox antinomy division in object und Meta language Semiotics syntax semantics Pragmatics

More information

Predicate Logic. For example, consider the following argument:

Predicate Logic. For example, consider the following argument: Predicate Logic The analysis of compound statements covers key aspects of human reasoning but does not capture many important, and common, instances of reasoning that are also logically valid. For example,

More information

Chapter 8 The Enhanced Entity- Relationship (EER) Model

Chapter 8 The Enhanced Entity- Relationship (EER) Model Chapter 8 The Enhanced Entity- Relationship (EER) Model Copyright 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 8 Outline Subclasses, Superclasses, and Inheritance Specialization

More information

A Knowledge Based Approach to Support Learning Technical Terminology *

A Knowledge Based Approach to Support Learning Technical Terminology * A Knowledge Based Approach to Support Learning Technical Terminology * Vania Dimitrova 1, Darina Dicheva 2, Paul Brna 1, John Self 1 1 Computer Based Learning Unit, University of Leeds, Leeds LS2 9JT UK

More information

Formal Engineering for Industrial Software Development

Formal Engineering for Industrial Software Development Shaoying Liu Formal Engineering for Industrial Software Development Using the SOFL Method With 90 Figures and 30 Tables Springer Contents Introduction 1 1.1 Software Life Cycle... 2 1.2 The Problem 4 1.3

More information

Introduction to Conceptual Modeling

Introduction to Conceptual Modeling Introduction to Conceptual Modeling Gabriela P. Henning INTEC (Universidad Nacional del Litoral - CONICET) 3000 - Santa Fe, Argentina 1 Introduction to Conceptual Modeling - Outline Motivating questions

More information

IAI : Knowledge Representation

IAI : Knowledge Representation IAI : Knowledge Representation John A. Bullinaria, 2005 1. What is Knowledge? 2. What is a Knowledge Representation? 3. Requirements of a Knowledge Representation 4. Practical Aspects of Good Representations

More information

Predicate logic Proofs Artificial intelligence. Predicate logic. SET07106 Mathematics for Software Engineering

Predicate logic Proofs Artificial intelligence. Predicate logic. SET07106 Mathematics for Software Engineering Predicate logic SET07106 Mathematics for Software Engineering School of Computing Edinburgh Napier University Module Leader: Uta Priss 2010 Copyright Edinburgh Napier University Predicate logic Slide 1/24

More information

Expert Systems : AI Course Lecture 35 36, notes, slides www.myreaders.info/, RC Chakraborty, e-mail rcchak@gmail.

Expert Systems : AI Course Lecture 35 36, notes, slides www.myreaders.info/, RC Chakraborty, e-mail rcchak@gmail. Expert Systems : AI Course Lecture 35 36, notes, slides www.myreaders.info/, RC Chakraborty, e-mail rcchak@gmail.com, June 01, 2010 www.myreaders.info/html/artificial_intelligence.html www.myreaders.info

More information

060010706- Artificial Intelligence 2014

060010706- Artificial Intelligence 2014 Module-1 Introduction Short Answer Questions: 1. Define the term Artificial Intelligence (AI). 2. List the two general approaches used by AI researchers. 3. State the basic objective of bottom-up approach

More information

CHAPTER 2. Logic. 1. Logic Definitions. Notation: Variables are used to represent propositions. The most common variables used are p, q, and r.

CHAPTER 2. Logic. 1. Logic Definitions. Notation: Variables are used to represent propositions. The most common variables used are p, q, and r. CHAPTER 2 Logic 1. Logic Definitions 1.1. Propositions. Definition 1.1.1. A proposition is a declarative sentence that is either true (denoted either T or 1) or false (denoted either F or 0). Notation:

More information

SEARCHING AND KNOWLEDGE REPRESENTATION. Angel Garrido

SEARCHING AND KNOWLEDGE REPRESENTATION. Angel Garrido Acta Universitatis Apulensis ISSN: 1582-5329 No. 30/2012 pp. 147-152 SEARCHING AND KNOWLEDGE REPRESENTATION Angel Garrido ABSTRACT. The procedures of searching of solutions of problems, in Artificial Intelligence

More information

Handout #1: Mathematical Reasoning

Handout #1: Mathematical Reasoning Math 101 Rumbos Spring 2010 1 Handout #1: Mathematical Reasoning 1 Propositional Logic A proposition is a mathematical statement that it is either true or false; that is, a statement whose certainty or

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 5 INTELLIGENT MULTIDIMENSIONAL DATABASE INTERFACE Mona Gharib Mohamed Reda Zahraa E. Mohamed Faculty of Science,

More information

Math 166 - Week in Review #4. A proposition, or statement, is a declarative sentence that can be classified as either true or false, but not both.

Math 166 - Week in Review #4. A proposition, or statement, is a declarative sentence that can be classified as either true or false, but not both. Math 166 Spring 2007 c Heather Ramsey Page 1 Math 166 - Week in Review #4 Sections A.1 and A.2 - Propositions, Connectives, and Truth Tables A proposition, or statement, is a declarative sentence that

More information

CS510 Software Engineering

CS510 Software Engineering CS510 Software Engineering Propositional Logic Asst. Prof. Mathias Payer Department of Computer Science Purdue University TA: Scott A. Carr Slides inspired by Xiangyu Zhang http://nebelwelt.net/teaching/15-cs510-se

More information

2. The Language of First-order Logic

2. The Language of First-order Logic 2. The Language of First-order Logic KR & R Brachman & Levesque 2005 17 Declarative language Before building system before there can be learning, reasoning, planning, explanation... need to be able to

More information

EFFICIENT KNOWLEDGE BASE MANAGEMENT IN DCSP

EFFICIENT KNOWLEDGE BASE MANAGEMENT IN DCSP EFFICIENT KNOWLEDGE BASE MANAGEMENT IN DCSP Hong Jiang Mathematics & Computer Science Department, Benedict College, USA jiangh@benedict.edu ABSTRACT DCSP (Distributed Constraint Satisfaction Problem) has

More information

Cassandra. References:

Cassandra. References: Cassandra References: Becker, Moritz; Sewell, Peter. Cassandra: Flexible Trust Management, Applied to Electronic Health Records. 2004. Li, Ninghui; Mitchell, John. Datalog with Constraints: A Foundation

More information

BIS 3106: Business Process Management. Lecture Two: Modelling the Control-flow Perspective

BIS 3106: Business Process Management. Lecture Two: Modelling the Control-flow Perspective BIS 3106: Business Process Management Lecture Two: Modelling the Control-flow Perspective Makerere University School of Computing and Informatics Technology Department of Computer Science SEM I 2015/2016

More information

11 November 2015. www.isbe.tue.nl. www.isbe.tue.nl

11 November 2015. www.isbe.tue.nl. www.isbe.tue.nl UML Class Diagrams 11 November 2015 UML Class Diagrams The class diagram provides a static structure of all the classes that exist within the system. Classes are arranged in hierarchies sharing common

More information

Organizational Issues Arising from the Integration of the Lexicon and Concept Network in a Text Understanding System

Organizational Issues Arising from the Integration of the Lexicon and Concept Network in a Text Understanding System Organizational Issues Arising from the Integration of the Lexicon and Concept Network in a Text Understanding System Padraig Cunningham, Tony Veale Hitachi Dublin Laboratory Trinity College, College Green,

More information

Overview of the TACITUS Project

Overview of the TACITUS Project Overview of the TACITUS Project Jerry R. Hobbs Artificial Intelligence Center SRI International 1 Aims of the Project The specific aim of the TACITUS project is to develop interpretation processes for

More information

Logic in general. Inference rules and theorem proving

Logic in general. Inference rules and theorem proving Logical Agents Knowledge-based agents Logic in general Propositional logic Inference rules and theorem proving First order logic Knowledge-based agents Inference engine Knowledge base Domain-independent

More information

Linguistic Preference Modeling: Foundation Models and New Trends. Extended Abstract

Linguistic Preference Modeling: Foundation Models and New Trends. Extended Abstract Linguistic Preference Modeling: Foundation Models and New Trends F. Herrera, E. Herrera-Viedma Dept. of Computer Science and Artificial Intelligence University of Granada, 18071 - Granada, Spain e-mail:

More information

Reusable Knowledge-based Components for Building Software. Applications: A Knowledge Modelling Approach

Reusable Knowledge-based Components for Building Software. Applications: A Knowledge Modelling Approach Reusable Knowledge-based Components for Building Software Applications: A Knowledge Modelling Approach Martin Molina, Jose L. Sierra, Jose Cuena Department of Artificial Intelligence, Technical University

More information

ONTOLOGIES A short tutorial with references to YAGO Cosmina CROITORU

ONTOLOGIES A short tutorial with references to YAGO Cosmina CROITORU ONTOLOGIES p. 1/40 ONTOLOGIES A short tutorial with references to YAGO Cosmina CROITORU Unlocking the Secrets of the Past: Text Mining for Historical Documents Blockseminar, 21.2.-11.3.2011 ONTOLOGIES

More information

Title: Chinese Characters and Top Ontology in EuroWordNet

Title: Chinese Characters and Top Ontology in EuroWordNet Title: Chinese Characters and Top Ontology in EuroWordNet Paper by: Shun Sylvia Wong & Karel Pala Presentation By: Patrick Baker Introduction WordNet, Cyc, HowNet, and EuroWordNet each use a hierarchical

More information

Requirements. Approaches to user support. Command assistance. Chapter 11 User support

Requirements. Approaches to user support. Command assistance. Chapter 11 User support Chapter 11 User support Issues different types of support at different times implementation and presentation both important all need careful design Types of user support quick reference, task specific

More information

A terminology model approach for defining and managing statistical metadata

A terminology model approach for defining and managing statistical metadata A terminology model approach for defining and managing statistical metadata Comments to : R. Karge (49) 30-6576 2791 mail reinhard.karge@run-software.com Content 1 Introduction... 4 2 Knowledge presentation...

More information

How To Understand The Theory Of Computer Science

How To Understand The Theory Of Computer Science Theory of Computation Lecture Notes Abhijat Vichare August 2005 Contents 1 Introduction 2 What is Computation? 3 The λ Calculus 3.1 Conversions: 3.2 The calculus in use 3.3 Few Important Theorems 3.4 Worked

More information

COGNITIVE PSYCHOLOGY

COGNITIVE PSYCHOLOGY COGNITIVE PSYCHOLOGY ROBERT J. STERNBERG Yale University HARCOURT BRACE COLLEGE PUBLISHERS Fort Worth Philadelphia San Diego New York Orlando Austin San Antonio Toronto Montreal London Sydney Tokyo Contents

More information

SPARQL: Un Lenguaje de Consulta para la Web

SPARQL: Un Lenguaje de Consulta para la Web SPARQL: Un Lenguaje de Consulta para la Web Semántica Marcelo Arenas Pontificia Universidad Católica de Chile y Centro de Investigación de la Web M. Arenas SPARQL: Un Lenguaje de Consulta para la Web Semántica

More information

Domain Knowledge Extracting in a Chinese Natural Language Interface to Databases: NChiql

Domain Knowledge Extracting in a Chinese Natural Language Interface to Databases: NChiql Domain Knowledge Extracting in a Chinese Natural Language Interface to Databases: NChiql Xiaofeng Meng 1,2, Yong Zhou 1, and Shan Wang 1 1 College of Information, Renmin University of China, Beijing 100872

More information

Information Technology Topic Maps Part 2: Data Model

Information Technology Topic Maps Part 2: Data Model ISO/IEC JTC 1/SC 34 Date: 2008-06-03 ISO/IEC 13250-2 ISO/IEC JTC 1/SC 34/WG 3 Secretariat: SCC Information Technology Topic Maps Part 2: Data Model Warning This document is not an ISO International Standard.

More information

Agile Software Development

Agile Software Development Agile Software Development Lecturer: Raman Ramsin Lecture 13 Refactoring Part 3 1 Dealing with Generalization: Pull Up Constructor Body Pull Up Constructor Body You have constructors on subclasses with

More information

The CLIPS environment. The CLIPS programming language. CLIPS production rules language - facts. Notes

The CLIPS environment. The CLIPS programming language. CLIPS production rules language - facts. Notes The CLIPS environment The CLIPS environment CLIPS is an environment to develop knowledge based systems It defines a programming language that allows to represent declarative and procedural knowledge This

More information

The Import & Export of Data from a Database

The Import & Export of Data from a Database The Import & Export of Data from a Database Introduction The aim of these notes is to investigate a conceptually simple model for importing and exporting data into and out of an object-relational database,

More information

! " # The Logic of Descriptions. Logics for Data and Knowledge Representation. Terminology. Overview. Three Basic Features. Some History on DLs

!  # The Logic of Descriptions. Logics for Data and Knowledge Representation. Terminology. Overview. Three Basic Features. Some History on DLs ,!0((,.+#$),%$(-&.& *,2(-$)%&2.'3&%!&, Logics for Data and Knowledge Representation Alessandro Agostini agostini@dit.unitn.it University of Trento Fausto Giunchiglia fausto@dit.unitn.it The Logic of Descriptions!$%&'()*$#)

More information

Logic in Computer Science: Logic Gates

Logic in Computer Science: Logic Gates Logic in Computer Science: Logic Gates Lila Kari The University of Western Ontario Logic in Computer Science: Logic Gates CS2209, Applied Logic for Computer Science 1 / 49 Logic and bit operations Computers

More information

II. Conceptual Modeling

II. Conceptual Modeling II. Conceptual Modeling Engineering Software Models in Software Engineering What is Conceptual Modeling? Origins 2003 John Mylopoulos and Steve Easterbrook Conceptual Modeling -- 1 Engineering Software

More information

Glossary of Object Oriented Terms

Glossary of Object Oriented Terms Appendix E Glossary of Object Oriented Terms abstract class: A class primarily intended to define an instance, but can not be instantiated without additional methods. abstract data type: An abstraction

More information

ML for the Working Programmer

ML for the Working Programmer ML for the Working Programmer 2nd edition Lawrence C. Paulson University of Cambridge CAMBRIDGE UNIVERSITY PRESS CONTENTS Preface to the Second Edition Preface xiii xv 1 Standard ML 1 Functional Programming

More information

Data Modeling. Database Systems: The Complete Book Ch. 4.1-4.5, 7.1-7.4

Data Modeling. Database Systems: The Complete Book Ch. 4.1-4.5, 7.1-7.4 Data Modeling Database Systems: The Complete Book Ch. 4.1-4.5, 7.1-7.4 Data Modeling Schema: The structure of the data Structured Data: Relational, XML-DTD, etc Unstructured Data: CSV, JSON But where does

More information

3. Using graphic organizers is an effective way to help students make connections among words.

3. Using graphic organizers is an effective way to help students make connections among words. 38 CHAPTER 5 Vocabulary and Concepts PURPOSE The purpose of this chapter is to foster an understanding that teaching words well means giving students multiple opportunities to learn how words are conceptually

More information

Model Checking: An Introduction

Model Checking: An Introduction Announcements Model Checking: An Introduction Meeting 2 Office hours M 1:30pm-2:30pm W 5:30pm-6:30pm (after class) and by appointment ECOT 621 Moodle problems? Fundamentals of Programming Languages CSCI

More information

Cognitive Development

Cognitive Development Cognitive Chapter 2 Piaget s Approach to Cognitive Jean Piaget (1896-1980) A Swiss Psychologist credited with one of the most influential theories of cognitive development. Carefully observed children

More information

Paraphrasing controlled English texts

Paraphrasing controlled English texts Paraphrasing controlled English texts Kaarel Kaljurand Institute of Computational Linguistics, University of Zurich kaljurand@gmail.com Abstract. We discuss paraphrasing controlled English texts, by defining

More information

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #5: En-ty/Rela-onal Models- - - Part 1

CS 4604: Introduc0on to Database Management Systems. B. Aditya Prakash Lecture #5: En-ty/Rela-onal Models- - - Part 1 CS 4604: Introduc0on to Database Management Systems B. Aditya Prakash Lecture #5: En-ty/Rela-onal Models- - - Part 1 Announcements- - - Project Goal: design a database system applica-on with a web front-

More information

Mathematics for Computer Science/Software Engineering. Notes for the course MSM1F3 Dr. R. A. Wilson

Mathematics for Computer Science/Software Engineering. Notes for the course MSM1F3 Dr. R. A. Wilson Mathematics for Computer Science/Software Engineering Notes for the course MSM1F3 Dr. R. A. Wilson October 1996 Chapter 1 Logic Lecture no. 1. We introduce the concept of a proposition, which is a statement

More information

Umbrello UML Modeller Handbook

Umbrello UML Modeller Handbook 2 Contents 1 Introduction 7 2 UML Basics 8 2.1 About UML......................................... 8 2.2 UML Elements........................................ 9 2.2.1 Use Case Diagram.................................

More information

The Virtual Assistant for Applicant in Choosing of the Specialty. Alibek Barlybayev, Dauren Kabenov, Altynbek Sharipbay

The Virtual Assistant for Applicant in Choosing of the Specialty. Alibek Barlybayev, Dauren Kabenov, Altynbek Sharipbay The Virtual Assistant for Applicant in Choosing of the Specialty Alibek Barlybayev, Dauren Kabenov, Altynbek Sharipbay Department of Theoretical Computer Science, Eurasian National University, Astana,

More information

Integrating Cognitive Models Based on Different Computational Methods

Integrating Cognitive Models Based on Different Computational Methods Integrating Cognitive Models Based on Different Computational Methods Nicholas L. Cassimatis (cassin@rpi.edu) Rensselaer Polytechnic Institute Department of Cognitive Science 110 8 th Street Troy, NY 12180

More information

Lecture 16 : Relations and Functions DRAFT

Lecture 16 : Relations and Functions DRAFT CS/Math 240: Introduction to Discrete Mathematics 3/29/2011 Lecture 16 : Relations and Functions Instructor: Dieter van Melkebeek Scribe: Dalibor Zelený DRAFT In Lecture 3, we described a correspondence

More information

2. Conceptual Modeling using the Entity-Relationship Model

2. Conceptual Modeling using the Entity-Relationship Model ECS-165A WQ 11 15 Contents 2. Conceptual Modeling using the Entity-Relationship Model Basic concepts: entities and entity types, attributes and keys, relationships and relationship types Entity-Relationship

More information

Langue and Parole. John Phillips

Langue and Parole. John Phillips 1 Langue and Parole John Phillips The distinction between the French words, langue (language or tongue) and parole (speech), enters the vocabulary of theoretical linguistics with Ferdinand de Saussure

More information

CHAPTER 7 GENERAL PROOF SYSTEMS

CHAPTER 7 GENERAL PROOF SYSTEMS CHAPTER 7 GENERAL PROOF SYSTEMS 1 Introduction Proof systems are built to prove statements. They can be thought as an inference machine with special statements, called provable statements, or sometimes

More information

University of Ostrava. Reasoning in Description Logic with Semantic Tableau Binary Trees

University of Ostrava. Reasoning in Description Logic with Semantic Tableau Binary Trees University of Ostrava Institute for Research and Applications of Fuzzy Modeling Reasoning in Description Logic with Semantic Tableau Binary Trees Alena Lukasová Research report No. 63 2005 Submitted/to

More information

INTRODUCTORY SET THEORY

INTRODUCTORY SET THEORY M.Sc. program in mathematics INTRODUCTORY SET THEORY Katalin Károlyi Department of Applied Analysis, Eötvös Loránd University H-1088 Budapest, Múzeum krt. 6-8. CONTENTS 1. SETS Set, equal sets, subset,

More information

Automating Software Development Process Using Fuzzy Logic

Automating Software Development Process Using Fuzzy Logic Automating Software Development Process Using Fuzzy Logic Francesco Marcelloni 1 and Mehmet Aksit 2 1 Dipartimento di Ingegneria dell Informazione, University of Pisa, Via Diotisalvi, 2-56122, Pisa, Italy,

More information

Problems often have a certain amount of uncertainty, possibly due to: Incompleteness of information about the environment,

Problems often have a certain amount of uncertainty, possibly due to: Incompleteness of information about the environment, Uncertainty Problems often have a certain amount of uncertainty, possibly due to: Incompleteness of information about the environment, E.g., loss of sensory information such as vision Incorrectness in

More information

Rules and Business Rules

Rules and Business Rules OCEB White Paper on Business Rules, Decisions, and PRR Version 1.1, December 2008 Paul Vincent, co-chair OMG PRR FTF TIBCO Software Abstract The Object Management Group s work on standards for business

More information

COMPUTER SCIENCE TRIPOS

COMPUTER SCIENCE TRIPOS CST.98.5.1 COMPUTER SCIENCE TRIPOS Part IB Wednesday 3 June 1998 1.30 to 4.30 Paper 5 Answer five questions. No more than two questions from any one section are to be answered. Submit the answers in five

More information

Lecture 18 of 42. Lecture 18 of 42

Lecture 18 of 42. Lecture 18 of 42 Knowledge Representation Concluded: KE, CIKM, & Representing Events over Time Discussion: Structure Elicitation, Event Calculus William H. Hsu Department of Computing and Information Sciences, KSU KSOL

More information

Webb s Depth of Knowledge Guide

Webb s Depth of Knowledge Guide Webb Webb s Depth of Knowledge Guide Career and Technical Education Definitions 2009 1 H T T P : / / WWW. MDE. K 12.MS. US H T T P : / / R E D E S I G N. R C U. M S S T A T E. EDU 2 TABLE OF CONTENTS Overview...

More information

Any Town Public Schools Specific School Address, City State ZIP

Any Town Public Schools Specific School Address, City State ZIP Any Town Public Schools Specific School Address, City State ZIP XXXXXXXX Supertindent XXXXXXXX Principal Speech and Language Evaluation Name: School: Evaluator: D.O.B. Age: D.O.E. Reason for Referral:

More information

Criticality of Schedule Constraints Classification and Identification Qui T. Nguyen 1 and David K. H. Chua 2

Criticality of Schedule Constraints Classification and Identification Qui T. Nguyen 1 and David K. H. Chua 2 Criticality of Schedule Constraints Classification and Identification Qui T. Nguyen 1 and David K. H. Chua 2 Abstract In construction scheduling, constraints among activities are vital as they govern the

More information

Formalization of the CRM: Initial Thoughts

Formalization of the CRM: Initial Thoughts Formalization of the CRM: Initial Thoughts Carlo Meghini Istituto di Scienza e Tecnologie della Informazione Consiglio Nazionale delle Ricerche Pisa CRM SIG Meeting Iraklio, October 1st, 2014 Outline Overture:

More information

CHAPTER 3. Methods of Proofs. 1. Logical Arguments and Formal Proofs

CHAPTER 3. Methods of Proofs. 1. Logical Arguments and Formal Proofs CHAPTER 3 Methods of Proofs 1. Logical Arguments and Formal Proofs 1.1. Basic Terminology. An axiom is a statement that is given to be true. A rule of inference is a logical rule that is used to deduce

More information

Math 3000 Section 003 Intro to Abstract Math Homework 2

Math 3000 Section 003 Intro to Abstract Math Homework 2 Math 3000 Section 003 Intro to Abstract Math Homework 2 Department of Mathematical and Statistical Sciences University of Colorado Denver, Spring 2012 Solutions (February 13, 2012) Please note that these

More information

Regular Languages and Finite Automata

Regular Languages and Finite Automata Regular Languages and Finite Automata 1 Introduction Hing Leung Department of Computer Science New Mexico State University Sep 16, 2010 In 1943, McCulloch and Pitts [4] published a pioneering work on a

More information

A Framework of Context-Sensitive Visualization for User-Centered Interactive Systems

A Framework of Context-Sensitive Visualization for User-Centered Interactive Systems Proceedings of 10 th International Conference on User Modeling, pp423-427 Edinburgh, UK, July 24-29, 2005. Springer-Verlag Berlin Heidelberg 2005 A Framework of Context-Sensitive Visualization for User-Centered

More information

Neighborhood Data and Database Security

Neighborhood Data and Database Security Neighborhood Data and Database Security Kioumars Yazdanian, FrkdCric Cuppens e-mail: yaz@ tls-cs.cert.fr - cuppens@ tls-cs.cert.fr CERT / ONERA, Dept. of Computer Science 2 avenue E. Belin, B.P. 4025,31055

More information

White paper for the CS Education Research Summit

White paper for the CS Education Research Summit White paper for the CS Education Research Summit Josh Tenenberg I have two goals for this paper. The first is to go meta, to question the very research questions that we are to generate, by unpacking their

More information

Analyzing survey text: a brief overview

Analyzing survey text: a brief overview IBM SPSS Text Analytics for Surveys Analyzing survey text: a brief overview Learn how gives you greater insight Contents 1 Introduction 2 The role of text in survey research 2 Approaches to text mining

More information

Course Syllabus For Operations Management. Management Information Systems

Course Syllabus For Operations Management. Management Information Systems For Operations Management and Management Information Systems Department School Year First Year First Year First Year Second year Second year Second year Third year Third year Third year Third year Third

More information

Rigorous Software Development CSCI-GA 3033-009

Rigorous Software Development CSCI-GA 3033-009 Rigorous Software Development CSCI-GA 3033-009 Instructor: Thomas Wies Spring 2013 Lecture 11 Semantics of Programming Languages Denotational Semantics Meaning of a program is defined as the mathematical

More information

Predicate Logic. Example: All men are mortal. Socrates is a man. Socrates is mortal.

Predicate Logic. Example: All men are mortal. Socrates is a man. Socrates is mortal. Predicate Logic Example: All men are mortal. Socrates is a man. Socrates is mortal. Note: We need logic laws that work for statements involving quantities like some and all. In English, the predicate is

More information

Jedd: A BDD-based Relational Extension of Java

Jedd: A BDD-based Relational Extension of Java Jedd: A BDD-based Relational Extension of Java Ondřej Lhoták Laurie Hendren Sable Research Group, School of Computer Science McGill University, Montreal, Canada {olhotak,hendren}@sable.mcgill.ca ABSTRACT

More information

do/should What Logical thinking Emotional Intelligence Creativity /Andrew Wright/

do/should What Logical thinking Emotional Intelligence Creativity /Andrew Wright/ 22 October 2010 What do/should we need at school? Logical thinking Emotional Intelligence Creativity /Andrew Wright/ Whatare competences? Competences are the sum of knowledge, skills and characteristics

More information

Lecture 1. Basic Concepts of Set Theory, Functions and Relations

Lecture 1. Basic Concepts of Set Theory, Functions and Relations September 7, 2005 p. 1 Lecture 1. Basic Concepts of Set Theory, Functions and Relations 0. Preliminaries...1 1. Basic Concepts of Set Theory...1 1.1. Sets and elements...1 1.2. Specification of sets...2

More information

Comparing SNePS with Topbraid/Pellet SNeRG Technical Note 42

Comparing SNePS with Topbraid/Pellet SNeRG Technical Note 42 Comparing SNePS with Topbraid/Pellet SNeRG Technical Note 42 Michael Kandefer and Stuart C. Shapiro Department of Computer Science and Engineering and Center for Cognitive Science and National Center for

More information

Effect of Using Neural Networks in GA-Based School Timetabling

Effect of Using Neural Networks in GA-Based School Timetabling Effect of Using Neural Networks in GA-Based School Timetabling JANIS ZUTERS Department of Computer Science University of Latvia Raina bulv. 19, Riga, LV-1050 LATVIA janis.zuters@lu.lv Abstract: - The school

More information

Hybrid Systems for Knowledge Representation in Artificial Intelligence

Hybrid Systems for Knowledge Representation in Artificial Intelligence Hybrid Systems for Knowledge Representation in Artificial Intelligence Rajeswari P. V. N. Assoc. Professor, Dept of Comp. Sc. & Engg. Visvodaya Technical Academy Kavali, AP, India Dr. T. V. Prasad Dean

More information

Overview. Essential Questions. Precalculus, Quarter 4, Unit 4.5 Build Arithmetic and Geometric Sequences and Series

Overview. Essential Questions. Precalculus, Quarter 4, Unit 4.5 Build Arithmetic and Geometric Sequences and Series Sequences and Series Overview Number of instruction days: 4 6 (1 day = 53 minutes) Content to Be Learned Write arithmetic and geometric sequences both recursively and with an explicit formula, use them

More information

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay

Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Information Theory and Coding Prof. S. N. Merchant Department of Electrical Engineering Indian Institute of Technology, Bombay Lecture - 17 Shannon-Fano-Elias Coding and Introduction to Arithmetic Coding

More information

Theoretical Perspective

Theoretical Perspective Preface Motivation Manufacturer of digital products become a driver of the world s economy. This claim is confirmed by the data of the European and the American stock markets. Digital products are distributed

More information

Database Design Overview. Conceptual Design ER Model. Entities and Entity Sets. Entity Set Representation. Keys

Database Design Overview. Conceptual Design ER Model. Entities and Entity Sets. Entity Set Representation. Keys Database Design Overview Conceptual Design. The Entity-Relationship (ER) Model CS430/630 Lecture 12 Conceptual design The Entity-Relationship (ER) Model, UML High-level, close to human thinking Semantic

More information

Professor Anita Wasilewska. Classification Lecture Notes

Professor Anita Wasilewska. Classification Lecture Notes Professor Anita Wasilewska Classification Lecture Notes Classification (Data Mining Book Chapters 5 and 7) PART ONE: Supervised learning and Classification Data format: training and test data Concept,

More information

IMM / Informatics and Mathematical Modeling Master thesis. Business Modeling. Alla Morozova. Kgs. Lyngby 2003 DTU

IMM / Informatics and Mathematical Modeling Master thesis. Business Modeling. Alla Morozova. Kgs. Lyngby 2003 DTU IMM / Informatics and Mathematical Modeling Master thesis Business Modeling Alla Morozova Kgs. Lyngby 2003 DTU PREFACE The author of this project would like to thank the master thesis project supervisor

More information

On Development of Fuzzy Relational Database Applications

On Development of Fuzzy Relational Database Applications On Development of Fuzzy Relational Database Applications Srdjan Skrbic Faculty of Science Trg Dositeja Obradovica 3 21000 Novi Sad Serbia shkrba@uns.ns.ac.yu Aleksandar Takači Faculty of Technology Bulevar

More information

OBJECT RECOGNITION IN THE ANIMATION SYSTEM

OBJECT RECOGNITION IN THE ANIMATION SYSTEM OBJECT RECOGNITION IN THE ANIMATION SYSTEM Peter L. Stanchev, Boyan Dimitrov, Vladimir Rykov Kettering Unuversity, Flint, Michigan 48504, USA {pstanche, bdimitro, vrykov}@kettering.edu ABSTRACT This work

More information

Graph-Based Linking and Visualization for Legislation Documents (GLVD) Dincer Gultemen & Tom van Engers

Graph-Based Linking and Visualization for Legislation Documents (GLVD) Dincer Gultemen & Tom van Engers Graph-Based Linking and Visualization for Legislation Documents (GLVD) Dincer Gultemen & Tom van Engers Demand of Parliaments Semi-structured information and semantic technologies Inter-institutional business

More information

Path Querying on Graph Databases

Path Querying on Graph Databases Path Querying on Graph Databases Jelle Hellings Hasselt University and transnational University of Limburg 1/38 Overview Graph Databases Motivation Walk Logic Relations with FO and MSO Relations with CTL

More information

KS3 Computing Group 1 Programme of Study 2015 2016 2 hours per week

KS3 Computing Group 1 Programme of Study 2015 2016 2 hours per week 1 07/09/15 2 14/09/15 3 21/09/15 4 28/09/15 Communication and Networks esafety Obtains content from the World Wide Web using a web browser. Understands the importance of communicating safely and respectfully

More information

SEMANTIC-BASED AUTHORING OF TECHNICAL DOCUMENTATION

SEMANTIC-BASED AUTHORING OF TECHNICAL DOCUMENTATION SEMANTIC-BASED AUTHORING OF TECHNICAL DOCUMENTATION R Setchi, Cardiff University, UK, Setchi@cf.ac.uk N Lagos, Cardiff University, UK, LagosN@cf.ac.uk ABSTRACT Authoring of technical documentation is a

More information

Philosophy of Language

Philosophy of Language Philosophy of Language Phil 234, Winter 2013 Bates College Professor William Seeley (315 Hedge) Office Hours: T/Th 11-Noon Course Description: It has been argued that language is what sets us as human

More information

DATABASE MANAGEMENT SYSTEMS IN ENGINEERING

DATABASE MANAGEMENT SYSTEMS IN ENGINEERING NISTIR 4987 DATABASE MANAGEMENT SYSTEMS IN ENGINEERING Katherine C. Morris Mary Mitchell Manufacturing Engineering Laboratory Christopher Dabrowski Elizabeth Fong Computer Systems Laboratory U.S. DEPARTMENT

More information

Search Engine Based Intelligent Help Desk System: iassist

Search Engine Based Intelligent Help Desk System: iassist Search Engine Based Intelligent Help Desk System: iassist Sahil K. Shah, Prof. Sheetal A. Takale Information Technology Department VPCOE, Baramati, Maharashtra, India sahilshahwnr@gmail.com, sheetaltakale@gmail.com

More information