Expert Systems: Simple Examples and case study

Size: px
Start display at page:

Download "Expert Systems: Simple Examples and case study"

Transcription

1 Expert Systems: Simple Examples and case study KR Chowdhary, Professor, Department of Computer Science & Engineering, MBM Engineering College, JNV University, Jodhpur

2 A Simple Example 1.IF engine_getting_petrol AND engine_turns_over THEN problem_with_spark_plugs 2.IF NOT engine_turns_over AND NOT lights_come_on THEN problem_with_battery 3.IF NOT engine_turns_over AND lights_come_on THEN problem_with_starter 4.IF petrol_in_fuel_tank THEN engine_getting_petrol (i.e.petrol reaches to engine)

3 A Simple Example coded in prolog problem_with_spark_plugs :- engine_getting_petrol, engine_turns_over. problem_with_battery :- NOT engine_turns_over, NOT lights_come_on. problem_with_starter :- NOT engine_turns_over, lights_come_on. engine_getting_petrol :- petrol_in_fuel_tank.

4 Explanation facilities Most expert systems have explanation facilities that allow the user to ask why it asked some question, and how it reached some conclusion. These questions are answered by referring to the system goals, the rules being used, and any existing problem data.

5 Explanation facilities System: Is there gas in the fuel tank? User: Yes. System: Is it true that the engine turns over? User: No. System: Is it true that the lights come on? User: Why? System: I am trying to prove: problem with battery. It has been established that it is not the case that the engine turns over. Therefore, if it is not the case that the lights come on then there is a problem with battery. Is it true that the lights come on? User: No. System: I conclude that there is a problem with the battery. User: How?

6 Explanation facilities.. System: This follows from Rule 2: IF NOT engine_turns_over AND... NOT engine_turns_over was given by the user. NOT lights_come_on was given by the user.

7 Probabilistic expert systems Expertise is often intuitive, and facts can have degrees of truth much research has been devoted to inventing new models of probabilistic deduction: e.g., Certainty factors fuzzy logic statistical / Bayesian deduction multi-valued logics: true, false, unknown typical rule: (e.g.). IF patient has a fever CF 0.90 patient s forehead is blue CF.75 THEN illness is Cat Scratch Fever CF.5 weakness: these (CF) certainty factors are not statistically sound values; rather pulled out of the air by expert or KE CF s are combined during deduction; multiple results can arise how legitimate are they?

8 MYCIN: A Quick Case Study One of the earliest expert systems. Design has strongly influenced the design of commercial expert systems and expert system shells Developed at Stanford in the 1970s Its job was to diagnose and recommend treatment for certain blood infections To do the diagnosis properly'' involves growing cultures of the infecting organism Mycin was developed partly in order to explore how human experts make these rough (but important) guesses based on partial information.

9 Mycin was never actually used in practice Mycin represented its knowledge as a set of IF-THEN rules with certainty factors IF the infection is primary-bacteremia AND the site of the culture is one of the sterile sites AND the suspected portal of entry is the gastrointestinal tract THEN there is suggestive evidence (0.7) that infection is bacteroid. The 0.7 is roughly the certainty that the conclusion will be true given the evidence. If the evidence is uncertain the certainties of the bits of evidence will be combined with the certainty of the rule to give the certainty of the conclusion.

10 Mycin was written in Lisp, and its rules are formally represented as Lisp expressions. Mycin is a (primarily) goal-directed system, using the basic backward chaining reasoning strategy Mycin used various heuristics to control the search for a solution (or proof of some hypothesis)

11 These were needed both to make the reasoning efficient and to prevent the user being asked too many unnecessary questions One strategy is to first ask the user a number of more or less preset questions that are always required and which allow the system to rule out very unlikely diagnoses. The other strategies relate to the way in which rules are invoked. Given a possible rule to use, Mycin first checks all the premises of the rule to see if any are known to be false

12 The other strategies relate more to the certainty factors. Mycin will first look at rules that have more certain conclusions, and will abandon a search once the certainties involved get below 0.2 There are three main stages to the dialogue. 1. Initial data about the case is gathered so the system can come up with a very broad diagnosis. 2. More directed questions are asked to test specific hypotheses. At the end of this section a diagnosis is proposed.

13 3. Questions are asked to determine an appropriate treatment, given the diagnosis and facts about the patient. This concludes with a treatment recommendation. At any stage user can ask why a question was asked or how a conclusion was reached, and when treatment is recommended the user can ask for alternative treatments if the first is not viewed as satisfactory. Other developments from the MYCIN 1. EMYCIN was really the first expert shell developed from Mycin 2. system called NEOMYCIN was developed for training doctor

Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily true.

Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily true. CmSc310 Artificial Intelligence Expert Systems II 1. Reasoning under uncertainty Knowledge is rarely absolutely certain. In expert systems we need a way to say that something is probably but not necessarily

