Foundations of Artificial Intelligence. Reasoning

Size: px
Start display at page:

Download "Foundations of Artificial Intelligence. Reasoning"

Transcription

1 Foundations of Artificial Intelligence Reasoning

2 Uncertainty and Reasoning - What is knowledge? - How do we search through knowledge? - How do we get knowledge? - How do we represent knowledge? - How do deal with vague knowledge? How do we reason through knowledge?

3 Objectives Reasoning Introduce the way AI systems reason through knowledge. Give an understanding of Modens Ponens Diagrammatic Substitution Backward Chaining Forward Chaining Students should gain the ability to apply and use diagrammatic substitution to solve problems. Students should be able to follow the chain of inference through a knowledge base using both backward and forward chaining.

4 If I tell you: All boys have a mother and that: "John is a boy" What can you tell me about John?

5 If I tell you: All boys have a mother and that: "John is a boy" You are able to figure out that: "John has a mother without being explicitly told this fact.

6 All boys have a mother "John is a boy" "John has a mother To know that John is a boy or that all boys have mothers merely requires retrieval of previously stored facts. To know that John has a mother requires the ability to reason from the available facts.

7 When we require any knowledge system to do something it has not been explicitly told how to do it must reason. The system must figure out what it needs to know from what it already knows.

8 We have just seen an example of reasoning or drawing inferences. For example if we know: Robins are birds. All birds have wings. Then if we ask: Do robins have wings? Some reasoning (albeit very simple) has to go on answer the question.

9 A good knowledge representation scheme has to allow easy, natural and plausible reasoning. A knowledge based system is an essentially declarative system. The reasoning part of a knowledge based system is the inference engine.

10 There are problems facing the inference engine, such as: A knowledge system must have a way to decide where to start. Rules and facts reside in a static knowledge base. There must be a way for the reasoning process to begin. The inference engine must resolve conflicts that occur when alternative lines of reasoning emerge. It could be, for example, that the system reaches a point at which four or more rules are ready to fire. The inference engine must choose which rule to examine next.

11 This is the simplest and most fundamental form of inference; it was known and described by Aristotle, and stood us in good stead for over 2000 years. It is the rule of modus ponens. The schema is simply : from and infer if p then q p q

12 if it is raining then the ground is wet if height of X > height of Y then X is taller than Y where X and Y are variables, and the database has the following items: it is raining height of Tom = 6 height of Tim = 5 RULES the ground is wet Tom is taller than Tim

13 Substitution processes, are extremely important. Sometimes mere substitution immediately reveals the truth of the theorem without our needing to go through the formality of applying a complex resolution process. A formal way of representing this reasoning is diagrammatic substitution. Lets consider two facts and one implication, from which we would like to be able to prove a third fact.

14 TUTORIAL EXAMPLE A particular planning schedule is reliant on three tasks Task A, Task B and Task C. We know three facts about the tasks : Fact 1 :- Task A is dependant on Task B Fact 2 :- Task B is dependant on Task C Fact 3 :- Task C is behind schedule We know two implications about planning scheduling : Implication 1 If X is dependant on Y and Y is dependant on Z then X is dependant on Z. Implication 2 If X is dependant on Y and Y is behind schedule then X is behind schedule. Use diagrammatic substitution to show that Task A is behind schedule.

15 TUTORIAL EXAMPLE A particular planning schedule is reliant on three tasks Task A, Task B and Task C. We know three facts about the tasks : Fact 1 : D (A, B) (A is dependant on B) Fact 2 : D (B, C) (B is dependant on C) Fact 3 : BS (C) (C is behind schedule) We know two implications about planning scheduling : Implication 1 : (x) : (y) : (z) : D (x, y) D (y, z) D (x, z) Implication 2 : (x) : (y) : D (x, y) BS (y) BS (x) Use diagrammatic substitution to show that BS (A)

16 D (x, y) D (y, z) D (x, z) TUTORIAL EXAMPLE x = A y = B D (A, B) Fact 1 D (B, z) D (A, z) z = C D (B, C) Fact 2 D (A, C) Conclusion 1

17 TUTORIAL EXAMPLE D (x, y) BS (y) BS (x) x = A y = C D (A, C) Conclusion 1 BS (C) Fact 3 BS (A) Conclusion 2

18 The rule of modus ponens, however, does not tell us how to set about solving a problem. It does not tell us where to start and how to proceed. Apart from a rule of inference, we need in addition some principle of strategy.

19 There are two strategies that have also long been employed in logic and mathematics: We can work forward from the given to the conclusion. This mode of proceeding answers the question: What can we conclude from the given data? Or we can work backwards (as long as we know where we want to end up, of course) from the hypothesis to the data supporting it. This mode answers the question: Can we prove the hypothesis from the given data?

20 Four factors influence the question of whether it is better to reason forward or backward: Are there more possible start states or goal states? In which direction is the branching factor greater? Will the program be asked to justify its reasoning process to a user? What kind of event is going to trigger a problemsolving episode?

