2018 Predictive Analytics Symposium Session 18: Can You Hear Me Now: Getting Clarity with Fuzzy Logic

Size: px
Start display at page:

Download "2018 Predictive Analytics Symposium Session 18: Can You Hear Me Now: Getting Clarity with Fuzzy Logic"

Transcription

1 2018 Predictive Analytics Symposium Session 18: Can You Hear Me Now: Getting Clarity with Fuzzy Logic SOA Antitrust Compliance Guidelines SOA Presentation Disclaimer

2 2018 SOA Predictive Analytics Symposium Can You Hear Me Now: Getting Clarity with Fuzzy Logic September 20, 2018

3 The Paradox of the Heap 2

4 Sorites Paradox Sorites Paradox, or Paradox of the Heap: - Premise 1: A billion grains of sand constitutes a heap. - Premise 2: A heap of sand minus one grain is still a heap. - Conclusion: A single grain of sand must still be a heap. Fuzzy logic provides a way out of the paradox, by establishing a range of heapiness from definitely not a heap to definitely a heap. Note: Eubulides is also credited as the first to declare that today is opposite day!

5 4

6 5

7 6

8 Our world is full of fuzzy questions. Is Minneapolis a big city? Am I bald? Is this presentation interesting? Is air travel convenient? Is the weather nice? Is it late in the day? Aren t we just playing games with precision in language? Or does this matter?

9 This sounds a lot like probability theory. From Kosko: The chief, but superficial similarity, is that both systems describe uncertainty with numbers in the unit interval [0,1]. The key distinction concerns how the system deal simultaneously with a thing A and its opposite A. Fuzziness describes event ambiguity. It measures the degree to which an event occurs, not whether it occurs. Randomness describes the uncertainty of event occurrence. An event occurs or not. Kosko (1989). Fuzziness vs. Probability. International Journal of General Systems.

10 What is Fuzzy Logic? Reality! It is not crisp logic. Crisp Logic is a new name for Boolean Logic (George Boole, 1847) Binary logic Set membership is 0 (false, out) or 1 (true, in) Fuzzy Logic allows interim values (Lotfi Zadeh, 1965) Set membership can be between 0 (completely out) and 1 (all in)

11 Fuzzy Logic: Process (The Fuzzy Controlled Machine) 1. Fuzzification convert your input and output to linguistic values (crisp -> fuzzy), utilizing ranges and membership functions. 2. Apply rules (from your experience or knowledge base) using fuzzy logic. 3. Defuzzification convert your results to the form you want (fuzzy -> crisp). We do this every day! Consider the decision on whether to pull out into traffic

12 Fuzzy Logic: Process Source: 11

13 Fuzzy Logic in R Example Source: 12

14 library(sets) sets_options("universe", seq(1, 100, 0.5)) variables <- set( temperature = fuzzy_partition(varnames = c(cold = 30, good = 70, hot = 90), sd = 5.0), humidity = fuzzy_partition(varnames = c(dry = 30, good = 60, wet = 80), sd = 5.0), precipitation = fuzzy_partition(varnames = c(no.rain = 30, little.rain = 60, rain = 90), sd = 7.5), weather = fuzzy_partition(varnames = c(bad = 40, ok = 65, perfect = 80), FUN = fuzzy_cone, radius = 10)) 13

15 # Fuzzy rules rules <- set( fuzzy_rule(temperature %is% good && humidity %is% dry && precipitation %is% no.rain, weather %is% perfect), fuzzy_rule(temperature %is% hot && humidity %is% wet && precipitation %is% rain, weather %is% bad), fuzzy_rule(temperature %is% cold, weather %is% bad), fuzzy_rule(temperature %is% good humidity %is% good precipitation %is% little.rain, weather %is% ok), fuzzy_rule(temperature %is% hot && precipitation %is% little.rain, weather %is% ok), fuzzy_rule(temperature %is% hot && humidity %is% dry && precipitation %is% little.rain, weather %is% ok) ) 14

16 model <- fuzzy_system(variables, rules) print(model) plot(model) 15

17 example.1 <- fuzzy_inference(model, list(temperature = 75, humidity = 0, precipitation = 70)) gset_defuzzify(example.1,"centroid") plot(example.1) > gset_defuzzify(example.1,"centroid") [1] 65 16

18 example.2 <- fuzzy_inference(model, list(temperature = 30, humidity = 0, precipitation = 70)) gset_defuzzify(example.2,"centroid") plot(example.2) > gset_defuzzify(example.2,"centroid") [1]

19 Case Study

20 Determining Practice Readiness 19

21 Indicators of Practice Readiness Care Quality Panel Density Provider Compensation Practice Structure 20

22 What Fuzzy Logic Might Look Like IF High Quality Care % AND % High Panel Density % AND % Strong Financial Incentives in Compensation % AND % Practice Structure with Strong Accountability THEN Highly Ready Practice 21

23 Panel Density 22

24 Panel Density 23

25 FRBS Package Publicly available package in R frbs.learn has 14 different algorithms to derive rules for fuzzy logic systems predict applies fuzzy logic system to separate data set and reports logical results Sample Code object.frbcs.w <- frbs.learn(data.train = train_df, range.data = range.data.input, method.typ = FRBCS.W, control = list(num.labels = 3, type.mf = TRAPEZOID )) pred <- predict(object.frbcs.w, apply_subset) 24

26 Building Fuzzy Rule Based System Quality and financial outcomes results for a local network providing care to Medicare Advantage members. Used 2014 data to train fuzzy logic system Derive rule set to determine Risk Adjusted Cost category (low/medium/high) based on Panel Density and Quality Measure Apply derived rule set to 2015 data and compare predicted Risk Adjusted Cost category to actual. Significant limitation is that the data set is very small 25

27 Available Data Panel Density PCP/Specialist Ratio Rate of ED Utilization Rate of Advanced Imaging Utilization Risk Adjusted Costs 26