More information

Sample Interaction: Explanation. Sample Interaction (cont d) Sample Interaction: Therapy. Sample Interaction: Diagnosis. How It Worked: Representation

Sample Interaction: Explanation. Sample Interaction (cont d) Sample Interaction: Therapy. Sample Interaction: Diagnosis. How It Worked: Representation Outline Rule-Based Systems 6.871-- Lecture 6 MYCIN Introduction»Task» Sample Interaction» Reasons for Success How It Worked» Knowledge Representation» Architecture and Control Structure» Inexact Inference»

More information

Physicians and possibly medical students and paramedics.

Physicians and possibly medical students and paramedics. MYCIN Introduction Problem domain: Selection of antibiotics for patients with serious infections. Medical decision making, particularly in clinical medicine is regarded as an "art form" rather than a "scientific

More information

Knowledge Based Systems

Knowledge Based Systems Knowledge Based Systems Human Expert A human expert is a specialist for a specific differentiated application field who creates solutions to customer problems in this respective field and supports them

More information

CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading

CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading CPS331 Lecture: Coping with Uncertainty; Discussion of Dreyfus Reading Objectives: 1. To discuss ways of handling uncertainty (probability; Mycin CF) 2. To discuss Dreyfus views on expert systems Materials:

More information

Overview. cis32-spring2003-parsons-lect15 2

Overview. cis32-spring2003-parsons-lect15 2 EXPERT SYSTEMS Overview The last lecture looked at rules as a technique for knowledge representation. In a while we will go on to look at logic as a means of knowledge representation. First, however, we

More information

Overview EXPERT SYSTEMS. What is an expert system?

Overview EXPERT SYSTEMS. What is an expert system? EXPERT SYSTEMS Overview The last lecture looked at rules as a technique for knowledge representation. In a while we will go on to look at logic as a means of knowledge representation. First, however, we

More information

INFERENCING STRATEGIES

INFERENCING STRATEGIES INFERENCING STRATEGIES Table of Content Introduction Categories of Reasoning Inference Techniques Control Strategies Comparative Summary of Backward and Forward Chaining Conflict Resolution Goal Agenda

More information

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes

Chapter 2. Knowledge Representation: Reasoning, Issues, and Acquisition. Teaching Notes Chapter 2 Knowledge Representation: Reasoning, Issues, and Acquisition Teaching Notes This chapter explains how knowledge is represented in artificial intelligence. The topic may be launched by introducing

More information

Expert Systems. Artificial Intelligence. Lecture 4 Karim Bouzoubaa

Expert Systems. Artificial Intelligence. Lecture 4 Karim Bouzoubaa Expert Systems Artificial Intelligence Lecture 4 Karim Bouzoubaa Artificial Intelligence Copyright Karim Bouzoubaa 2 Introduction ES: Capture, represent, store and apply human K using a machine Practical

More information

Models for Inexact Reasoning. Imprecision and Approximate Reasoning. Miguel García Remesal Department of Artificial Intelligence

Models for Inexact Reasoning. Imprecision and Approximate Reasoning. Miguel García Remesal Department of Artificial Intelligence Models for Inexact Reasoning Introduction to Uncertainty, Imprecision and Approximate Reasoning Miguel García Remesal Department of Artificial Intelligence mgremesal@fi.upm.es Uncertainty and Imprecision

More information

Thinking 2. Dual-Process Theory. Dual-Process Theory. Can you describe the cues you use to distinguish all dogs from all cats? What is this?

Thinking 2. Dual-Process Theory. Dual-Process Theory. Can you describe the cues you use to distinguish all dogs from all cats? What is this? Dual-Process Theory Heuristics: Strategies that can be used in all kinds of directed thinking to quickly make judgments, decisions, reason, or solve problems, at the price of occasional errors. Which of

More information

Experimental Psychology PSY 433. Chapter 1 Explanation in Scientific Psychology

Experimental Psychology PSY 433. Chapter 1 Explanation in Scientific Psychology Experimental Psychology PSY 433 Chapter 1 Explanation in Scientific Psychology Scientific Curiosity Scientists are willing to go to much greater lengths to satisfy their curiosity than are nonscientists.

More information

Hypothesis-Driven Research

Hypothesis-Driven Research Hypothesis-Driven Research Research types Descriptive science: observe, describe and categorize the facts Discovery science: measure variables to decide general patterns based on inductive reasoning Hypothesis-driven

More information

Chapter 1.1. The Process of Science. Essential Questions

Chapter 1.1. The Process of Science. Essential Questions Chapter 1.1 The Process of Science Essential Questions 1. How does scientific inquiry answer questions about the living world? 2. How do observations lead to scientific inferences? 3. How do scientific