21 Forward Chaining Lets look at some example demons : when it rained yesterday then ground is wet when excavation material is earth and ground is wet then ground condition is muddy The following facts are known : Note : Forward chaining rules are called demons Rules and demons are fired when they are used it rained yesterday excavation material is earth

22

23 Backward Chaining Lets look at some example rules : if it rained yesterday then ground is wet if excavation material is earth and ground is wet then ground condition is muddy The following facts are known : it rained yesterday excavation material is earth Reasoning

24

25 Take the following rules : if temperature > 60 then furnace is hot Reasoning Tutorial if product is milled steel and furnace is hot then temperature dial setting is number 3 The following facts are known : temperature = 90 product is milled steel Follow the logic of an inference engine on these rules with both a forward and backward chaining regime.

26 Hybrid Systems The differing strengths and weaknesses of forward and backward chaining have raised interest in efforts to integrate them into some sort of bi-directional search (goal-directed and data-driven) combining the best of both worlds.

27 Summary Introduced the way AI systems reason through knowledge. Given an understanding of Modens Ponens Diagrammatic Substitution Backward Chaining Forward Chaining

Knowledge based expert systems D H A N A N J A Y K A L B A N D E

Knowledge based expert systems D H A N A N J A Y K A L B A N D E Knowledge based expert systems D H A N A N J A Y K A L B A N D E What is a knowledge based system? A Knowledge Based System or a KBS is a computer program that uses artificial intelligence to solve problems

More information

Knowledge-Based - Systems

Knowledge-Based - Systems Knowledge-Based - Systems ; Rajendra Arvind Akerkar Chairman, Technomathematics Research Foundation and Senior Researcher, Western Norway Research institute Priti Srinivas Sajja Sardar Patel University

More information

MYCIN. The MYCIN Task

MYCIN. The MYCIN Task MYCIN Developed at Stanford University in 1972 Regarded as the first true expert system Assists physicians in the treatment of blood infections Many revisions and extensions over the years The MYCIN Task

More information

Rule-based Expert Systems

Rule-based Expert Systems Rule-based Expert Systems What is knowledge? is a theoretical or practical understanding of a subject or a domain. is also the sim of what is currently known, and apparently knowledge is power. Those who

More information

Proof Theory for Syntacticians

Proof Theory for Syntacticians Department of Linguistics Ohio State University Syntax 2 (Linguistics 602.02) January 5, 2012 Logics for Linguistics Many different kinds of logic are directly applicable to formalizing theories in syntax

More information

POLA: a student modeling framework for Probabilistic On-Line Assessment of problem solving performance

POLA: a student modeling framework for Probabilistic On-Line Assessment of problem solving performance POLA: a student modeling framework for Probabilistic On-Line Assessment of problem solving performance Cristina Conati, Kurt VanLehn Intelligent Systems Program University of Pittsburgh Pittsburgh, PA,

More information

STA 225: Introductory Statistics (CT)

STA 225: Introductory Statistics (CT) Marshall University College of Science Mathematics Department STA 225: Introductory Statistics (CT) Course catalog description A critical thinking course in applied statistical reasoning covering basic

More information

Statistical Analysis of Climate Change, Renewable Energies, and Sustainability An Independent Investigation for Introduction to Statistics

Statistical Analysis of Climate Change, Renewable Energies, and Sustainability An Independent Investigation for Introduction to Statistics 5/22/2012 Statistical Analysis of Climate Change, Renewable Energies, and Sustainability An Independent Investigation for Introduction to Statistics College of Menominee Nation & University of Wisconsin

More information

FUZZY EXPERT. Dr. Kasim M. Al-Aubidy. Philadelphia University. Computer Eng. Dept February 2002 University of Damascus-Syria

FUZZY EXPERT. Dr. Kasim M. Al-Aubidy. Philadelphia University. Computer Eng. Dept February 2002 University of Damascus-Syria FUZZY EXPERT SYSTEMS 16-18 18 February 2002 University of Damascus-Syria Dr. Kasim M. Al-Aubidy Computer Eng. Dept. Philadelphia University What is Expert Systems? ES are computer programs that emulate

More information

Explicitly teaching Year 2 students to paraphrase will improve their reading comprehension

Explicitly teaching Year 2 students to paraphrase will improve their reading comprehension Explicitly teaching Year 2 students to paraphrase will improve their reading comprehension LESSON PLANS Lessons were based on J. Munro s Paraphrasing Lesson Plans 2006 with adaptations. As mentioned earlier

More information

Introduction to Simulation

Introduction to Simulation Introduction to Simulation Spring 2010 Dr. Louis Luangkesorn University of Pittsburgh January 19, 2010 Dr. Louis Luangkesorn ( University of Pittsburgh ) Introduction to Simulation January 19, 2010 1 /

More information

WHY SOLVE PROBLEMS? INTERVIEWING COLLEGE FACULTY ABOUT THE LEARNING AND TEACHING OF PROBLEM SOLVING