28 Analysis Results Derived Ruleset PCP/Spec Panel Den. ED Rate Adv Img Rt Risk Adj Cost 1 Low Low High Low High 2 High Low Low High Low 3 Low High Low High Medium 4 Medium Medium Low High Low 5 Low Low Low Medium Medium 6 Low Low Medium High High 7 Low Low Medium Low Medium 8 Medium Low Medium High Low 9 Low Medium Low Low Medium 10 Low Low Low Low Medium 11 Low Low Low Medium Low 12 Medium Medium Medium Medium Low 27

29 Analysis Results Confusion Matrix Actual Predicted Low Medium High Low Medium High

30 Bonus Material

31 Fuzzy Matching 30

32 Will the real Bob Clemente please stand up? Name Matches Bill Virdon B,l,l,n (4) Bob Skinner B,o,b,n,n,e (6) Roberto Clemente O,b,e,t,o,c,l,e,m,e,n,t,e (13) Roman Meijas R,o,m,n,M,e (6) Joe Christopher O,e,C,t,e (5) Harry Bright B,t (2) Dick Schofield C,c,o,e (4) Harry Simpson M,o,n (3) Rocky Nelson O,c,N,e,o,n (6) Dick Stuart c,t (2) 31

33 R package stringdist can produce a variety of fuzzy text string metrics. > stringdist(c("bob Clemente"),c("Bill Virdon","Bob Skinner","Roberto Clemente", "Ed Clemente")) [1] Default method optimal string alignment > stringdist(c("bob Clemente"),c("Bill Virdon","Bob Skinner","Roberto Clemente", "Ed Clemente"), method='qgram') [1] Q-Gram still confused by Ed > stringdist(c("bob Clemente"),c("Bill Virdon","Bob Skinner","Roberto Clemente", "Ed Clemente"), method='cosine') [1] Cosine distance between Q-gram profiles finally gets it More info: 32

34 33

35 And not just names, of course! - Addresses (123 S. Main St. vs 123 South Main Street) - City / County Name (St. vs Saint) - Spellcheck / Autocomplete

This time: Fuzzy Logic and Fuzzy Inference

This time: Fuzzy Logic and Fuzzy Inference This time: Fuzzy Logic and Fuzzy Inference Why use fuzzy logic? Tipping example Fuzzy set theory Fuzzy inference CS 460, Sessions 22-23 1 What is fuzzy logic? A super set of Boolean logic Builds upon fuzzy

More information

This time: Fuzzy Logic and Fuzzy Inference

This time: Fuzzy Logic and Fuzzy Inference This time: Fuzzy Logic and Fuzzy Inference Why use fuzzy logic? Tipping example Fuzzy set theory Fuzzy inference CS 460, Sessions 22-23 1 What is fuzzy logic? A super set of Boolean logic Builds upon fuzzy

More information

Fuzzy Systems. Introduction

Fuzzy Systems. Introduction Fuzzy Systems Introduction Prof. Dr. Rudolf Kruse Christoph Doell {kruse,doell}@iws.cs.uni-magdeburg.de Otto-von-Guericke University of Magdeburg Faculty of Computer Science Department of Knowledge Processing

More information

Fuzzy Systems. Introduction

Fuzzy Systems. Introduction Fuzzy Systems Introduction Prof. Dr. Rudolf Kruse Christian Moewes {kruse,cmoewes}@iws.cs.uni-magdeburg.de Otto-von-Guericke University of Magdeburg Faculty of Computer Science Department of Knowledge

More information

ME 534. Mechanical Engineering University of Gaziantep. Dr. A. Tolga Bozdana Assistant Professor

ME 534. Mechanical Engineering University of Gaziantep. Dr. A. Tolga Bozdana Assistant Professor ME 534 Intelligent Manufacturing Systems Chp 4 Fuzzy Logic Mechanical Engineering University of Gaziantep Dr. A. Tolga Bozdana Assistant Professor Motivation and Definition Fuzzy Logic was initiated by

More information

Handling Uncertainty using FUZZY LOGIC

Handling Uncertainty using FUZZY LOGIC Handling Uncertainty using FUZZY LOGIC Fuzzy Set Theory Conventional (Boolean) Set Theory: 38 C 40.1 C 41.4 C 38.7 C 39.3 C 37.2 C 42 C Strong Fever 38 C Fuzzy Set Theory: 38.7 C 40.1 C 41.4 C More-or-Less

More information

Outline. Introduction, or what is fuzzy thinking? Fuzzy sets Linguistic variables and hedges Operations of fuzzy sets Fuzzy rules Summary.

Outline. Introduction, or what is fuzzy thinking? Fuzzy sets Linguistic variables and hedges Operations of fuzzy sets Fuzzy rules Summary. Fuzzy Logic Part ndrew Kusiak Intelligent Systems Laboratory 239 Seamans Center The University of Iowa Iowa City, Iowa 52242-527 andrew-kusiak@uiowa.edu http://www.icaen.uiowa.edu/~ankusiak Tel: 39-335

More information

3. DIFFERENT MODEL TYPES

3. DIFFERENT MODEL TYPES 3-1 3. DIFFERENT MODEL TYPES It is important for us to fully understand a physical problem before we can select a solution strategy for it. Models are convenient tools that enhance our understanding and

More information

A Hybrid Approach For Air Conditioning Control System With Fuzzy Logic Controller

A Hybrid Approach For Air Conditioning Control System With Fuzzy Logic Controller International Journal of Engineering and Applied Sciences (IJEAS) A Hybrid Approach For Air Conditioning Control System With Fuzzy Logic Controller K.A. Akpado, P. N. Nwankwo, D.A. Onwuzulike, M.N. Orji

More information

Symbolic Logic Outline