More information

56 The Evolution of MYCIN s Rule Form

56 The Evolution of MYCIN s Rule Form PART TWO Using Rules 3 The Evolution Rule Form of MYCIN s There is little doubt that the decision to use rules to encode infectious disease knowledge in the nascent MYCIN system was largely influenced

More information

What is Science 2009 What is science?

What is Science 2009 What is science? What is science? The question we want to address is seemingly simple, but turns out to be quite difficult to answer: what is science? It is reasonable to ask such a question since this is a book/course

More information

The Nature of Science: What is Science? A Effective Synthesis for Science Instruction. What is Science, Really?

The Nature of Science: What is Science? A Effective Synthesis for Science Instruction. What is Science, Really? The Nature of : A Missing Foundation for Teaching and Learning International Education Conference Singapore 2006 William F. McComas, Ph.D. Parks Family Professor of Education College of Education and Health

More information

Is it possible to gain new knowledge by deduction?

Is it possible to gain new knowledge by deduction? Is it possible to gain new knowledge by deduction? Abstract In this paper I will try to defend the hypothesis that it is possible to gain new knowledge through deduction. In order to achieve that goal,

More information

What Causes war? C h. 1 : T e r m i n o l o g y & Methodology. Notes by Denis Bašić

What Causes war? C h. 1 : T e r m i n o l o g y & Methodology. Notes by Denis Bašić What Causes war? C h. 1 : T e r m i n o l o g y & Methodology Notes by Denis Bašić What is called wisdom is concerned with primary causes. Aristotle The Scientific Method: Theory Theories in the social

More information

Formulation of Research Design

Formulation of Research Design Formulation of Research Design Mujtaba Hassan AGHA PhD Industrial Systems Engineering Associate Professor Muhammad Ali Jinnah University (MAJU) Islamabad Campus Recalling Some Basic concepts What is theory

More information

Chapter 02 Developing and Evaluating Theories of Behavior

Chapter 02 Developing and Evaluating Theories of Behavior Chapter 02 Developing and Evaluating Theories of Behavior Multiple Choice Questions 1. A theory is a(n): A. plausible or scientifically acceptable, well-substantiated explanation of some aspect of the

More information

Topic 4. Representation and Reasoning with Uncertainty

Topic 4. Representation and Reasoning with Uncertainty Topic 4 Representation and Reasoning with Uncertainty Contents 4.0 Representing Uncertainty PART II 4.2 Certainty Factors (CFs) 4.3 Dempster-Shafer theory 4.4 Fuzzy Logic 1 Interpretations of the meaning

More information

STIN2103. Knowledge. engineering expert systems. Wan Hussain Wan Ishak. SOC 2079 Ext.: Url:

STIN2103. Knowledge. engineering expert systems. Wan Hussain Wan Ishak. SOC 2079 Ext.: Url: & Knowledge STIN2103 engineering expert systems Wan Hussain Wan Ishak SOC 2079 Ext.: 4786 Email: hussain@uum.edu.my Url: http://www.wanhussain.com Outline Knowledge Representation Types of knowledge Knowledge

More information

Bradford Hill Criteria for Causal Inference Based on a presentation at the 2015 ANZEA Conference

Bradford Hill Criteria for Causal Inference Based on a presentation at the 2015 ANZEA Conference Bradford Hill Criteria for Causal Inference Based on a presentation at the 2015 ANZEA Conference Julian King Director, Julian King & Associates a member of the Kinnect Group www.julianking.co.nz www.kinnect.co.nz

More information

Engineering Science & VALIDITY

Engineering Science & VALIDITY Engineering Science & VALIDITY Today we will look at: 1. Scientific foundations 2. Validation 3. Reliability 4. Logic 5. Industrial validation 6. MSc relevance February 24, 2014 1 The linked image cannot

More information

COURSE: NURSING RESEARCH CHAPTER I: INTRODUCTION

COURSE: NURSING RESEARCH CHAPTER I: INTRODUCTION COURSE: NURSING RESEARCH CHAPTER I: INTRODUCTION 1. TERMINOLOGY 1.1 Research Research is a systematic enquiry about a particular situation for a certain truth. That is: i. It is a search for knowledge

More information

Screening and Clinical Assessment for Dysphagia: How to Decide.

Screening and Clinical Assessment for Dysphagia: How to Decide. Screening and Clinical Assessment for Dysphagia: How to Decide. How to Decide. ASHA Convention 2014 James L. Coyle, Ph.D., CCC-SLP, BCS-S Associate Professor, Communication Science & Disorders, University

More information

Insight Assessment Measuring Thinking Worldwide

Insight Assessment Measuring Thinking Worldwide California Critical Thinking Skills Test (CCTST). The CCTST measures the reasoning skills human beings use in the process of reflectively deciding what to believe or what to do. Skill/Attribute Name SE