WHY SOLVE PROBLEMS? INTERVIEWING COLLEGE FACULTY ABOUT THE LEARNING AND TEACHING OF PROBLEM SOLVING From Proceedings of Physics Teacher Education Beyond 2000 International Conference, Barcelona, Spain, August 27 to September 1, 2000 WHY SOLVE PROBLEMS? INTERVIEWING COLLEGE FACULTY ABOUT THE LEARNING

More information

Consultation skills teaching in primary care TEACHING CONSULTING SKILLS * * * * INTRODUCTION

Consultation skills teaching in primary care TEACHING CONSULTING SKILLS * * * * INTRODUCTION Education for Primary Care (2013) 24: 206 18 2013 Radcliffe Publishing Limited Teaching exchange We start this time with the last of Paul Silverston s articles about undergraduate teaching in primary care.

More information

MYCIN. The embodiment of all the clichés of what expert systems are. (Newell)

MYCIN. The embodiment of all the clichés of what expert systems are. (Newell) MYCIN The embodiment of all the clichés of what expert systems are. (Newell) What is MYCIN? A medical diagnosis assistant A wild success Better than the experts Prototype for many other systems A disappointing

More information

COSI Meet the Majors Fall 17. Prof. Mitch Cherniack Undergraduate Advising Head (UAH), COSI Fall '17: Instructor COSI 29a

COSI Meet the Majors Fall 17. Prof. Mitch Cherniack Undergraduate Advising Head (UAH), COSI Fall '17: Instructor COSI 29a COSI Meet the Majors Fall 17 Prof. Mitch Cherniack Undergraduate Advising Head (UAH), COSI Fall '17: Instructor COSI 29a Agenda Resources Available To You When You Have Questions COSI Courses, Majors and

More information

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition

Objectives. Chapter 2: The Representation of Knowledge. Expert Systems: Principles and Programming, Fourth Edition Chapter 2: The Representation of Knowledge Expert Systems: Principles and Programming, Fourth Edition Objectives Introduce the study of logic Learn the difference between formal logic and informal logic

More information

MADERA SCIENCE FAIR 2013 Grades 4 th 6 th Project due date: Tuesday, April 9, 8:15 am Parent Night: Tuesday, April 16, 6:00 8:00 pm

MADERA SCIENCE FAIR 2013 Grades 4 th 6 th Project due date: Tuesday, April 9, 8:15 am Parent Night: Tuesday, April 16, 6:00 8:00 pm MADERA SCIENCE FAIR 2013 Grades 4 th 6 th Project due date: Tuesday, April 9, 8:15 am Parent Night: Tuesday, April 16, 6:00 8:00 pm Why participate in the Science Fair? Science fair projects give students

More information

Foundations of Knowledge Representation in Cyc