Symbolic Logic Outline Symbolic Logic Outline 1. Symbolic Logic Outline 2. What is Logic? 3. How Do We Use Logic? 4. Logical Inferences #1 5. Logical Inferences #2 6. Symbolic Logic #1 7. Symbolic Logic #2 8. What If a Premise

More information

Intelligent Systems and Control Prof. Laxmidhar Behera Indian Institute of Technology, Kanpur

Intelligent Systems and Control Prof. Laxmidhar Behera Indian Institute of Technology, Kanpur Intelligent Systems and Control Prof. Laxmidhar Behera Indian Institute of Technology, Kanpur Module - 2 Lecture - 4 Introduction to Fuzzy Logic Control In this lecture today, we will be discussing fuzzy

More information

OUTLINE. Introduction History and basic concepts. Fuzzy sets and fuzzy logic. Fuzzy clustering. Fuzzy inference. Fuzzy systems. Application examples

OUTLINE. Introduction History and basic concepts. Fuzzy sets and fuzzy logic. Fuzzy clustering. Fuzzy inference. Fuzzy systems. Application examples OUTLINE Introduction History and basic concepts Fuzzy sets and fuzzy logic Fuzzy clustering Fuzzy inference Fuzzy systems Application examples "So far as the laws of mathematics refer to reality, they

More information

Fuzzy Sets. Fuzzy Sets and Fuzzy Logic. Fuzzy Properties. Fuzzy Measures: Example. Properties are represented by fuzzy sets. Properties might be like:

Fuzzy Sets. Fuzzy Sets and Fuzzy Logic. Fuzzy Properties. Fuzzy Measures: Example. Properties are represented by fuzzy sets. Properties might be like: Fuzzy Sets and Fuzzy Logic Another approach to reasoning about uncertainty, with a different mathematical basis, is fuzzy logic. Brief history: Standard classical (Boolean) logic (Aristotle, c 50BC; Boole,

More information

Neural Networks & Fuzzy Logic. Introduction

Neural Networks & Fuzzy Logic. Introduction & Fuzzy Logic Introduction 0 0 0 1 0 0 0 adjustable weights 1 20 37 10 1 1 Definition & Area of Application Neural Networks (NN) are: mathematical models that resemble nonlinear regression models, but

More information

MODELLING THERMAL COMFORT FOR TROPICS USING FUZZY LOGIC

MODELLING THERMAL COMFORT FOR TROPICS USING FUZZY LOGIC Eighth International IBPSA Conference Eindhoven, Netherlands August 11-14, 2003 MODELLING THERMAL COMFORT FOR TROPICS USING FUZZY LOGIC Henry Feriadi, Wong Nyuk Hien Department of Building, School of Design

More information

(p == train arrives late) (q == there are taxis) (r == If p and not q, then r. Not r. p. Therefore, q. Propositional Logic

(p == train arrives late) (q == there are taxis) (r == If p and not q, then r. Not r. p. Therefore, q. Propositional Logic Propositional Logic The aim of logic in computer science is to develop languages to model the situations we encounter as computer science professionals Want to do that in such a way that we can reason

More information

2010/07/12. Content. Fuzzy? Oxford Dictionary: blurred, indistinct, confused, imprecisely defined

2010/07/12. Content. Fuzzy? Oxford Dictionary: blurred, indistinct, confused, imprecisely defined Content Introduction Graduate School of Science and Technology Basic Concepts Fuzzy Control Eamples H. Bevrani Fuzzy GC Spring Semester, 2 2 The class of tall men, or the class of beautiful women, do not

More information

Fuzzy Logic and Computing with Words. Ning Xiong. School of Innovation, Design, and Engineering Mälardalen University. Motivations

Fuzzy Logic and Computing with Words. Ning Xiong. School of Innovation, Design, and Engineering Mälardalen University. Motivations /3/22 Fuzzy Logic and Computing with Words Ning Xiong School of Innovation, Design, and Engineering Mälardalen University Motivations Human centric intelligent systems is a hot trend in current research,

More information

The Problem. Sustainability is an abstract concept that cannot be directly measured.

The Problem. Sustainability is an abstract concept that cannot be directly measured. Measurement, Interpretation, and Assessment Applied Ecosystem Services, Inc. (Copyright c 2005 Applied Ecosystem Services, Inc.) The Problem is an abstract concept that cannot be directly measured. There

More information

Phil Introductory Formal Logic

Phil Introductory Formal Logic Phil 134 - Introductory Formal Logic Lecture 4: Formal Semantics In this lecture we give precise meaning to formulae math stuff: sets, pairs, products, relations, functions PL connectives as truth-functions

More information

Uncertain System Control: An Engineering Approach

Uncertain System Control: An Engineering Approach Uncertain System Control: An Engineering Approach Stanisław H. Żak School of Electrical and Computer Engineering ECE 680 Fall 207 Fuzzy Logic Control---Another Tool in Our Control Toolbox to Cope with

More information

What Is Fuzzy Logic?

What Is Fuzzy Logic? Fuzzy logic What Is Fuzzy Logic? Form of multi-valued logic (algebra) derived from fuzzy set theory. Designed to deal with reasoning that is approximate rather than accurate. Consequence of the 1965 proposal

More information

APPLICATION OF AIR HEATER AND COOLER USING FUZZY LOGIC CONTROL SYSTEM

APPLICATION OF AIR HEATER AND COOLER USING FUZZY LOGIC CONTROL SYSTEM APPLICATION OF AIR HEATER AND COOLER USING FUZZY LOGIC CONTROL SYSTEM Dr.S.Chandrasekaran, Associate Professor and Head, Khadir Mohideen College, Adirampattinam E.Tamil Mani, Research Scholar, Khadir Mohideen

More information

Applying Fuzzy Logic to Risk Assessment and Decision-Making Accept

Applying Fuzzy Logic to Risk Assessment and Decision-Making Accept Applying Fuzzy Logic to Risk Assessment and Decision-Making This tool is designed for illustration purpose in the actuarial research - "Applying Fuzzy Logic t and Decision" sponsored by the Joint Risk

More information

Reinforcement Learning Wrap-up

Reinforcement Learning Wrap-up Reinforcement Learning Wrap-up Slides courtesy of Dan Klein and Pieter Abbeel University of California, Berkeley [These slides were created by Dan Klein and Pieter Abbeel for CS188 Intro to AI at UC Berkeley.

More information

Rule-Based Fuzzy Model

Rule-Based Fuzzy Model In rule-based fuzzy systems, the relationships between variables are represented by means of fuzzy if then rules of the following general form: Ifantecedent proposition then consequent proposition The

More information

I am going to build a snowman!

I am going to build a snowman! I am going to build a snowman! READING LEVEL NUMBER LANGUAGE Beginner A11054REN English Goals Read an easy text Answer questions about a story 2 I like to stay inside our warm house when it is snowing.

More information

CS 188: Artificial Intelligence Fall 2011

CS 188: Artificial Intelligence Fall 2011 CS 188: Artificial Intelligence Fall 2011 Lecture 12: Probability 10/4/2011 Dan Klein UC Berkeley 1 Today Probability Random Variables Joint and Marginal Distributions Conditional Distribution Product

More information

Fuzzy Expert Systems Lecture 3 (Fuzzy Logic)

Fuzzy Expert Systems Lecture 3 (Fuzzy Logic) http://expertsys.4t.com Fuzzy Expert Systems Lecture 3 (Fuzzy Logic) As far as the laws of mathematics refer to reality, they are not certain, and so far as they are certain, they do not refer to reality.

More information

CS 188: Artificial Intelligence Spring Announcements

CS 188: Artificial Intelligence Spring Announcements CS 188: Artificial Intelligence Spring 2011 Lecture 12: Probability 3/2/2011 Pieter Abbeel UC Berkeley Many slides adapted from Dan Klein. 1 Announcements P3 due on Monday (3/7) at 4:59pm W3 going out

More information

Revision: Fuzzy logic

Revision: Fuzzy logic Fuzzy Logic 1 Revision: Fuzzy logic Fuzzy logic can be conceptualized as a generalization of classical logic. Modern fuzzy logic aims to model those problems in which imprecise data must be used or in

More information

Fuzzy Expert Systems Lecture 3 (Fuzzy Logic)

Fuzzy Expert Systems Lecture 3 (Fuzzy Logic) Fuzzy Expert Systems Lecture 3 (Fuzzy Logic) As far as the laws of mathematics refer to reality, they are not certain, and so far as they are certain, they do not refer to reality. Albert Einstein With

More information

TEMPERATUTE PREDICTION USING HEURISTIC DATA MINING ON TWO-FACTOR FUZZY TIME-SERIES

TEMPERATUTE PREDICTION USING HEURISTIC DATA MINING ON TWO-FACTOR FUZZY TIME-SERIES TEMPERATUTE PREDICTION USING HEURISTIC DATA MINING ON TWO-FACTOR FUZZY TIME-SERIES Adesh Kumar Pandey 1, Dr. V. K Srivastava 2, A.K Sinha 3 1,2,3 Krishna Institute of Engineering & Technology, Ghaziabad,

More information

The Naïve Bayes Classifier. Machine Learning Fall 2017

The Naïve Bayes Classifier. Machine Learning Fall 2017 The Naïve Bayes Classifier Machine Learning Fall 2017 1 Today s lecture The naïve Bayes Classifier Learning the naïve Bayes Classifier Practical concerns 2 Today s lecture The naïve Bayes Classifier Learning

More information

Financial Informatics XI: Fuzzy Rule-based Systems

Financial Informatics XI: Fuzzy Rule-based Systems Financial Informatics XI: Fuzzy Rule-based Systems Khurshid Ahmad, Professor of Computer Science, Department of Computer Science Trinity College, Dublin-2, IRELAND November 19 th, 28. https://www.cs.tcd.ie/khurshid.ahmad/teaching.html

More information

Applied Logic. Lecture 3 part 1 - Fuzzy logic. Marcin Szczuka. Institute of Informatics, The University of Warsaw

Applied Logic. Lecture 3 part 1 - Fuzzy logic. Marcin Szczuka. Institute of Informatics, The University of Warsaw Applied Logic Lecture 3 part 1 - Fuzzy logic Marcin Szczuka Institute of Informatics, The University of Warsaw Monographic lecture, Spring semester 2017/2018 Marcin Szczuka (MIMUW) Applied Logic 2018 1

More information

CS 354R: Computer Game Technology

CS 354R: Computer Game Technology CS 354R: Computer Game Technology AI Fuzzy Logic and Neural Nets Fall 2017 Fuzzy Logic Philosophical approach Decisions based on degree of truth Is not a method for reasoning under uncertainty that s probability

More information

EEE 8005 Student Directed Learning (SDL) Industrial Automation Fuzzy Logic

EEE 8005 Student Directed Learning (SDL) Industrial Automation Fuzzy Logic EEE 8005 Student Directed Learning (SDL) Industrial utomation Fuzzy Logic Desire location z 0 Rot ( y, φ ) Nail cos( φ) 0 = sin( φ) 0 0 0 0 sin( φ) 0 cos( φ) 0 0 0 0 z 0 y n (0,a,0) y 0 y 0 z n End effector

More information

Example. How to Guess What to Prove

Example. How to Guess What to Prove How to Guess What to Prove Example Sometimes formulating P (n) is straightforward; sometimes it s not. This is what to do: Compute the result in some specific cases Conjecture a generalization based on

More information

Fuzzy Control Systems Process of Fuzzy Control

Fuzzy Control Systems Process of Fuzzy Control Fuzzy Control Systems The most widespread use of fuzzy logic today is in fuzzy control applications. Across section of applications that have successfully used fuzzy control includes: Environmental Control

More information

Application of Fuzzy Logic and Uncertainties Measurement in Environmental Information Systems

Application of Fuzzy Logic and Uncertainties Measurement in Environmental Information Systems Fakultät Forst-, Geo- und Hydrowissenschaften, Fachrichtung Wasserwesen, Institut für Abfallwirtschaft und Altlasten, Professur Systemanalyse Application of Fuzzy Logic and Uncertainties Measurement in

More information

Our Status in CSE 5522

Our Status in CSE 5522 Our Status in CSE 5522 We re done with Part I Search and Planning! Part II: Probabilistic Reasoning Diagnosis Speech recognition Tracking objects Robot mapping Genetics Error correcting codes lots more!

More information

Challenges of Communicating Weather Information to the Public. Sam Lashley Senior Meteorologist National Weather Service Northern Indiana Office

Challenges of Communicating Weather Information to the Public. Sam Lashley Senior Meteorologist National Weather Service Northern Indiana Office Challenges of Communicating Weather Information to the Public Sam Lashley Senior Meteorologist National Weather Service Northern Indiana Office Dilbert the Genius Do you believe him? Challenges of Communicating

More information

REASONING UNDER UNCERTAINTY: CERTAINTY THEORY

REASONING UNDER UNCERTAINTY: CERTAINTY THEORY REASONING UNDER UNCERTAINTY: CERTAINTY THEORY Table of Content Introduction Certainty Theory Definition Certainty Theory: Values Interpretation Certainty Theory: Representation Certainty Factor Propagation

More information

Probabilistic clustering

Probabilistic clustering Aprendizagem Automática Probabilistic clustering Ludwig Krippahl Probabilistic clustering Summary Fuzzy sets and clustering Fuzzy c-means Probabilistic Clustering: mixture models Expectation-Maximization,

More information

Logic as a Tool Chapter 1: Understanding Propositional Logic 1.1 Propositions and logical connectives. Truth tables and tautologies

Logic as a Tool Chapter 1: Understanding Propositional Logic 1.1 Propositions and logical connectives. Truth tables and tautologies Logic as a Tool Chapter 1: Understanding Propositional Logic 1.1 Propositions and logical connectives. Truth tables and tautologies Valentin Stockholm University September 2016 Propositions Proposition:

More information

Chapter 1: The Logic of Compound Statements. January 7, 2008

Chapter 1: The Logic of Compound Statements. January 7, 2008 Chapter 1: The Logic of Compound Statements January 7, 2008 Outline 1 1.1 Logical Form and Logical Equivalence 2 1.2 Conditional Statements 3 1.3 Valid and Invalid Arguments Central notion of deductive

More information

Our Status. We re done with Part I Search and Planning!

Our Status. We re done with Part I Search and Planning! Probability [These slides were created by Dan Klein and Pieter Abbeel for CS188 Intro to AI at UC Berkeley. All CS188 materials are available at http://ai.berkeley.edu.] Our Status We re done with Part

More information

CS 188: Artificial Intelligence Fall 2009

CS 188: Artificial Intelligence Fall 2009 CS 188: Artificial Intelligence Fall 2009 Lecture 13: Probability 10/8/2009 Dan Klein UC Berkeley 1 Announcements Upcoming P3 Due 10/12 W2 Due 10/15 Midterm in evening of 10/22 Review sessions: Probability

More information

ORTHODOX AND NON-ORTHODOX SETS - SOME PHILOSOPHICAL REMARKS

ORTHODOX AND NON-ORTHODOX SETS - SOME PHILOSOPHICAL REMARKS FOUNDATIONS OF COMPUTING AND DECISION SCIENCES Vol. 30 (2005) No. 2 ORTHODOX AND NON-ORTHODOX SETS - SOME PHILOSOPHICAL REMARKS Zdzisław PAWLAK* Abstract. We outline the relationship between classical

More information

CS188 Outline. We re done with Part I: Search and Planning! Part II: Probabilistic Reasoning. Part III: Machine Learning

CS188 Outline. We re done with Part I: Search and Planning! Part II: Probabilistic Reasoning. Part III: Machine Learning CS188 Outline We re done with Part I: Search and Planning! Part II: Probabilistic Reasoning Diagnosis Speech recognition Tracking objects Robot mapping Genetics Error correcting codes lots more! Part III:

More information

Logic. Propositional Logic: Syntax

Logic. Propositional Logic: Syntax Logic Propositional Logic: Syntax Logic is a tool for formalizing reasoning. There are lots of different logics: probabilistic logic: for reasoning about probability temporal logic: for reasoning about

More information

Decision Support. Dr. Johan Hagelbäck.

Decision Support. Dr. Johan Hagelbäck. Decision Support Dr. Johan Hagelbäck johan.hagelback@lnu.se http://aiguy.org Decision Support One of the earliest AI problems was decision support The first solution to this problem was expert systems

More information

Logic. Propositional Logic: Syntax. Wffs

Logic. Propositional Logic: Syntax. Wffs Logic Propositional Logic: Syntax Logic is a tool for formalizing reasoning. There are lots of different logics: probabilistic logic: for reasoning about probability temporal logic: for reasoning about

More information

- 1.2 Implication P. Danziger. Implication

- 1.2 Implication P. Danziger. Implication Implication There is another fundamental type of connectives between statements, that of implication or more properly conditional statements. In English these are statements of the form If p then q or

More information

Fuzzy Logic. An introduction. Universitat Politécnica de Catalunya. Departament de Teoria del Senyal i Comunicacions.

Fuzzy Logic. An introduction. Universitat Politécnica de Catalunya. Departament de Teoria del Senyal i Comunicacions. Universitat Politécnica de Catalunya Departament de Teoria del Senyal i Comunicacions Fuzzy Logic An introduction Prepared by Temko Andrey 2 Outline History and sphere of applications Basics. Fuzzy sets

More information

IR Models: The Probabilistic Model. Lecture 8

IR Models: The Probabilistic Model. Lecture 8 IR Models: The Probabilistic Model Lecture 8 ' * ) ( % $ $ +#! "#! '& & Probability of Relevance? ' ', IR is an uncertain process Information need to query Documents to index terms Query terms and index

More information

Membership grade mining of mutually inverse fuzzy implication propositions

Membership grade mining of mutually inverse fuzzy implication propositions Granul. Comput. (2017) 2:55 62 DOI 10.1007/s41066-016-0026-1 ORIGINAL PAPER Membership grade mining of mutually inverse fuzzy implication propositions Xunwei Zhou 1 Received: 24 March 2016 / Accepted:

More information

Introduction to Weather: Moisture in the Air Vapor Pressure and Dew Point

Introduction to Weather: Moisture in the Air Vapor Pressure and Dew Point IDS 102 Winter 2008 Introduction to Weather: Moisture in the Air Vapor Pressure and Dew Point During fall quarter we covered the topic of pressure and it has been a while since the, so let s review a couple

More information

ARTIFICIAL INTELLIGENCE

ARTIFICIAL INTELLIGENCE ARTIFICIAL INTELLIGENCE LECTURE # 03 Artificial Intelligence 2012 Lecture 03 Delivered By Zahid Iqbal 1 Review of Last Lecture Artificial Intelligence 2012 Lecture 03 Delivered By Zahid Iqbal 2 Today s

More information

Random Variables. A random variable is some aspect of the world about which we (may) have uncertainty

Random Variables. A random variable is some aspect of the world about which we (may) have uncertainty Review Probability Random Variables Joint and Marginal Distributions Conditional Distribution Product Rule, Chain Rule, Bayes Rule Inference Independence 1 Random Variables A random variable is some aspect

More information

Decision Trees. Data Science: Jordan Boyd-Graber University of Maryland MARCH 11, Data Science: Jordan Boyd-Graber UMD Decision Trees 1 / 1

Decision Trees. Data Science: Jordan Boyd-Graber University of Maryland MARCH 11, Data Science: Jordan Boyd-Graber UMD Decision Trees 1 / 1 Decision Trees Data Science: Jordan Boyd-Graber University of Maryland MARCH 11, 2018 Data Science: Jordan Boyd-Graber UMD Decision Trees 1 / 1 Roadmap Classification: machines labeling data for us Last

More information

Probability Hal Daumé III. Computer Science University of Maryland CS 421: Introduction to Artificial Intelligence 27 Mar 2012

Probability Hal Daumé III. Computer Science University of Maryland CS 421: Introduction to Artificial Intelligence 27 Mar 2012 1 Hal Daumé III (me@hal3.name) Probability 101++ Hal Daumé III Computer Science University of Maryland me@hal3.name CS 421: Introduction to Artificial Intelligence 27 Mar 2012 Many slides courtesy of Dan

More information

Neural Networks & Fuzzy Logic

Neural Networks & Fuzzy Logic Journal of Computer Applications ISSN: 0974 1925, Volume-5, Issue EICA2012-4, February 10, 2012 Neural Networks & Fuzzy Logic Elakkiya Prabha T Pre-Final B.Tech-IT, M.Kumarasamy College of Engineering,

More information

ISO 6395 INTERNATIONAL STANDARD. Earth-moving machinery Determination of sound power level Dynamic test conditions

ISO 6395 INTERNATIONAL STANDARD. Earth-moving machinery Determination of sound power level Dynamic test conditions INTERNATIONAL STANDARD ISO 6395 Second edition 2008-03-15 Earth-moving machinery Determination of sound power level Dynamic test conditions Engins de terrassement Détermination du niveau de puissance acoustique

More information

IST 4 Information and Logic

IST 4 Information and Logic IST 4 Information and Logic mon tue wed thr fri sun T = today 3 M oh x= hw#x out oh M 7 oh oh 2 M2 oh oh x= hw#x due 24 oh oh 2 oh = office hours oh oh T M2 8 3 oh midterms oh oh Mx= MQx out 5 oh 3 4 oh

More information

Lecture 1: Propositional Logic (I)

Lecture 1: Propositional Logic (I) Lecture 1: Propositional Logic (I) Fadoua Ghourabi Ochanomizu University ghourabi.fadoua@ocha.cc.ac.jp Octobre 12, 2016 1 / 36 Contents 1 Declarative sentences 2 Constructing propositions 3 Quizz 4 Natural

More information

Fuzzy Logic in Natural Language Processing

Fuzzy Logic in Natural Language Processing Fuzzy Logic in Natural Language Processing...wild speculation about the nature of truth, and other equally unscientific endeavors. Richard Bergmair Acknowledgments thanks for supervising the project! Ann

More information

The development of AWS AND Introductory to the IWS (Intelligent Weather System) by: Mr Aly Abd ELSAMIEE

The development of AWS AND Introductory to the IWS (Intelligent Weather System) by: Mr Aly Abd ELSAMIEE The development of AWS AND Introductory to the IWS (Intelligent Weather System) by: Mr Aly Abd ELSAMIEE EGYPTIAN METEOROLOGICAL AUTHORITY (EMA) Koubry El-Qubba, Cairo, Egypt Tel.: (202) 684 6596; Fax:

More information

Fuzzy Logic. By Clifton F. Cobb

Fuzzy Logic. By Clifton F. Cobb Fuzzy Logic By Clifton F. Cobb Abstract. Theroleoflogicinmathematicalactivitiesis indisputable. Indeed, it has become a cornerstone for many of the important achievements in the field of mathematics. This

More information

How to Assign Weights to Different Factors in Vulnerability Analysis: Towards a Justification of a Heuristic Technique

How to Assign Weights to Different Factors in Vulnerability Analysis: Towards a Justification of a Heuristic Technique University of Texas at El Paso DigitalCommons@UTEP Departmental Technical Reports (CS) Department of Computer Science 6-2014 How to Assign Weights to Different Factors in Vulnerability Analysis: Towards

More information

CS188 Outline. CS 188: Artificial Intelligence. Today. Inference in Ghostbusters. Probability. We re done with Part I: Search and Planning!

CS188 Outline. CS 188: Artificial Intelligence. Today. Inference in Ghostbusters. Probability. We re done with Part I: Search and Planning! CS188 Outline We re done with art I: Search and lanning! CS 188: Artificial Intelligence robability art II: robabilistic Reasoning Diagnosis Speech recognition Tracking objects Robot mapping Genetics Error

More information

Circuit Implementation of a Variable Universe Adaptive Fuzzy Logic Controller. Weiwei Shan

Circuit Implementation of a Variable Universe Adaptive Fuzzy Logic Controller. Weiwei Shan Circuit Implementation of a Variable Universe Adaptive Fuzzy Logic Controller Weiwei Shan Outline 1. Introduction: Fuzzy logic and Fuzzy control 2. Basic Ideas of Variable Universe of Discourse 3. Algorithm

More information

Uncertain Knowledge and Bayes Rule. George Konidaris

Uncertain Knowledge and Bayes Rule. George Konidaris Uncertain Knowledge and Bayes Rule George Konidaris gdk@cs.brown.edu Fall 2018 Knowledge Logic Logical representations are based on: Facts about the world. Either true or false. We may not know which.

More information

Computer Science 385 Analysis of Algorithms Siena College Spring Topic Notes: Limitations of Algorithms

Computer Science 385 Analysis of Algorithms Siena College Spring Topic Notes: Limitations of Algorithms Computer Science 385 Analysis of Algorithms Siena College Spring 2011 Topic Notes: Limitations of Algorithms We conclude with a discussion of the limitations of the power of algorithms. That is, what kinds

More information

Cosmology Dark Energy Models ASTR 2120 Sarazin

Cosmology Dark Energy Models ASTR 2120 Sarazin Cosmology Dark Energy Models ASTR 2120 Sarazin Late Homeworks Last day Wednesday, May 1 My mail box in ASTR 204 Maximum credit 50% unless excused (but, better than nothing) Final Exam Thursday, May 2,

More information

Introduction to Fuzzy Sets Theory

Introduction to Fuzzy Sets Theory An DIBRIS - University of Genova, ITALY & S.H.R.O. - Sbarro Institute for Cancer Research and Molecular Medicine Temple University, Philadelphia, PA, USA email: masulli@disi.unige.it MLCI 2018 Outline

More information

Environment Protection Engineering MATRIX METHOD FOR ESTIMATING THE RISK OF FAILURE IN THE COLLECTIVE WATER SUPPLY SYSTEM USING FUZZY LOGIC

Environment Protection Engineering MATRIX METHOD FOR ESTIMATING THE RISK OF FAILURE IN THE COLLECTIVE WATER SUPPLY SYSTEM USING FUZZY LOGIC Environment Protection Engineering Vol. 37 2011 No. 3 BARBARA TCHÓRZEWSKA-CIEŚLAK* MATRIX METHOD FOR ESTIMATING THE RISK OF FAILURE IN THE COLLECTIVE WATER SUPPLY SYSTEM USING FUZZY LOGIC Collective water

More information

Today s s lecture. Lecture 16: Uncertainty - 6. Dempster-Shafer Theory. Alternative Models of Dealing with Uncertainty Information/Evidence

Today s s lecture. Lecture 16: Uncertainty - 6. Dempster-Shafer Theory. Alternative Models of Dealing with Uncertainty Information/Evidence Today s s lecture Lecture 6: Uncertainty - 6 Alternative Models of Dealing with Uncertainty Information/Evidence Dempster-Shaffer Theory of Evidence Victor Lesser CMPSCI 683 Fall 24 Fuzzy logic Logical

More information

Failure Mode Screening Using Fuzzy Set Theory

Failure Mode Screening Using Fuzzy Set Theory International Mathematical Forum, 4, 9, no. 6, 779-794 Failure Mode Screening Using Fuzzy Set Theory D. Pandey a, Sanjay Kumar Tyagi b and Vinesh Kumar c a, c Department of Mathematics, C.C.S. University,

More information

Two examples of the use of fuzzy set theory in statistics. Glen Meeden University of Minnesota.

Two examples of the use of fuzzy set theory in statistics. Glen Meeden University of Minnesota. Two examples of the use of fuzzy set theory in statistics Glen Meeden University of Minnesota http://www.stat.umn.edu/~glen/talks 1 Fuzzy set theory Fuzzy set theory was introduced by Zadeh in (1965) as

More information

Analyzing fuzzy and contextual approaches to vagueness by semantic games

Analyzing fuzzy and contextual approaches to vagueness by semantic games Analyzing fuzzy and contextual approaches to vagueness by semantic games PhD Thesis Christoph Roschger Institute of Computer Languages Theory and Logic Group November 27, 2014 Motivation Vagueness ubiquitous

More information

Midterm sample questions

Midterm sample questions Midterm sample questions CS 585, Brendan O Connor and David Belanger October 12, 2014 1 Topics on the midterm Language concepts Translation issues: word order, multiword translations Human evaluation Parts

More information

CS 6375 Machine Learning

CS 6375 Machine Learning CS 6375 Machine Learning Decision Trees Instructor: Yang Liu 1 Supervised Classifier X 1 X 2. X M Ref class label 2 1 Three variables: Attribute 1: Hair = {blond, dark} Attribute 2: Height = {tall, short}

More information

In this context, the thing we call the decision variable is K, the number of beds. Our solution will be done by stating a value for K.

In this context, the thing we call the decision variable is K, the number of beds. Our solution will be done by stating a value for K. STAT-UB.0103 NOTES for Wednesday 2012.FEB.15 Suppose that a hospital has a cardiac care unit which handles heart attac victims on the first day of their problems. The geographic area served by the hospital

More information

Bits. Chapter 1. Information can be learned through observation, experiment, or measurement.

Bits. Chapter 1. Information can be learned through observation, experiment, or measurement. Chapter 1 Bits Information is measured in bits, just as length is measured in meters and time is measured in seconds. Of course knowing the amount of information is not the same as knowing the information

More information

Physics 161 Homework 3 - Solutions Wednesday September 21, 2011

Physics 161 Homework 3 - Solutions Wednesday September 21, 2011 Physics 161 Homework 3 - Solutions Wednesday September 21, 2011 ake sure your name is on every page, and please box your final answer. Because we will be giving partial credit, be sure to attempt all the

More information

Fundamentals. 2.1 Fuzzy logic theory

Fundamentals. 2.1 Fuzzy logic theory Fundamentals 2 In this chapter we briefly review the fuzzy logic theory in order to focus the type of fuzzy-rule based systems with which we intend to compute intelligible models. Although all the concepts

More information

So, we can say that fuzzy proposition is a statement p which acquires a fuzzy truth value T(p) ranges from(0 to1).

So, we can say that fuzzy proposition is a statement p which acquires a fuzzy truth value T(p) ranges from(0 to1). Chapter 4 Fuzzy Proposition Main difference between classical proposition and fuzzy proposition is in the range of their truth values. The proposition value for classical proposition is either true or

More information

Introduction to fuzzy logic

Introduction to fuzzy logic Introduction to fuzzy logic Andrea Bonarini Artificial Intelligence and Robotics Lab Department of Electronics and Information Politecnico di Milano E-mail: bonarini@elet.polimi.it URL:http://www.dei.polimi.it/people/bonarini

More information

CHAPTER 5 FUZZY LOGIC FOR ATTITUDE CONTROL

CHAPTER 5 FUZZY LOGIC FOR ATTITUDE CONTROL 104 CHAPTER 5 FUZZY LOGIC FOR ATTITUDE CONTROL 5.1 INTRODUCTION Fuzzy control is one of the most active areas of research in the application of fuzzy set theory, especially in complex control tasks, which

More information

WeatherWatcher ACP. Astronomers Control Panel (V4 or >) Ambient Virtual Weather Station (Pro or Internet editions) ASCOM platform v4.

WeatherWatcher ACP. Astronomers Control Panel (V4 or >) Ambient Virtual Weather Station (Pro or Internet editions) ASCOM platform v4. WeatherWatcher ACP Software This is a minimum equipment list: Astronomers Control Panel (V4 or >) Ambient Virtual Weather Station (Pro or Internet editions) ASCOM platform v4.1 or higher Hardware Weather

More information

What is fuzzy? A dictionary definition. And so what is a Fuzzy Set? events. a not clear Set? 1. Of or resembling fuzz.

What is fuzzy? A dictionary definition. And so what is a Fuzzy Set? events. a not clear Set? 1. Of or resembling fuzz. Sterowanie rozmyte What is fuzzy? A dictionary definition 1. Of or resembling fuzz. 2. Not clear; indistinct: a fuzzy recollection of past events. 3. Not coherent; confused: a fuzzy plan of action. 4.

More information

Linguistic-Valued Approximate Reasoning With Lattice Ordered Linguistic-Valued Credibility

Linguistic-Valued Approximate Reasoning With Lattice Ordered Linguistic-Valued Credibility International Journal of Computational Intelligence Systems, Vol. 8, No. 1 (2015) 53-61 Linguistic-Valued Approximate Reasoning With Lattice Ordered Linguistic-Valued Credibility Li Zou and Yunxia Zhang

More information

Algorithms for Increasing of the Effectiveness of the Making Decisions by Intelligent Fuzzy Systems

Algorithms for Increasing of the Effectiveness of the Making Decisions by Intelligent Fuzzy Systems Journal of Electrical Engineering 3 (205) 30-35 doi: 07265/2328-2223/2050005 D DAVID PUBLISHING Algorithms for Increasing of the Effectiveness of the Making Decisions by Intelligent Fuzzy Systems Olga

More information

CS 343: Artificial Intelligence

CS 343: Artificial Intelligence CS 343: Artificial Intelligence Probability Prof. Scott Niekum The University of Texas at Austin [These slides based on those of Dan Klein and Pieter Abbeel for CS188 Intro to AI at UC Berkeley. All CS188

More information

Reasoning Systems Chapter 4. Dr Ahmed Rafea

Reasoning Systems Chapter 4. Dr Ahmed Rafea Reasoning Systems Chapter 4 Dr Ahmed Rafea Introduction In this chapter we will explore how the various knowledge representations can be used for reasoning We will explore : Reasoning with rules Forward

More information

Computational Complexity

Computational Complexity p. 1/24 Computational Complexity The most sharp distinction in the theory of computation is between computable and noncomputable functions; that is, between possible and impossible. From the example of

More information

Christopher ISU

Christopher ISU Christopher Anderson @ ISU Excessive spring rain will be more frequent (except this year). Will it be more manageable? Christopher J. Anderson, PhD 89th Annual Soil Management and Land Valuation Conference

More information

FUZZY LOGIC CONTROLLER AS MODELING TOOL FOR THE BURNING PROCESS OF A CEMENT PRODUCTION PLANT. P. B. Osofisan and J. Esara

FUZZY LOGIC CONTROLLER AS MODELING TOOL FOR THE BURNING PROCESS OF A CEMENT PRODUCTION PLANT. P. B. Osofisan and J. Esara FUZZY LOGIC CONTROLLER AS MODELING TOOL FOR THE BURNING PROCESS OF A CEMENT PRODUCTION PLANT P. B. Osofisan and J. Esara Department of Electrical and Electronics Engineering University of Lagos, Nigeria

More information