More information

A FRAMEWORK FOR CLINICAL DECISION SUPPORT IN INTERNAL MEDICINE A PRELIMINARY VIEW Kopecky D 1, Adlassnig K-P 1

A FRAMEWORK FOR CLINICAL DECISION SUPPORT IN INTERNAL MEDICINE A PRELIMINARY VIEW Kopecky D 1, Adlassnig K-P 1 A FRAMEWORK FOR CLINICAL DECISION SUPPORT IN INTERNAL MEDICINE A PRELIMINARY VIEW Kopecky D 1, Adlassnig K-P 1 Abstract MedFrame provides a medical institution with a set of software tools for developing

More information

Cognitive domain: Comprehension Answer location: Elements of Empiricism Question type: MC

Cognitive domain: Comprehension Answer location: Elements of Empiricism Question type: MC Chapter 2 1. Knowledge that is evaluative, value laden, and concerned with prescribing what ought to be is known as knowledge. *a. Normative b. Nonnormative c. Probabilistic d. Nonprobabilistic. 2. Most

More information

Analysis of complex patterns of evidence in legal cases: Wigmore charts vs. Bayesian networks

Analysis of complex patterns of evidence in legal cases: Wigmore charts vs. Bayesian networks Analysis of complex patterns of evidence in legal cases: Wigmore charts vs. Bayesian networks V. Leucari October 2005 Typical features of the evidence arising from legal cases are its complex structure

More information

Psychology Research Process

Psychology Research Process Psychology Research Process Logical Processes Induction Observation/Association/Using Correlation Trying to assess, through observation of a large group/sample, what is associated with what? Examples:

More information

Chapter 1 Introduction to Educational Research

Chapter 1 Introduction to Educational Research Chapter 1 Introduction to Educational Research The purpose of Chapter One is to provide an overview of educational research and introduce you to some important terms and concepts. My discussion in this

More information

Expert Systems Research: Modeling the Medical Decision Making Process

Expert Systems Research: Modeling the Medical Decision Making Process Scptcmbcr 1982 Also numbered: Report No. STAN-CS-82-932 Expert Systems Research: Modeling the Medical Decision Making Process by k&ad I-i. Shortliffc and Larvrcncc M. Pagan Departments of Medicine and

More information

An expert system (Autodoc) for diagnosing diseases and prescribing medication using visual basic.net

An expert system (Autodoc) for diagnosing diseases and prescribing medication using visual basic.net Information Technology Research Journal Vol.2(2), pp. 20 24, November, 2012 Available online http://resjournals.com/itj ISSN: 2026-6715 2012 International Research Journals Full Length Research Paper An

More information

Inferencing in Artificial Intelligence and Computational Linguistics