Foundations of Knowledge Representation in Cyc Foundations of Knowledge Representation in Cyc Why use logic? CycL Syntax Collections and Individuals (#$isa and #$genls) Microtheories This is an introduction to the foundations of knowledge representation

More information

Facilitating Students From Inadequacy Concept in Constructing Proof to Formal Proof

Facilitating Students From Inadequacy Concept in Constructing Proof to Formal Proof PROCEEDING OF 3 RD INTERNATIONAL CONFERENCE ON RESEARCH, IMPLEMENTATION AND EDUCATION OF MATHEMATICS AND SCIENCE YOGYAKARTA, 16 17 MAY 2016 ME 34 Facilitating Students From Inadequacy Concept in Constructing

More information

What is a Mental Model?

What is a Mental Model? Mental Models for Program Understanding Dr. Jonathan I. Maletic Computer Science Department Kent State University What is a Mental Model? Internal (mental) representation of a real system s behavior,

More information

University of Groningen. Systemen, planning, netwerken Bosman, Aart

University of Groningen. Systemen, planning, netwerken Bosman, Aart University of Groningen Systemen, planning, netwerken Bosman, Aart IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to cite from it. Please check the document

More information

How do adults reason about their opponent? Typologies of players in a turn-taking game

How do adults reason about their opponent? Typologies of players in a turn-taking game How do adults reason about their opponent? Typologies of players in a turn-taking game Tamoghna Halder (thaldera@gmail.com) Indian Statistical Institute, Kolkata, India Khyati Sharma (khyati.sharma27@gmail.com)

More information

THE EFFECTS OF TEACHING THE 7 KEYS OF COMPREHENSION ON COMPREHENSION DEBRA HENGGELER. Submitted to. The Educational Leadership Faculty

THE EFFECTS OF TEACHING THE 7 KEYS OF COMPREHENSION ON COMPREHENSION DEBRA HENGGELER. Submitted to. The Educational Leadership Faculty 7 Keys to Comprehension 1 RUNNING HEAD: 7 Keys to Comprehension THE EFFECTS OF TEACHING THE 7 KEYS OF COMPREHENSION ON COMPREHENSION By DEBRA HENGGELER Submitted to The Educational Leadership Faculty Northwest

More information

Visual CP Representation of Knowledge

Visual CP Representation of Knowledge Visual CP Representation of Knowledge Heather D. Pfeiffer and Roger T. Hartley Department of Computer Science New Mexico State University Las Cruces, NM 88003-8001, USA email: hdp@cs.nmsu.edu and rth@cs.nmsu.edu

More information

Syllabus for Philosophy of Mathematics Thomas Donaldson; Winter Quarter, 2015

Syllabus for Philosophy of Mathematics Thomas Donaldson; Winter Quarter, 2015 Syllabus for Philosophy of Mathematics Thomas Donaldson; Winter Quarter, 2015 Basic Information Course Numbers: PHIL 162, MATH 162, PHIL 262. Instructor: Thomas Donaldson Email: tmedonaldson@gmail.com

More information

Neuro-Symbolic Approaches for Knowledge Representation in Expert Systems

Neuro-Symbolic Approaches for Knowledge Representation in Expert Systems Published in the International Journal of Hybrid Intelligent Systems 1(3-4) (2004) 111-126 Neuro-Symbolic Approaches for Knowledge Representation in Expert Systems Ioannis Hatzilygeroudis and Jim Prentzas

More information

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes Stacks Teacher notes Activity description (Interactive not shown on this sheet.) Pupils start by exploring the patterns generated by moving counters between two stacks according to a fixed rule, doubling

More information

Full text of O L O W Science As Inquiry conference. Science as Inquiry

Full text of O L O W Science As Inquiry conference. Science as Inquiry Page 1 of 5 Full text of O L O W Science As Inquiry conference Reception Meeting Room Resources Oceanside Unifying Concepts and Processes Science As Inquiry Physical Science Life Science Earth & Space

More information

Physical Features of Humans

Physical Features of Humans Grade 1 Science, Quarter 1, Unit 1.1 Physical Features of Humans Overview Number of instructional days: 11 (1 day = 20 30 minutes) Content to be learned Observe, identify, and record the external features

More information

A Comparison of the Rule and Case-based Reasoning Approaches for the Automation of Help-desk Operations at the Tier-two Level

A Comparison of the Rule and Case-based Reasoning Approaches for the Automation of Help-desk Operations at the Tier-two Level Nova Southeastern University NSUWorks CEC Theses and Dissertations College of Engineering and Computing 2009 A Comparison of the Rule and Case-based Reasoning Approaches for the Automation of Help-desk

More information

Missouri Mathematics Grade-Level Expectations

Missouri Mathematics Grade-Level Expectations A Correlation of to the Grades K - 6 G/M-223 Introduction This document demonstrates the high degree of success students will achieve when using Scott Foresman Addison Wesley Mathematics in meeting the

More information

Guidelines for Writing an Internship Report

Guidelines for Writing an Internship Report Guidelines for Writing an Internship Report Master of Commerce (MCOM) Program Bahauddin Zakariya University, Multan Table of Contents Table of Contents... 2 1. Introduction.... 3 2. The Required Components

More information

Myths, Legends, Fairytales and Novels (Writing a Letter)

Myths, Legends, Fairytales and Novels (Writing a Letter) Assessment Focus This task focuses on Communication through the mode of Writing at Levels 3, 4 and 5. Two linked tasks (Hot Seating and Character Study) that use the same context are available to assess

More information

An Experimental Comparison of Knowledge Representation Schemes

An Experimental Comparison of Knowledge Representation Schemes AI Magazine Volume 5 Number 2 (1984) ( AAAI) An Experimental Comparison of Knowledge Representation Schemes Kiyoshi Niwa Koji Sasaki Hirokazu Ihara Systems Development Laboratory Hztachi, Ltd. 1099 Ohzeqi

More information

AQUA: An Ontology-Driven Question Answering System

AQUA: An Ontology-Driven Question Answering System AQUA: An Ontology-Driven Question Answering System Maria Vargas-Vera, Enrico Motta and John Domingue Knowledge Media Institute (KMI) The Open University, Walton Hall, Milton Keynes, MK7 6AA, United Kingdom.

More information

Level 6. Higher Education Funding Council for England (HEFCE) Fee for 2017/18 is 9,250*

Level 6. Higher Education Funding Council for England (HEFCE) Fee for 2017/18 is 9,250* Programme Specification: Undergraduate For students starting in Academic Year 2017/2018 1. Course Summary Names of programme(s) and award title(s) Award type Mode of study Framework of Higher Education

More information

Segmented Discourse Representation Theory. Dynamic Semantics with Discourse Structure

Segmented Discourse Representation Theory. Dynamic Semantics with Discourse Structure Introduction Outline : Dynamic Semantics with Discourse Structure pierrel@coli.uni-sb.de Seminar on Computational Models of Discourse, WS 2007-2008 Department of Computational Linguistics & Phonetics Universität

More information

Mathematics subject curriculum

Mathematics subject curriculum Mathematics subject curriculum Dette er ei omsetjing av den fastsette læreplanteksten. Læreplanen er fastsett på Nynorsk Established as a Regulation by the Ministry of Education and Research on 24 June

More information

Rover Races Grades: 3-5 Prep Time: ~45 Minutes Lesson Time: ~105 minutes

Rover Races Grades: 3-5 Prep Time: ~45 Minutes Lesson Time: ~105 minutes Rover Races Grades: 3-5 Prep Time: ~45 Minutes Lesson Time: ~105 minutes WHAT STUDENTS DO: Establishing Communication Procedures Following Curiosity on Mars often means roving to places with interesting

More information

Major Lessons from This Work

Major Lessons from This Work PART TWELVE Conclusions 36 Major Lessons from This Work In this book we have presented experimental evidence at many levels of detail for a diverse set of hypotheses. As indicated by the chapter and section

More information

USER ADAPTATION IN E-LEARNING ENVIRONMENTS

USER ADAPTATION IN E-LEARNING ENVIRONMENTS USER ADAPTATION IN E-LEARNING ENVIRONMENTS Paraskevi Tzouveli Image, Video and Multimedia Systems Laboratory School of Electrical and Computer Engineering National Technical University of Athens tpar@image.

More information

Unit 1: Scientific Investigation-Asking Questions

Unit 1: Scientific Investigation-Asking Questions Unit 1: Scientific Investigation-Asking Questions Standards: OKC 3 Process Standard 3: Experimental design - Understanding experimental designs requires that students recognize the components of a valid

More information

1. Programme title and designation International Management N/A

1. Programme title and designation International Management N/A PROGRAMME APPROVAL FORM SECTION 1 THE PROGRAMME SPECIFICATION 1. Programme title and designation International Management 2. Final award Award Title Credit value ECTS Any special criteria equivalent MSc

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

Handouts and Resources

Handouts and Resources Handouts and Resources 6 th Grade MELD Culminating Task: Compare the information presented in the articles and interview regarding the effect or purpose of activist groups in influencing society. You will

More information

been each get other TASK #1 Fry Words TASK #2 Fry Words Write the following words in ABC order: Write the following words in ABC order:

been each get other TASK #1 Fry Words TASK #2 Fry Words Write the following words in ABC order: Write the following words in ABC order: TASK #1 Fry Words 1-100 been each called down about first TASK #2 Fry Words 1-100 get other long people number into TASK #3 Fry Words 1-100 could part more find now her TASK #4 Fry Words 1-100 for write

More information

UC Merced Proceedings of the Annual Meeting of the Cognitive Science Society

UC Merced Proceedings of the Annual Meeting of the Cognitive Science Society UC Merced Proceedings of the nnual Meeting of the Cognitive Science Society Title Multi-modal Cognitive rchitectures: Partial Solution to the Frame Problem Permalink https://escholarship.org/uc/item/8j2825mm

More information

Lahore University of Management Sciences. FINN 321 Econometrics Fall Semester 2017

Lahore University of Management Sciences. FINN 321 Econometrics Fall Semester 2017 Instructor Syed Zahid Ali Room No. 247 Economics Wing First Floor Office Hours Email szahid@lums.edu.pk Telephone Ext. 8074 Secretary/TA TA Office Hours Course URL (if any) Suraj.lums.edu.pk FINN 321 Econometrics

More information

Inquiry Learning Methodologies and the Disposition to Energy Systems Problem Solving

Inquiry Learning Methodologies and the Disposition to Energy Systems Problem Solving Inquiry Learning Methodologies and the Disposition to Energy Systems Problem Solving Minha R. Ha York University minhareo@yorku.ca Shinya Nagasaki McMaster University nagasas@mcmaster.ca Justin Riddoch

More information

Effectively Resolving Conflict in the Workplace

Effectively Resolving Conflict in the Workplace Effectively Resolving Conflict in the Workplace Presented by: Jordan Rodney June 2016 What Do You See in This Picture? What Do You See in This Picture? What Do You See in This Picture? What Do You See

More information

An Investigation into Team-Based Planning

An Investigation into Team-Based Planning An Investigation into Team-Based Planning Dionysis Kalofonos and Timothy J. Norman Computing Science Department University of Aberdeen {dkalofon,tnorman}@csd.abdn.ac.uk Abstract Models of plan formation

More information

Radius STEM Readiness TM

Radius STEM Readiness TM Curriculum Guide Radius STEM Readiness TM While today s teens are surrounded by technology, we face a stark and imminent shortage of graduates pursuing careers in Science, Technology, Engineering, and

More information

UC San Diego - WASC Exhibit 7.1 Inventory of Educational Effectiveness Indicators

UC San Diego - WASC Exhibit 7.1 Inventory of Educational Effectiveness Indicators What are these? Formal Skills A two-course requirement including any lower-division calculus, symbolic logic, computer programming and/or statistics from the following list: MATH 3C, 4C, 10A or 20A; 10B

More information

AC : TEACHING COLLEGE PHYSICS

AC : TEACHING COLLEGE PHYSICS AC 2012-5386: TEACHING COLLEGE PHYSICS Dr. Bert Pariser, Technical Career Institutes Bert Pariser is a faculty member in the Electronic Engineering Technology and the Computer Science Technology departments

More information

A Genetic Irrational Belief System

A Genetic Irrational Belief System A Genetic Irrational Belief System by Coen Stevens The thesis is submitted in partial fulfilment of the requirements for the degree of Master of Science in Computer Science Knowledge Based Systems Group

More information

About this unit. Lesson one

About this unit. Lesson one Unit 30 Abuja Carnival About this unit This unit revises language and phonics done throughout the year. The theme of the unit is Abuja carnival. Pupils describe a happy carnival picture and read a story

More information

COVER SHEET. This is the author version of article published as:

COVER SHEET. This is the author version of article published as: COVER SHEET This is the author version of article published as: Sivapalan, Siva and Cregan, Peter (2005) Value of online resources for learning by distance education. CAL-laborate 14:pp. 23-27. Copyright

More information

Word Segmentation of Off-line Handwritten Documents

Word Segmentation of Off-line Handwritten Documents Word Segmentation of Off-line Handwritten Documents Chen Huang and Sargur N. Srihari {chuang5, srihari}@cedar.buffalo.edu Center of Excellence for Document Analysis and Recognition (CEDAR), Department

More information

1. Answer the questions below on the Lesson Planning Response Document.

1. Answer the questions below on the Lesson Planning Response Document. Module for Lateral Entry Teachers Lesson Planning Introductory Information about Understanding by Design (UbD) (Sources: Wiggins, G. & McTighte, J. (2005). Understanding by design. Alexandria, VA: ASCD.;

More information

Innovation in Guidance and Counseling Management through Networking Model

Innovation in Guidance and Counseling Management through Networking Model Innovation in Guidance and Counseling Management through Networking Model Sri Milfayetty The State University of Medan, North Sumatera, Indonesia email : milfayetty@yahoo.com Abstract The purpose of this

More information

Commanding Officer Decision Superiority: The Role of Technology and the Decision Maker

Commanding Officer Decision Superiority: The Role of Technology and the Decision Maker Commanding Officer Decision Superiority: The Role of Technology and the Decision Maker Presenter: Dr. Stephanie Hszieh Authors: Lieutenant Commander Kate Shobe & Dr. Wally Wulfeck 14 th International Command

More information

School Complaints Policy

School Complaints Policy Mrs Bland s Infant and Nursery School : Procedure Document Name of Policy: Status: Links to other policies: School Complaints Procedure Recommended other School Complaints Policy Content: Committee responsible

More information

teacher, peer, or school) on each page, and a package of stickers on which

teacher, peer, or school) on each page, and a package of stickers on which ED 026 133 DOCUMENT RESUME PS 001 510 By-Koslin, Sandra Cohen; And Others A Distance Measure of Racial Attitudes in Primary Grade Children: An Exploratory Study. Educational Testing Service, Princeton,

More information

Planning with External Events

Planning with External Events 94 Planning with External Events Jim Blythe School of Computer Science Carnegie Mellon University Pittsburgh, PA 15213 blythe@cs.cmu.edu Abstract I describe a planning methodology for domains with uncertainty

More information

Learning Cases to Resolve Conflicts and Improve Group Behavior

Learning Cases to Resolve Conflicts and Improve Group Behavior From: AAAI Technical Report WS-96-02. Compilation copyright 1996, AAAI (www.aaai.org). All rights reserved. Learning Cases to Resolve Conflicts and Improve Group Behavior Thomas Haynes and Sandip Sen Department

More information

A Case Study: News Classification Based on Term Frequency

A Case Study: News Classification Based on Term Frequency A Case Study: News Classification Based on Term Frequency Petr Kroha Faculty of Computer Science University of Technology 09107 Chemnitz Germany kroha@informatik.tu-chemnitz.de Ricardo Baeza-Yates Center

More information

Disability Resource Center St. Philip's College ensures Access. YOU create Success. Frequently Asked Questions

Disability Resource Center St. Philip's College ensures Access. YOU create Success. Frequently Asked Questions Disability Resource Center St. Philip's College ensures Access. YOU create Success. Frequently Asked Questions Are support services available? A variety of support services are available to a St. Philip's