Inferencing in Artificial Intelligence and Computational Linguistics Inferencing in Artificial Intelligence and Computational Linguistics (http://www.dfki.de/~horacek/infer-ai-cl.html) no classes on 28.5., 18.6., 25.6. 2-3 extra lectures will be scheduled Helmut Horacek

More information

Theories of categorical reasoning and extended syllogisms

Theories of categorical reasoning and extended syllogisms THINKING & REASONING, 2006, 12 (4), 379 412 Theories of categorical reasoning and extended syllogisms David E. Copeland University of Southern Mississippi, Hattiesburg, MS, USA The aim of this study was

More information

A. Leander Fontaine, M.D. pharmiceutics LLC 2005

A. Leander Fontaine, M.D. pharmiceutics LLC 2005 Labeling A. Leander Fontaine, M.D. 1 Definitions Used in this Presentation (Suspected) Adverse Reaction [(s)adr] Causation: at least a reasonable possibility. No proof required. Driven by perceived duty

More information

Kahneman, Daniel. Thinking Fast and Slow. New York: Farrar, Straus & Giroux, 2011.

Kahneman, Daniel. Thinking Fast and Slow. New York: Farrar, Straus & Giroux, 2011. The accumulating research indicates that individuals cognitive and behavioral orientations to objects (their thoughts and actions) are frequently based on rapid shortcuts or heuristics. The past few decades

More information

COMP 516 Research Methods in Computer Science. COMP 516 Research Methods in Computer Science. Research Process Models: Sequential (1)

COMP 516 Research Methods in Computer Science. COMP 516 Research Methods in Computer Science. Research Process Models: Sequential (1) COMP 516 Research Methods in Computer Science Dominik Wojtczak Department of Computer Science University of Liverpool COMP 516 Research Methods in Computer Science Lecture 9: Research Process Models Dominik

More information

CHAPTER 2 APPLYING SCIENTIFIC THINKING TO MANAGEMENT PROBLEMS

CHAPTER 2 APPLYING SCIENTIFIC THINKING TO MANAGEMENT PROBLEMS Cambodian Mekong University is the university that cares for the value of education MN 400: Research Methods CHAPTER 2 APPLYING SCIENTIFIC THINKING TO MANAGEMENT PROBLEMS Teacher: Pou, Sovann Sources of

More information

What is the Scientific Method?

What is the Scientific Method? What all Science is "BUILT" upon How do you solve problems? How do scientists carry out valid investigations? How does the scientific process apply to real world scenarios? What is the Scientific Method?

More information

Metabolism is All About Burning Calories. Most people talk about your metabolism like it s all about burning calories.

Metabolism is All About Burning Calories. Most people talk about your metabolism like it s all about burning calories. Big Fat Lie #1 Metabolism is All About Burning Calories Most people talk about your metabolism like it s all about burning calories. But that s kind of like saying the only thing your car engine does is

More information

Visual book review 1 Safe and Sound, AI in hazardous applications by John Fox and Subrata Das

Visual book review 1 Safe and Sound, AI in hazardous applications by John Fox and Subrata Das Visual book review 1 Safe and Sound, AI in hazardous applications by John Fox and Subrata Das Boris Kovalerchuk Dept. of Computer Science Central Washington University, Ellensburg, WA 98926-7520 borisk@cwu.edu

More information

MS&E 226: Small Data

MS&E 226: Small Data MS&E 226: Small Data Lecture 10: Introduction to inference (v2) Ramesh Johari ramesh.johari@stanford.edu 1 / 17 What is inference? 2 / 17 Where did our data come from? Recall our sample is: Y, the vector

More information

Response to the ASA s statement on p-values: context, process, and purpose

Response to the ASA s statement on p-values: context, process, and purpose Response to the ASA s statement on p-values: context, process, purpose Edward L. Ionides Alexer Giessing Yaacov Ritov Scott E. Page Departments of Complex Systems, Political Science Economics, University

More information

Dealing with Uncertainty in Expert Systems

Dealing with Uncertainty in Expert Systems Dealing with Uncertainty in Expert Systems Sonal Dubey, R. K. Pandey, S. S. Gautam Abstract The aim of artificial intelligence is to develop tools for representing piece of knowledge and providing inference

More information

Validity and Quantitative Research. What is Validity? What is Validity Cont. RCS /16/04

Validity and Quantitative Research. What is Validity? What is Validity Cont. RCS /16/04 Validity and Quantitative Research RCS 6740 6/16/04 What is Validity? Valid Definition (Dictionary.com): Well grounded; just: a valid objection. Producing the desired results; efficacious: valid methods.

More information

Computer-Based Medical Decision Making: From MYCIN to VM

Computer-Based Medical Decision Making: From MYCIN to VM 10 Computer-Based Medical Decision Making: From MYCIN to VM Lawrence M. Fagan, Edward H. Shortliffe, and Bruce G. Buchanan We mentioned in the introduction to Chapter 5 that MYCIN provided a starting point

More information

Research Methodology

Research Methodology Research Methodology Overview of Research and its Methodologies Course Objectives At the end of this course, the students should be able to: understand some basic concepts of research and its Methodologies

More information

5. Living things contain genetic information in the form of DNA and RNA Universal genetic code 6. Living things pass on heritable information to their

5. Living things contain genetic information in the form of DNA and RNA Universal genetic code 6. Living things pass on heritable information to their Biology BIOLOGY 102 Lecture 1: Introduction to Biology Scientific study of life From Greek Bios life Logia study of 1. All living things are made of one or more cells 2. Living things carry out metabolism

More information

Scientific Method. How Science is done.

Scientific Method. How Science is done. Scientific Method How Science is done. Scientific Method The scientific method is a way to ask and answer scientific questions by making observations and doing experiments. The steps of the scientific

More information

INTERVIEWS II: THEORIES AND TECHNIQUES 5. CLINICAL APPROACH TO INTERVIEWING PART 1

INTERVIEWS II: THEORIES AND TECHNIQUES 5. CLINICAL APPROACH TO INTERVIEWING PART 1 INTERVIEWS II: THEORIES AND TECHNIQUES 5. CLINICAL APPROACH TO INTERVIEWING PART 1 5.1 Clinical Interviews: Background Information The clinical interview is a technique pioneered by Jean Piaget, in 1975,

More information

Disposition. Quantitative Research Methods. Science what it is. Basic assumptions of science. Inductive and deductive logic

Disposition. Quantitative Research Methods. Science what it is. Basic assumptions of science. Inductive and deductive logic Quantitative Research Methods Sofia Ramström Medicinska vetenskaper, Örebro Universitet Diagnostikcentrum, klinisk kemi, Region Östergötland Disposition I. What is science and what is quantitative science?

More information

Learning Deterministic Causal Networks from Observational Data

Learning Deterministic Causal Networks from Observational Data Carnegie Mellon University Research Showcase @ CMU Department of Psychology Dietrich College of Humanities and Social Sciences 8-22 Learning Deterministic Causal Networks from Observational Data Ben Deverett

More information

Anamnesis via the Internet - Prospects and Pilot Results

Anamnesis via the Internet - Prospects and Pilot Results MEDINFO 2001 V. Patel et al. (Eds) Amsterdam: IOS Press 2001 IMIA. All rights reserved Anamnesis via the Internet - Prospects and Pilot Results Athanasios Emmanouil and Gunnar O. Klein Centre for Health

More information

Chapter 1 About Science. What is Science? When was Science Invented? 4/6/2015

Chapter 1 About Science. What is Science? When was Science Invented? 4/6/2015 Chapter 1 About Science What is Science? The body of knowledge which describes order within nature and the causes of that order The ongoing activity of the human race dedicated to gathering knowledge about

More information

Critical Conversations

Critical Conversations Critical Conversations TIPS FOR TALKING WHEN STAKES ARE HIGH Agenda 1. Basics of Communication 2. Crucial Conversations defined 3. Before the conversation: setting the stage 4. During the conversation:

More information

Science is a way of learning about the natural world by observing things, asking questions, proposing answers, and testing those answers.

Science is a way of learning about the natural world by observing things, asking questions, proposing answers, and testing those answers. Science 9 Unit 1 Worksheet Chapter 1 The Nature of Science and Scientific Inquiry Online resources: www.science.nelson.com/bcscienceprobe9/centre.html Remember to ask your teacher whether your classroom

More information

SAMPLING AND SAMPLE SIZE

SAMPLING AND SAMPLE SIZE SAMPLING AND SAMPLE SIZE Andrew Zeitlin Georgetown University and IGC Rwanda With slides from Ben Olken and the World Bank s Development Impact Evaluation Initiative 2 Review We want to learn how a program

More information

Quantitative research Methods. Tiny Jaarsma

Quantitative research Methods. Tiny Jaarsma Quantitative research Methods Tiny Jaarsma 2018-02-26 2 The scientific method A few specific reflection on quantitative issues Randomization Intervention Blinding Sampling The scientific method: fundamentals

More information

The Scientific Method

The Scientific Method The Scientific Method Objectives 1. To understand the central role of hypothesis testing in the modern scientific process. 2. To design and conduct an experiment using the scientific method. 3. To learn

More information

How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis?

How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis? How Does Analysis of Competing Hypotheses (ACH) Improve Intelligence Analysis? Richards J. Heuer, Jr. Version 1.2, October 16, 2005 This document is from a collection of works by Richards J. Heuer, Jr.

More information

CISC453 Winter Probabilistic Reasoning Part B: AIMA3e Ch

CISC453 Winter Probabilistic Reasoning Part B: AIMA3e Ch CISC453 Winter 2010 Probabilistic Reasoning Part B: AIMA3e Ch 14.5-14.8 Overview 2 a roundup of approaches from AIMA3e 14.5-14.8 14.5 a survey of approximate methods alternatives to the direct computing

More information

VALIDITY OF QUANTITATIVE RESEARCH

VALIDITY OF QUANTITATIVE RESEARCH Validity 1 VALIDITY OF QUANTITATIVE RESEARCH Recall the basic aim of science is to explain natural phenomena. Such explanations are called theories (Kerlinger, 1986, p. 8). Theories have varying degrees

More information

ISSN: (Online) Volume 2, Issue 1, January 2014 International Journal of Advance Research in Computer Science and Management Studies

ISSN: (Online) Volume 2, Issue 1, January 2014 International Journal of Advance Research in Computer Science and Management Studies ISSN: 2321-7782 (Online) Volume 2, Issue 1, January 2014 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com Review:

More information

TiMeDDx A Multi Phase Anchor-based Diagnostic Decision-support Model

TiMeDDx A Multi Phase Anchor-based Diagnostic Decision-support Model Denekamp and Peleg page 1 of 42 TiMeDDx diagnostic decision-support model TiMeDDx A Multi Phase Anchor-based Diagnostic Decision-support Model Yaron Denekamp 1,2,3 and Mor Peleg 4,5 1 Galil Center for

More information

Psychology Research Process

Psychology Research Process Psychology Research Process Logical Processes Induction Observation/Association/Using Correlation Trying to assess, through observation of a large group/sample, what is associated with what? Examples:

More information

What is Science? What is Science? What is Science? Science is an organized way of using Evidence to learn about the natural world. Chapter 1 pg 3.

What is Science? What is Science? What is Science? Science is an organized way of using Evidence to learn about the natural world. Chapter 1 pg 3. What is Science? Chapter 1 pg 3. What is Science? Science is an organized way of using Evidence to learn about the natural world. What is Science? Goal of Science: To investigate and understand nature,

More information

Advanced Logical Thinking Skills (1) Revisit the concepts of logic

Advanced Logical Thinking Skills (1) Revisit the concepts of logic Mei-Writing Academic Writing II(A) - Lecture 3 November 12, 2013 Advanced Logical Thinking Skills (1) Revisit the concepts of logic by Paul W. L. Lai Build&the&& Thesis&Statement& * Build&a&one*sentence&thesis&statement&

More information

Section 1 1 What Is Science? (pages 3 7)

Section 1 1 What Is Science? (pages 3 7) Chapter 1 The Science of Biology Section 1 1 What Is Science? (pages 3 7) This section explains what the goal of science is and describes a scientific view of the world. What Science Is and Is Not (page

More information

The Science of Biology. Honors Biology I

The Science of Biology. Honors Biology I The Science of Biology Honors Biology I 1-1 What is Science? Science an organized way of gathering and analyzing evidence about the natural world Deals only with the natural world Collect and organized

More information

PLANNING THE RESEARCH PROJECT

PLANNING THE RESEARCH PROJECT Van Der Velde / Guide to Business Research Methods First Proof 6.11.2003 4:53pm page 1 Part I PLANNING THE RESEARCH PROJECT Van Der Velde / Guide to Business Research Methods First Proof 6.11.2003 4:53pm

More information

What is the Scientific Method?

What is the Scientific Method? Scientific Method What is the Scientific Method? It s a way to solve/explain a problem or natural phenomenon, while removing human bias and opinion. It is a critical procedure that allows validity and

More information

UNDERSTANDING THEORETICAL & CONCEPTUAL FRAMEWORKS

UNDERSTANDING THEORETICAL & CONCEPTUAL FRAMEWORKS UNDERSTANDING THEORETICAL & CONCEPTUAL FRAMEWORKS 1 Concepts Generalized idea about a class of objects, attributes, occurrences or process that has been given a name. Examples: Fruit leadership Innovation

More information

Clinical Decision Support Systems. 朱爱玲 Medical Informatics Group 24 Jan,2003

Clinical Decision Support Systems. 朱爱玲 Medical Informatics Group 24 Jan,2003 Clinical Decision Support Systems 朱爱玲 Medical Informatics Group 24 Jan,2003 Outline Introduction Medical decision making What are clinical decision support systems (CDSSs)? Historical perspective Abdominal

More information

Structural assessment of heritage buildings

Structural assessment of heritage buildings Defence Sites 69 Structural assessment of heritage buildings M. Holicky & M. Sykora Klokner Institute, Czech Technical University in Prague, Czech Republic Abstract Reliability assessment of heritage buildings

More information

Tracking Genetic-Based Treatment Options for Inflammatory Bowel Disease

Tracking Genetic-Based Treatment Options for Inflammatory Bowel Disease Tracking Genetic-Based Treatment Options for Inflammatory Bowel Disease Recorded on: June 25, 2013 Melvin Heyman, M.D. Chief of Pediatric Gastroenterology UCSF Medical Center Please remember the opinions

More information

EEL-5840 Elements of {Artificial} Machine Intelligence

EEL-5840 Elements of {Artificial} Machine Intelligence Menu Introduction Syllabus Grading: Last 2 Yrs Class Average 3.55; {3.7 Fall 2012 w/24 students & 3.45 Fall 2013} General Comments Copyright Dr. A. Antonio Arroyo Page 2 vs. Artificial Intelligence? DEF:

More information

FORMULATION OF HYPOTHESIS N S VISWANATH

FORMULATION OF HYPOTHESIS N S VISWANATH FORMULATION OF HYPOTHESIS N S VISWANATH 2. Sun rises in the East. Moon rises in the West. Magnetic Needle faces North. Five basic elements are required for living: a. Air b. Water c. Fire d. Sun e. Earth

More information

Experimental Methods. Anna Fahlgren, Phd Associate professor in Experimental Orthopaedics

Experimental Methods. Anna Fahlgren, Phd Associate professor in Experimental Orthopaedics Experimental Methods Anna Fahlgren, Phd Associate professor in Experimental Orthopaedics What is experimental Methods? Experimental Methdology Experimental Methdology The Formal Hypothesis The precise

More information

Modelling crime linkage with Bayesian Networks

Modelling crime linkage with Bayesian Networks Modelling crime linkage with Bayesian Networks, Marjan Sjerps, David Lagnado, Norman Fenton, Koen Vriend, Menno Dolman, Ronald Meester University of Amsterdam August 20, 2014 Problem Outline Hypotheses

More information

Nature of Science and Scientific Method Guided Notes

Nature of Science and Scientific Method Guided Notes Anything present in the environment, around the world, living, non-living everything is included in science. Science can be knowledge, science can be a fun, it can be a fact, a discovery, a law, a solved

More information

Checking the counterarguments confirms that publication bias contaminated studies relating social class and unethical behavior

Checking the counterarguments confirms that publication bias contaminated studies relating social class and unethical behavior 1 Checking the counterarguments confirms that publication bias contaminated studies relating social class and unethical behavior Gregory Francis Department of Psychological Sciences Purdue University gfrancis@purdue.edu

More information

Scientific Thinking Handbook

Scientific Thinking Handbook Making Observations An observation is an act of noting and recording an event, characteristic, behavior, or anything else detected with an instrument or with the senses. Observations allow you to make

More information

Michael Norman International &

Michael Norman International & FOUNDATION SERIES Episode #3 of 4 THE PANIC PARADOX The White Bear Effect Ironically, the very act of trying to suppress a thought makes it much more likely that we ll have it. Trying to suppress a thought

More information

Deductive Inferences in Guidelines: Lessons from Brain Death

Deductive Inferences in Guidelines: Lessons from Brain Death Deductive Inferences in Guidelines: Lessons from Brain Death Gary S Gronseth, MD, FAAN Professor of Neurology, University of Kansas AAN Evidence-Based Medicine Methodologist Thomas Getchius Senior Manager,

More information

Hybrid models of rational legal proof. Bart Verheij Institute of Artificial Intelligence and Cognitive Engineering

Hybrid models of rational legal proof. Bart Verheij Institute of Artificial Intelligence and Cognitive Engineering Hybrid models of rational legal proof Bart Verheij Institute of Artificial Intelligence and Cognitive Engineering www.ai.rug.nl/~verheij How can forensic evidence be handled effectively and safely? Analyses

More information

On the Representation of Nonmonotonic Relations in the Theory of Evidence

On the Representation of Nonmonotonic Relations in the Theory of Evidence On the Representation of Nonmonotonic Relations in the Theory of Evidence Ronald R. Yager Machine Intelligence Institute Iona College New Rochelle, NY 10801 Abstract A Dempster-Shafer belief structure

More information

Wason's Cards: What is Wrong?

Wason's Cards: What is Wrong? Wason's Cards: What is Wrong? Pei Wang Computer and Information Sciences, Temple University This paper proposes a new interpretation

More information

Thinking Like a Researcher

Thinking Like a Researcher 3-1 Thinking Like a Researcher 3-3 Learning Objectives Understand... The terminology used by professional researchers employing scientific thinking. What you need to formulate a solid research hypothesis.

More information

Royal College of Physicians, Committee on Ethical Issues in Medicine

Royal College of Physicians, Committee on Ethical Issues in Medicine The response reproduced below was submitted further to a consultation held by the Nuffield Council on Bioethics on its Report: Pharmacogenetics- ethical issues, during November 2002 February 2003. The

More information

Probabilistic Reasoning with Bayesian Networks and BayesiaLab

Probabilistic Reasoning with Bayesian Networks and BayesiaLab The presentation will start at: 13:00:00 The current time is: 13:00:42 Central Standard Time, UTC-6 Probabilistic Reasoning with Bayesian Networks and BayesiaLab Introduction Your Hosts Today Stefan Conrady

More information

Conducting Research in the Social Sciences. Rick Balkin, Ph.D., LPC-S, NCC

Conducting Research in the Social Sciences. Rick Balkin, Ph.D., LPC-S, NCC Conducting Research in the Social Sciences Rick Balkin, Ph.D., LPC-S, NCC 1 Why we do research Improvement Description Explanation Prediction R. S. Balkin, 2008 2 Theory Explanation of an observed phenomena

More information

Lecture 9 Internal Validity

Lecture 9 Internal Validity Lecture 9 Internal Validity Objectives Internal Validity Threats to Internal Validity Causality Bayesian Networks Internal validity The extent to which the hypothesized relationship between 2 or more variables

More information

Telephone (603) Facsimile (603)

Telephone (603) Facsimile (603) AUSTRALIA CANADA USA UNITED KINGDOM Safetycare Australia Pty. Ltd. Telephone (03) 9569 5599 Facsimile (03) 9569 6899 Safetycare Inc. Telephone (905) 631 6070 Facsimile (905) 631 8183 Safetycare Inc. Telephone

More information

I I I I I I I I I I I I I I I I I I I

I I I I I I I I I I I I I I I I I I I mplementing Evidential Reasoning in Expert Systems John Yen USC j nformation Sciences nstitute 4676 Admiralty Way Marina del Rey, OA 90292 Abst act The Dempster-Shafer theory has been extended recently

More information