More information

Lecture 1: Basic Concepts of Machine Learning

Lecture 1: Basic Concepts of Machine Learning Lecture 1: Basic Concepts of Machine Learning Cognitive Systems - Machine Learning Ute Schmid (lecture) Johannes Rabold (practice) Based on slides prepared March 2005 by Maximilian Röglinger, updated 2010

More information

Smarter Balanced Assessment Consortium:

Smarter Balanced Assessment Consortium: Smarter Balanced Assessment Consortium: ELA Practice Test Scoring Guide Grade 5 04/25/2014 G5_PracticeTest_ScoringGuide_ELA.docx 0 1 5 1 1 2 RI-1 The student will identify text evidence to support a given

More information

Lesson Plan Title Aquatic Ecology

Lesson Plan Title Aquatic Ecology Lesson Plan Title Aquatic Ecology Name (last, first): Larson, Don Scientific Theme(s): C-2: develop an understanding of the structure, function, behavior, development, life cycles, and diversity of living

More information

Feature-oriented vs. Needs-oriented Product Access for Non-Expert Online Shoppers

Feature-oriented vs. Needs-oriented Product Access for Non-Expert Online Shoppers Feature-oriented vs. Needs-oriented Product Access for Non-Expert Online Shoppers Daniel Felix 1, Christoph Niederberger 1, Patrick Steiger 2 & Markus Stolze 3 1 ETH Zurich, Technoparkstrasse 1, CH-8005

More information

Certificate of Higher Education in History. Relevant QAA subject benchmarking group: History

Certificate of Higher Education in History. Relevant QAA subject benchmarking group: History Certificate of Higher Education in History Awarding Institution: The University of Reading Teaching Institution: The University of Reading Relevant QAA subject benchmarking group: History Faculty of Arts

More information

TU-E2090 Research Assignment in Operations Management and Services

TU-E2090 Research Assignment in Operations Management and Services Aalto University School of Science Operations and Service Management TU-E2090 Research Assignment in Operations Management and Services Version 2016-08-29 COURSE INSTRUCTOR: OFFICE HOURS: CONTACT: Saara

More information

Usability Design Strategies for Children: Developing Children Learning and Knowledge in Decreasing Children Dental Anxiety

Usability Design Strategies for Children: Developing Children Learning and Knowledge in Decreasing Children Dental Anxiety Presentation Title Usability Design Strategies for Children: Developing Child in Primary School Learning and Knowledge in Decreasing Children Dental Anxiety Format Paper Session [ 2.07 ] Sub-theme Teaching

More information

Section 7, Unit 4: Sample Student Book Activities for Teaching Listening

Section 7, Unit 4: Sample Student Book Activities for Teaching Listening Section 7, Unit 4: Sample Student Book Activities for Teaching Listening I. ACTIVITIES TO PRACTICE THE SOUND SYSTEM 1. Listen and Repeat for elementary school students. It could be done as a pre-listening

More information

Research Design & Analysis Made Easy! Brainstorming Worksheet

Research Design & Analysis Made Easy! Brainstorming Worksheet Brainstorming Worksheet 1) Choose a Topic a) What are you passionate about? b) What are your library s strengths? c) What are your library s weaknesses? d) What is a hot topic in the field right now that

More information

Abstractions and the Brain

Abstractions and the Brain Abstractions and the Brain Brian D. Josephson Department of Physics, University of Cambridge Cavendish Lab. Madingley Road Cambridge, UK. CB3 OHE bdj10@cam.ac.uk http://www.tcm.phy.cam.ac.uk/~bdj10 ABSTRACT

More information

Informal Comparative Inference: What is it? Hand Dominance and Throwing Accuracy

Informal Comparative Inference: What is it? Hand Dominance and Throwing Accuracy Informal Comparative Inference: What is it? Hand Dominance and Throwing Accuracy Logistics: This activity addresses mathematics content standards for seventh-grade, but can be adapted for use in sixth-grade

More information

Replies to Greco and Turner

Replies to Greco and Turner Replies to Greco and Turner Agustín Rayo October 27, 2014 Greco and Turner wrote two fantastic critiques of my book. I learned a great deal from their comments, and suffered a great deal trying to come

More information

The Computational Value of Nonmonotonic Reasoning. Matthew L. Ginsberg. Stanford University. Stanford, CA 94305

The Computational Value of Nonmonotonic Reasoning. Matthew L. Ginsberg. Stanford University. Stanford, CA 94305 The Computational Value of Nonmonotonic Reasoning Matthew L. Ginsberg Computer Science Department Stanford University Stanford, CA 94305 Abstract A substantial portion of the formal work in articial intelligence

More information

Predicting Students Performance with SimStudent: Learning Cognitive Skills from Observation

Predicting Students Performance with SimStudent: Learning Cognitive Skills from Observation School of Computer Science Human-Computer Interaction Institute Carnegie Mellon University Year 2007 Predicting Students Performance with SimStudent: Learning Cognitive Skills from Observation Noboru Matsuda

More information

Blended Learning Module Design Template

Blended Learning Module Design Template INTRODUCTION The blended course you will be designing is comprised of several modules (you will determine the final number of modules in the course as part of the design process). This template is intended

More information

Mathematical Induction Examples And Solutions

Mathematical Induction Examples And Solutions Examples And Free PDF ebook Download: Examples And Download or Read Online ebook mathematical induction examples and solutions in PDF Format From The Best User Guide Database Examples. Question 1. Prove

More information

Proposal of Pattern Recognition as a necessary and sufficient principle to Cognitive Science

Proposal of Pattern Recognition as a necessary and sufficient principle to Cognitive Science Proposal of Pattern Recognition as a necessary and sufficient principle to Cognitive Science Gilberto de Paiva Sao Paulo Brazil (May 2011) gilbertodpaiva@gmail.com Abstract. Despite the prevalence of the

More information

Mathematics process categories

Mathematics process categories Mathematics process categories All of the UK curricula define multiple categories of mathematical proficiency that require students to be able to use and apply mathematics, beyond simple recall of facts

More information

INSTRUCTIONAL FOCUS DOCUMENT Grade 5/Science

INSTRUCTIONAL FOCUS DOCUMENT Grade 5/Science Exemplar Lesson 01: Comparing Weather and Climate Exemplar Lesson 02: Sun, Ocean, and the Water Cycle State Resources: Connecting to Unifying Concepts through Earth Science Change Over Time RATIONALE:

More information

A Metacognitive Approach to Support Heuristic Solution of Mathematical Problems

A Metacognitive Approach to Support Heuristic Solution of Mathematical Problems A Metacognitive Approach to Support Heuristic Solution of Mathematical Problems John TIONG Yeun Siew Centre for Research in Pedagogy and Practice, National Institute of Education, Nanyang Technological

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

A BOOK IN A SLIDESHOW. The Dragonfly Effect JENNIFER AAKER & ANDY SMITH

A BOOK IN A SLIDESHOW. The Dragonfly Effect JENNIFER AAKER & ANDY SMITH A BOOK IN A SLIDESHOW The Dragonfly Effect JENNIFER AAKER & ANDY SMITH THE DRAGONFLY MODEL FOCUS GRAB ATTENTION TAKE ACTION ENGAGE A Book In A Slideshow JENNIFER AAKER & ANDY SMITH WING 1: FOCUS IDENTIFY

More information

MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE

MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE Master of Science (M.S.) Major in Computer Science 1 MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE Major Program The programs in computer science are designed to prepare students for doctoral research,

More information

M55205-Mastering Microsoft Project 2016

M55205-Mastering Microsoft Project 2016 M55205-Mastering Microsoft Project 2016 Course Number: M55205 Category: Desktop Applications Duration: 3 days Certification: Exam 70-343 Overview This three-day, instructor-led course is intended for individuals

More information

BSc Food Marketing and Business Economics with Industrial Training For students entering Part 1 in 2015/6

BSc Food Marketing and Business Economics with Industrial Training For students entering Part 1 in 2015/6 BSc Food Marketing and Business Economics with Industrial Training For students entering Part 1 in 2015/6 UCAS code: DL61 Awarding Institution: Teaching Institution: Relevant QAA subject Benchmarking group(s):

More information

Biome I Can Statements

Biome I Can Statements Biome I Can Statements I can recognize the meanings of abbreviations. I can use dictionaries, thesauruses, glossaries, textual features (footnotes, sidebars, etc.) and technology to define and pronounce

More information

Today we examine the distribution of infinitival clauses, which can be

Today we examine the distribution of infinitival clauses, which can be Infinitival Clauses Today we examine the distribution of infinitival clauses, which can be a) the subject of a main clause (1) [to vote for oneself] is objectionable (2) It is objectionable to vote for

More information

A Study of Metacognitive Awareness of Non-English Majors in L2 Listening

A Study of Metacognitive Awareness of Non-English Majors in L2 Listening ISSN 1798-4769 Journal of Language Teaching and Research, Vol. 4, No. 3, pp. 504-510, May 2013 Manufactured in Finland. doi:10.4304/jltr.4.3.504-510 A Study of Metacognitive Awareness of Non-English Majors

More information

Integrated M.Sc.-Ph.D. Programs in Life Sciences and Physical Science

Integrated M.Sc.-Ph.D. Programs in Life Sciences and Physical Science Bose Institute and University of Calcutta Announcement Integrated M.Sc.-Ph.D. Programs in 2015-16 Web site : www.jcbose.ac.in Phone no.: 033 2569 3311 ADVT. NO.: BI/09/ M.Sc.Ph.D./2015-16 Applications

More information

Module Title: Managing and Leading Change. Lesson 4 THE SIX SIGMA

Module Title: Managing and Leading Change. Lesson 4 THE SIX SIGMA Module Title: Managing and Leading Change Lesson 4 THE SIX SIGMA Learning Objectives: At the end of the lesson, the students should be able to: 1. Define what is Six Sigma 2. Discuss the brief history

More information

Politics and Society Curriculum Specification

Politics and Society Curriculum Specification Leaving Certificate Politics and Society Curriculum Specification Ordinary and Higher Level 1 September 2015 2 Contents Senior cycle 5 The experience of senior cycle 6 Politics and Society 9 Introduction

More information

Dublin City Schools Mathematics Graded Course of Study GRADE 4

Dublin City Schools Mathematics Graded Course of Study GRADE 4 I. Content Standard: Number, Number Sense and Operations Standard Students demonstrate number sense, including an understanding of number systems and reasonable estimates using paper and pencil, technology-supported

More information

Genevieve L. Hartman, Ph.D.

Genevieve L. Hartman, Ph.D. Curriculum Development and the Teaching-Learning Process: The Development of Mathematical Thinking for all children Genevieve L. Hartman, Ph.D. Topics for today Part 1: Background and rationale Current

More information