BRECCIA: A Multi-Agent Data Fusion and Decision Support Framework for Dynamic Mission Planning

Size: px
Start display at page:

Download "BRECCIA: A Multi-Agent Data Fusion and Decision Support Framework for Dynamic Mission Planning"

Transcription

1 BRECCIA: A Multi-Agent Data Fusion and Decision Support Framework for Dynamic Mission Planning David Sacharny, Tom Henderson, Robert Simmons, Amar Mitiche, Xiuyi Fan and Taylor Welker Cambridge, MA 7 August

2 Colleagues David Sacharny Tom Henderson Robert Simmons Taylor Welker Xiuyi Fan Nanyang Technological University Amar Mitiche INRS Montreal 2

3 Acknowledgment This material is based upon work supported by the Air Force Office of Scientific Research under award number FA (DDDAS-based Geospatial Intelligence) 3

4 BRECCIA 4

5 BRECCIA 5

6 BRECCIA and DDDAS 1. Applications Modeling: e.g., Wind/Obscurant Simulations 6

7 BRECCIA and DDDAS 2. Advances in Mathematical and Statistical Algorithms: e.g., Probabilistic Logic No Weak Methods 7

8 BRECCIA and DDDAS 3. Application Measurement Systems and Methods: e.g., Path Planning 8

9 BRECCIA and DDDAS 4. Software Infrastructures and System: e.g., BRECCIA Multi-agent Server 9

10 BRECCIA: Summary Provides middleware for: real-time coupling of computation and knowledge across heterogeneous platforms 10

11 BRECCIA: Summary Provides uncertainty analysis for mission planning involving combination of: human statements simulation results sensor measurements 11

12 BRECCIA: Summary Agents driven by uncertainty reduction: identification of major uncertainty sources uncertainty quantification propose measures for uncertainty reduction 12

13 Two Main Results Probabilistic Logic New approach: system of nonlinear equations Results on large systems Multi-agent Middleware Real-time agent mission assessment and replanning 13

14 Given: Uncertainty in Knowledge A set of propositions Bases (e.g., S 1 : UAV 1 is operational) A set of probabilities for the propositions (e.g., (S 1 )[0.9]) Then, given a query (e.g., Q: Mission_OK), determine its probability 14

15 Probabilistic Logic SAT (Satisfiability Problem) Given a propositional calculus formula, find a truth assignment to each logical variable so that the formula is true E.g., S P & (P Q) (i.e., Modus Ponens premises) P True and Q True satisfies S 15

16 Probabilistic Logic PSAT (Probabilistic SAT Problem) (Simple version!) Given a CNF formula, and a probability assignment for each conjunct, find a consistent probability assignment for a query formula E.g.: [0.7] S 1 : P [0.7] S 2 : P v Q [?] Query: Q 16

17 To Solve: Count Models % Counts Models Sentences Probabilities t 1 t 2 t 3 t 4 P Q P P v Q ω Ω models P t 3 +t 4 =

18 To Solve: Count Models Counts Models Sentences Probabilities t 1 t 2 t 3 t 4 P Q P P v Q ω Ω models P v Q t 1 + t 2 + t 4 =

19 To Solve: Count Models Solve: t 3 + t 4 = 0.7 t 1 + t 2 + t 4 = 0.7 t 1 + t 2 + t 3 + t 4 = 1 add constraint So solve: t 1 t 2 t 3 t 4 = E.g.: t 1 t 2 t 3 t 4 =

20 To Solve: Count Models Solve: t 3 + t 4 = 0.7 t 1 + t 2 + t 4 = 0.7 t 1 + t 2 + t 3 + t 4 = 1 add constraint So solve: t 1 t 2 t 3 t 4 = E.g.: t 1 t 2 t 3 t 4 =

21 To Solve: Count Models So solve query, e.g., P(Q), sum probabilities of models of formula: E.g., for t 1 t 2 t 3 t 4 = then P(Q) = t 2 + t 4 = 0.4 E.g., for t 1 t 2 t 3 t 4 = then P(Q) = t 2 + t 4 =

22 Thimm s Formulation A constraint r, is a disjunction with a probability. Ω is the set of all complete conjunctions (a literal from every logical variable appears once and only once in a complete conjunction). 22

23 Geometric View of Query 23

24 Example of Ω 24

25 Linear Formulation Issues Exponential Complexity (in number of sentences) Uses SAT solvers to produce the matrix Solver Complexity: Constraints: 0 p i 1 Multiple solutions 25

26 New Formulation Assume Boolean random variables are independent Express each disjunction clause as: P(AvB) = P(A) + P(B) P(A^B) = P(A) + P(B) P(A)P(B) Develop system of nonlinear equations and solve for atom probabilities; use these to solve query 26

27 Example: Modus Ponens 27

28 Some Observations Given n-modus Ponens: A 1 A 1 A 2 A n 1 A n then standard approach needs 2 n models, we solve it in linear time 28

29 Some Observations Consider Russell & Norvig Wumpus World: With logical variables: breeze: e.g., B11 Gold: e.g., G23 Pit: e.g., P22 Stench: e.g., S44 Wumpus: e.g., W34 Rules like: P21 v B11 16*5 = 80 variables Given the rules, there are: 583 sentences 29

30 Some Observations (cont d) Breezes Gold Pits Stench Wumpus 30

31 Some Observations (cont d) 31

32 URBAN: Uncertainty Reduction- Based Agent Network A mult-agent system specifically designed for geospatial-temporal analysis across massive distributed datasets. Leverages the GeoWave project developed at the National Geospatial- Intelligence Agency (NGA) ( and the open source frameworks Apache Hadoop (for distributed processing) and Accumulo (for key/value database storage). Conceptually, a layer atop GeoWave that provides probabilistic logical reasoning over space and time. Dissemination of knowledge in the form of probabilistic sentences and maps published to GeoServer ( Addresses tasking, processing, exploitation, and dissemination of data (TPED) with an agile sensor network and the unifying concept of uncertainty reduction. 32

33 URBAN Implementation The BRECCIA Agent represents the core abstraction for all agents in the system. Agents are distributed across specialized machines such as UAVs, mobile laptops, or high performance computers. BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions :Mission Planner Hadoop Accumulo GeoServer DB RRT* Planner The inherited components of each BRECCIA agent enable an overall system that is dynamic and datadriven. :Weather Monitor :UAV Manager :User FExample Instantiations of the BRECCIA Agent 33

34 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions The Belief-Desire-Intention (BDI) engine serves a dual purpose As a software architecture it facilitates the discussion and design of agents As a software cognitive model it enables goal-driven behavior (and in our particular implementation data-driven). Jason ( provides the language interpreter and BDI engine to BRECCIA agents. 34 The Jason Reasoning Cycle. From Programming Multi-Agent Systems in AgentSpeak Using Jason (pg. 68), by Rafael H. Bordini et al., 2007, England: John Wiley and Sons Ltd.

35 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions 35

36 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions How does Jason enable data-driven behavior? Plans are executed due to events which may be achievement requests or a change in belief. Example: Consider the case where a UAV is executing a path and periodically querying the geospatial database for path obstruction. To cause the agent to re-plan in the event of an obstruction, the code is as follows: +path_obstructed(pathname) ->!replan(pathname) React to the belief that path is obstructed by replanning The language defined by Jason is inherently data-driven. 36

37 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions How do Uncertainty Reduction and Probabilistic Logic achieve an agile sensor network and TPED? Probabilistic logic and quantified uncertainty provide a means for applying well-known planning algorithms to an abstract problem space. Certainty as a reward for plans: 37 Rewards are higher for truth and certainty of positive sentences, or falsity and certainty for negative sentences. Rewards are lowest for uncertain sentences, i.e. p=0.5. Non-biased sentences (i.e. inference rules) have a symmetrical reward function. The uncertainty reduction goal is executed by a plan to maximize the certainty reward

38 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions Uncertainty Reduction Example Consider the case where an analyst is cooperating with a UAV to gather information about a location. Associated with a path plan for the UAV are the following sentences and inference for mission success: Plan A: a:path_obstructed[p=0.1], b:battery_ok[p=0.9], c:target_recorded[p=0.7], b^c -> mission_success [p=0.84] During the course of the mission, a second analyst, cooperating on an unrelated mission, reports seeing smoke at a location that crosses Plan A s path. Belief a updates, generates an event and causes the UAV agent to replan in this case two plans are generated, one to continue on with the mission and another to turn back. Plan B: a:path_obstructed[p=0.1], b:battery_ok[p=0.8], c:target_recorded[p=0.7], b^c -> mission_success [p=0.82] Plan C: a:path_obstructed[p=0.05], b:battery_ok[p=0.95], c:target_recorded[p=0.2], b^c -> mission_success [p=0.47] Target UAV Plan A Plan B Plan C 38 Legend

39 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions Uncertainty Reduction Example Plan A: a:path_obstructed[p=0.6], b:battery_ok[p=0.9], c:target_recorded[p=0.7], b^c -> mission_success [p=0.84] Reward: R(a,0.6) + R(b,0.9) + R(c,0.7) + R(0.84) = 0.3 Plan B: a:path_obstructed[p=0.1], b:battery_ok[p=0.8], c:target_recorded[p=0.7], b^c -> mission_success [p=0.82] Reward: R(a,0.1) + R(b,0.8) + R(c,0.7) + R(0.82) = 0.45 Plan C: a:path_obstructed[p=0.05], b:battery_ok[p=0.95], c:target_recorded[p=0.2], b^c -> mission_success [p=0.47] Reward: R(a,0.05) + R(b,0.95) + R(c,0.2) + R(0.47) = 0.42 Although the probability of mission success reduced by a small amount due to the uncertainty in battery usage, the overall uncertainty for this set of sentences has decreased by choosing Plan B. Target UAV Plan A Plan B Plan C 39 Legend

40 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions Uncertainty Reduction Example Demonstrates how uncertainty reduction and probabilistic logic facilitate planning over heterogeneous data paths, events, human observations. Provides justification for decision makers the agent may request guidance from the user if the plan alternatives are close to one another 40

41 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions GeoWave Connector GeoWave enables agents to simultaneously access a distributed geospatial-temporal database. Agents publish geospatial knowledge, written to the database, via GeoServer. This enables remote sharing of this type of knowledge. In Jason, internal actions coded into the GeoWave connector provide direct access to the databases. Example from weather agent: +!share_storm_info(location, Agent) -> geowaveconnector::get_wms_url(location, WmsUrl) ;.send(agent, tell, storm_info(wmsurl). Data-driven response from UAV agent: +storm_info(wmsurl) ->!check_path_obstruction(wmsurl) 41

42 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions Distributed approach enables web-based user access: 42 Prototype BRECCIA Client interface and Chat Window Featuring Map of Salt Lake City from Local GeoServer Instance

43 URBAN Implementation BRECCIA Agent BDI Engine Uncertainty Reduct. Goal P.L. Logic Module GeoWave Connector Specialized Functions Specialized Functions Current implementations of specialized functions include Connecting to MATLAB instances (Agents who know how to use MATLAB) RRT* path planner (Agents who know how to plan over space with vehicle constraints) Wind Simulator (Agent that runs a wind vortex simulator) Ongoing work of specialized functions GDELT database query (Agents that can query the massive GDELT global event database ( OpenWeather API Agent (Agents that can query distributed weather information) UAV simulator (Agents that can run real-time UAV simulators) UAV controller (Agents that can control quadcopters in real-time) 43

44 Conclusions Developed effective and efficient probabilistic logic method Developed core of BRECCIA system URBAN: allows communicating, autonomous agents Cloud computing 44

45 Future Work Probabilistic Logic Use conditional probabilities P(A&B) = P(A B)P(B) approximate P(A 1 & A 2 & & A n ) by upper bound: min(p(a i & A j )), i, j = 1: n Extend to First Order Logic Exploit argumentation to reduce analysis cost 45

46 Future Work BRECCIA middleware Extend breadth of agents Extend depth of analysis Develop realistic ISR scenario Collaborate with Air Force ISR wing Measure performance Accuracy of uncertainty measures Time & Space Computational aspects 46

47 Future Work Simulation Use full 3D QUIC-URB modeling system Exploit Gaussian process models of 3D features Terrain Temperature Wind Obscurants 47

48 Future Work Experiments Develop real-world ISR missions Small-scale experiments in lab Full-scale experiments (in SLC) Measures of performance (MOP) & Effectiveness(MOE) Success (MOP) Time (MOP) Information adequacy (MOE) 48

49 UTAH UAV Fleet 49

50 Questions? 50

Logical Agent & Propositional Logic

Logical Agent & Propositional Logic Logical Agent & Propositional Logic Berlin Chen 2005 References: 1. S. Russell and P. Norvig. Artificial Intelligence: A Modern Approach. Chapter 7 2. S. Russell s teaching materials Introduction The representation

More information

Proof Methods for Propositional Logic

Proof Methods for Propositional Logic Proof Methods for Propositional Logic Logical equivalence Two sentences are logically equivalent iff they are true in the same models: α ß iff α β and β α Russell and Norvig Chapter 7 CS440 Fall 2015 1

More information

Logical Agent & Propositional Logic

Logical Agent & Propositional Logic Logical Agent & Propositional Logic Berlin Chen Department of Computer Science & Information Engineering National Taiwan Normal University References: 1. S. Russell and P. Norvig. Artificial Intelligence:

More information

Intelligent Agents. Pınar Yolum Utrecht University

Intelligent Agents. Pınar Yolum Utrecht University Intelligent Agents Pınar Yolum p.yolum@uu.nl Utrecht University Logical Agents (Based mostly on the course slides from http://aima.cs.berkeley.edu/) Outline Knowledge-based agents Wumpus world Logic in

More information

INF5390 Kunstig intelligens. Logical Agents. Roar Fjellheim

INF5390 Kunstig intelligens. Logical Agents. Roar Fjellheim INF5390 Kunstig intelligens Logical Agents Roar Fjellheim Outline Knowledge-based agents The Wumpus world Knowledge representation Logical reasoning Propositional logic Wumpus agent Summary AIMA Chapter

More information

Chapter 7 R&N ICS 271 Fall 2017 Kalev Kask

Chapter 7 R&N ICS 271 Fall 2017 Kalev Kask Set 6: Knowledge Representation: The Propositional Calculus Chapter 7 R&N ICS 271 Fall 2017 Kalev Kask Outline Representing knowledge using logic Agent that reason logically A knowledge based agent Representing

More information

Knowledge base (KB) = set of sentences in a formal language Declarative approach to building an agent (or other system):

Knowledge base (KB) = set of sentences in a formal language Declarative approach to building an agent (or other system): Logic Knowledge-based agents Inference engine Knowledge base Domain-independent algorithms Domain-specific content Knowledge base (KB) = set of sentences in a formal language Declarative approach to building

More information

Artificial Intelligence Chapter 7: Logical Agents

Artificial Intelligence Chapter 7: Logical Agents Artificial Intelligence Chapter 7: Logical Agents Michael Scherger Department of Computer Science Kent State University February 20, 2006 AI: Chapter 7: Logical Agents 1 Contents Knowledge Based Agents

More information

7. Logical Agents. COMP9414/ 9814/ 3411: Artificial Intelligence. Outline. Knowledge base. Models and Planning. Russell & Norvig, Chapter 7.

7. Logical Agents. COMP9414/ 9814/ 3411: Artificial Intelligence. Outline. Knowledge base. Models and Planning. Russell & Norvig, Chapter 7. COMP944/984/34 6s Logic COMP944/ 984/ 34: rtificial Intelligence 7. Logical gents Outline Knowledge-based agents Wumpus world Russell & Norvig, Chapter 7. Logic in general models and entailment Propositional

More information

Logic. Introduction to Artificial Intelligence CS/ECE 348 Lecture 11 September 27, 2001

Logic. Introduction to Artificial Intelligence CS/ECE 348 Lecture 11 September 27, 2001 Logic Introduction to Artificial Intelligence CS/ECE 348 Lecture 11 September 27, 2001 Last Lecture Games Cont. α-β pruning Outline Games with chance, e.g. Backgammon Logical Agents and thewumpus World

More information

Using NILS to Solve Probabilistic Satisfiability for CNF Knowledge Bases a. Abstract

Using NILS to Solve Probabilistic Satisfiability for CNF Knowledge Bases a. Abstract Using NILS to Solve Probabilistic Satisfiability for CNF Knowledge Bases a Thomas C. Herson and Michael Cline University of Utah UUCS-18-006 a This research supported in part by Dynamic Data Driven Application

More information

Outline. Logical Agents. Logical Reasoning. Knowledge Representation. Logical reasoning Propositional Logic Wumpus World Inference

Outline. Logical Agents. Logical Reasoning. Knowledge Representation. Logical reasoning Propositional Logic Wumpus World Inference Outline Logical Agents ECE57 Applied Artificial Intelligence Spring 007 Lecture #6 Logical reasoning Propositional Logic Wumpus World Inference Russell & Norvig, chapter 7 ECE57 Applied Artificial Intelligence

More information

AI Programming CS S-09 Knowledge Representation

AI Programming CS S-09 Knowledge Representation AI Programming CS662-2013S-09 Knowledge Representation David Galles Department of Computer Science University of San Francisco 09-0: Overview So far, we ve talked about search, which is a means of considering

More information

Logical Agents. Chapter 7

Logical Agents. Chapter 7 Logical Agents Chapter 7 Outline Knowledge-based agents Wumpus world Logic in general - models and entailment Propositional (Boolean) logic Equivalence, validity, satisfiability Inference rules and theorem

More information

Artificial Intelligence. Propositional logic

Artificial Intelligence. Propositional logic Artificial Intelligence Propositional logic Propositional Logic: Syntax Syntax of propositional logic defines allowable sentences Atomic sentences consists of a single proposition symbol Each symbol stands

More information

Logical Agents (I) Instructor: Tsung-Che Chiang

Logical Agents (I) Instructor: Tsung-Che Chiang Logical Agents (I) Instructor: Tsung-Che Chiang tcchiang@ieee.org Department of Computer Science and Information Engineering National Taiwan Normal University Artificial Intelligence, Spring, 2010 編譯有誤

More information

The Wumpus Game. Stench Gold. Start. Cao Hoang Tru CSE Faculty - HCMUT

The Wumpus Game. Stench Gold. Start. Cao Hoang Tru CSE Faculty - HCMUT The Wumpus Game Stench Stench Gold Stench Start 1 The Wumpus Game Stench in the square containing the wumpus and in the directly adjacent squares in the squares directly adjacent to a pit Glitter in the

More information

Title: Logical Agents AIMA: Chapter 7 (Sections 7.4 and 7.5)

Title: Logical Agents AIMA: Chapter 7 (Sections 7.4 and 7.5) B.Y. Choueiry 1 Instructor s notes #12 Title: Logical Agents AIMA: Chapter 7 (Sections 7.4 and 7.5) Introduction to Artificial Intelligence CSCE 476-876, Fall 2018 URL: www.cse.unl.edu/ choueiry/f18-476-876

More information

EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS

EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS EE562 ARTIFICIAL INTELLIGENCE FOR ENGINEERS Lecture 10, 5/9/2005 University of Washington, Department of Electrical Engineering Spring 2005 Instructor: Professor Jeff A. Bilmes Logical Agents Chapter 7

More information

Artificial Intelligence

Artificial Intelligence Artificial Intelligence Propositional Logic Marc Toussaint University of Stuttgart Winter 2016/17 (slides based on Stuart Russell s AI course) Motivation: Most students will have learnt about propositional

More information

Outline. Logical Agents. Logical Reasoning. Knowledge Representation. Logical reasoning Propositional Logic Wumpus World Inference

Outline. Logical Agents. Logical Reasoning. Knowledge Representation. Logical reasoning Propositional Logic Wumpus World Inference Outline Logical Agents ECE57 Applied Artificial Intelligence Spring 008 Lecture #6 Logical reasoning Propositional Logic Wumpus World Inference Russell & Norvig, chapter 7 ECE57 Applied Artificial Intelligence

More information

Logical Agents. Knowledge based agents. Knowledge based agents. Knowledge based agents. The Wumpus World. Knowledge Bases 10/20/14

Logical Agents. Knowledge based agents. Knowledge based agents. Knowledge based agents. The Wumpus World. Knowledge Bases 10/20/14 0/0/4 Knowledge based agents Logical Agents Agents need to be able to: Store information about their environment Update and reason about that information Russell and Norvig, chapter 7 Knowledge based agents

More information

CSC242: Intro to AI. Lecture 11. Tuesday, February 26, 13

CSC242: Intro to AI. Lecture 11. Tuesday, February 26, 13 CSC242: Intro to AI Lecture 11 Propositional Inference Propositional Inference Factored Representation Splits a state into variables (factors, attributes, features, things you know ) that can have values

More information

Price: $25 (incl. T-Shirt, morning tea and lunch) Visit:

Price: $25 (incl. T-Shirt, morning tea and lunch) Visit: Three days of interesting talks & workshops from industry experts across Australia Explore new computing topics Network with students & employers in Brisbane Price: $25 (incl. T-Shirt, morning tea and

More information

Artificial Intelligence

Artificial Intelligence Artificial Intelligence Propositional Logic Marc Toussaint University of Stuttgart Winter 2015/16 (slides based on Stuart Russell s AI course) Outline Knowledge-based agents Wumpus world Logic in general

More information

Rational Agents. Paolo Turrini. Introduction to Artificial Intelligence 2nd Part. Department of Computing, Imperial College London

Rational Agents. Paolo Turrini. Introduction to Artificial Intelligence 2nd Part. Department of Computing, Imperial College London Rational Agents Department of Computing, Imperial College London Introduction to Artificial Intelligence 2nd Part What you have seen You have seen procedures for computational problem-solving: searching

More information

Logical Agents. Outline

Logical Agents. Outline Logical Agents *(Chapter 7 (Russel & Norvig, 2004)) Outline Knowledge-based agents Wumpus world Logic in general - models and entailment Propositional (Boolean) logic Equivalence, validity, satisfiability

More information

Logical Inference. Artificial Intelligence. Topic 12. Reading: Russell and Norvig, Chapter 7, Section 5

Logical Inference. Artificial Intelligence. Topic 12. Reading: Russell and Norvig, Chapter 7, Section 5 rtificial Intelligence Topic 12 Logical Inference Reading: Russell and Norvig, Chapter 7, Section 5 c Cara MacNish. Includes material c S. Russell & P. Norvig 1995,2003 with permission. CITS4211 Logical

More information

CS 4700: Foundations of Artificial Intelligence

CS 4700: Foundations of Artificial Intelligence CS 4700: Foundations of Artificial Intelligence Bart Selman selman@cs.cornell.edu Module: Knowledge, Reasoning, and Planning Part 2 Logical Agents R&N: Chapter 7 1 Illustrative example: Wumpus World (Somewhat

More information

COMP3702/7702 Artificial Intelligence Week 5: Search in Continuous Space with an Application in Motion Planning " Hanna Kurniawati"

COMP3702/7702 Artificial Intelligence Week 5: Search in Continuous Space with an Application in Motion Planning  Hanna Kurniawati COMP3702/7702 Artificial Intelligence Week 5: Search in Continuous Space with an Application in Motion Planning " Hanna Kurniawati" Last week" Main components of PRM" Collision check for a configuration"

More information

Lecture 7: Logic and Planning

Lecture 7: Logic and Planning Lecture 7: Logic and Planning Planning and representing knowledge Logic in general Propositional (Boolean) logic and its application to planning COMP-424, Lecture 8 - January 30, 2013 1 What is planning?

More information

Logical agents. Chapter 7. Chapter 7 1

Logical agents. Chapter 7. Chapter 7 1 Logical agents Chapter 7 Chapter 7 Outline Knowledge-based agents Wumpus world Logic in general models and entailment Propositional (Boolean) logic Equivalence, validity, satisfiability Inference rules

More information

TDT4136 Logic and Reasoning Systems

TDT4136 Logic and Reasoning Systems TDT436 Logic and Reasoning Systems Chapter 7 - Logic gents Lester Solbakken solbakke@idi.ntnu.no Norwegian University of Science and Technology 06.09.0 Lester Solbakken TDT436 Logic and Reasoning Systems

More information

Logical Agents. Santa Clara University

Logical Agents. Santa Clara University Logical Agents Santa Clara University Logical Agents Humans know things Humans use knowledge to make plans Humans do not act completely reflexive, but reason AI: Simple problem-solving agents have knowledge

More information

CS:4420 Artificial Intelligence

CS:4420 Artificial Intelligence CS:4420 Artificial Intelligence Spring 2018 Propositional Logic Cesare Tinelli The University of Iowa Copyright 2004 18, Cesare Tinelli and Stuart Russell a a These notes were originally developed by Stuart

More information

CSCI-495 Artificial Intelligence. Lecture 17

CSCI-495 Artificial Intelligence. Lecture 17 CSCI-495 Artificial Intelligence Lecture 17 Tractable Inference: Horn Logic Resolution in general can be exponential in space and time For tractable inference we need a smaller logic Real-world KBs often

More information

Logic and Inferences

Logic and Inferences Artificial Intelligence Logic and Inferences Readings: Chapter 7 of Russell & Norvig. Artificial Intelligence p.1/34 Components of Propositional Logic Logic constants: True (1), and False (0) Propositional

More information

Artificial Intelligence Knowledge Representation I

Artificial Intelligence Knowledge Representation I Artificial Intelligence Knowledge Representation I Agents that reason logically knowledge-based approach implement agents that know about their world and reason about possible courses of action needs to

More information

Propositional Logic: Logical Agents (Part I)

Propositional Logic: Logical Agents (Part I) Propositional Logic: Logical Agents (Part I) This lecture topic: Propositional Logic (two lectures) Chapter 7.1-7.4 (this lecture, Part I) Chapter 7.5 (next lecture, Part II) Next lecture topic: First-order

More information

Introduction to Intelligent Systems

Introduction to Intelligent Systems Logical Agents Objectives Inference and entailment Sound and complete inference algorithms Inference by model checking Inference by proof Resolution Forward and backward chaining Reference Russel/Norvig:

More information

Introduction to Intelligent Systems

Introduction to Intelligent Systems Logical Agents Objectives Inference and entailment Sound and complete inference algorithms Inference by model checking Inference by proof Resolution Forward and backward chaining Reference Russel/Norvig:

More information

Revised by Hankui Zhuo, March 21, Logical agents. Chapter 7. Chapter 7 1

Revised by Hankui Zhuo, March 21, Logical agents. Chapter 7. Chapter 7 1 Revised by Hankui Zhuo, March, 08 Logical agents Chapter 7 Chapter 7 Outline Wumpus world Logic in general models and entailment Propositional (oolean) logic Equivalence, validity, satisfiability Inference

More information

Kecerdasan Buatan M. Ali Fauzi

Kecerdasan Buatan M. Ali Fauzi Kecerdasan Buatan M. Ali Fauzi Artificial Intelligence M. Ali Fauzi Logical Agents M. Ali Fauzi In which we design agents that can form representations of the would, use a process of inference to derive

More information

Deliberative Agents Knowledge Representation I. Deliberative Agents

Deliberative Agents Knowledge Representation I. Deliberative Agents Deliberative Agents Knowledge Representation I Vasant Honavar Bioinformatics and Computational Biology Program Center for Computational Intelligence, Learning, & Discovery honavar@cs.iastate.edu www.cs.iastate.edu/~honavar/

More information

Introduction to Artificial Intelligence. Logical Agents

Introduction to Artificial Intelligence. Logical Agents Introduction to Artificial Intelligence Logical Agents (Logic, Deduction, Knowledge Representation) Bernhard Beckert UNIVERSITÄT KOBLENZ-LANDAU Winter Term 2004/2005 B. Beckert: KI für IM p.1 Outline Knowledge-based

More information

CS 380: ARTIFICIAL INTELLIGENCE

CS 380: ARTIFICIAL INTELLIGENCE CS 380: RTIFICIL INTELLIGENCE PREDICTE LOGICS 11/8/2013 Santiago Ontañón santi@cs.drexel.edu https://www.cs.drexel.edu/~santi/teaching/2013/cs380/intro.html Summary of last day: Logical gents: The can

More information

CS 380: ARTIFICIAL INTELLIGENCE PREDICATE LOGICS. Santiago Ontañón

CS 380: ARTIFICIAL INTELLIGENCE PREDICATE LOGICS. Santiago Ontañón CS 380: RTIFICIL INTELLIGENCE PREDICTE LOGICS Santiago Ontañón so367@drexeledu Summary of last day: Logical gents: The can reason from the knowledge they have They can make deductions from their perceptions,

More information

Knowledge based Agents

Knowledge based Agents Knowledge based Agents Shobhanjana Kalita Dept. of Computer Science & Engineering Tezpur University Slides prepared from Artificial Intelligence A Modern approach by Russell & Norvig Knowledge Based Agents

More information

Class Assignment Strategies

Class Assignment Strategies Class Assignment Strategies ì Team- A'ack: Team a'ack ì Individualis2c: Search for possible ì Poli2cal: look at others and make decision based on who is winning, who is loosing, and conversa;on ì Emo2on

More information

Propositional Logic: Review

Propositional Logic: Review Propositional Logic: Review Propositional logic Logical constants: true, false Propositional symbols: P, Q, S,... (atomic sentences) Wrapping parentheses: ( ) Sentences are combined by connectives:...and...or

More information

CS 771 Artificial Intelligence. Propositional Logic

CS 771 Artificial Intelligence. Propositional Logic CS 771 Artificial Intelligence Propositional Logic Why Do We Need Logic? Problem-solving agents were very inflexible hard code every possible state E.g., in the transition of 8-puzzle problem, knowledge

More information

Propositional Logic: Logical Agents (Part I)

Propositional Logic: Logical Agents (Part I) Propositional Logic: Logical Agents (Part I) First Lecture Today (Tue 21 Jun) Read Chapters 1 and 2 Second Lecture Today (Tue 21 Jun) Read Chapter 7.1-7.4 Next Lecture (Thu 23 Jun) Read Chapters 7.5 (optional:

More information

Logical Agents: Propositional Logic. Chapter 7

Logical Agents: Propositional Logic. Chapter 7 Logical Agents: Propositional Logic Chapter 7 Outline Topics: Knowledge-based agents Example domain: The Wumpus World Logic in general models and entailment Propositional (Boolean) logic Equivalence, validity,

More information

UNCERTAINTY. In which we see what an agent should do when not all is crystal-clear.

UNCERTAINTY. In which we see what an agent should do when not all is crystal-clear. UNCERTAINTY In which we see what an agent should do when not all is crystal-clear. Outline Uncertainty Probabilistic Theory Axioms of Probability Probabilistic Reasoning Independency Bayes Rule Summary

More information

Propositional Logic: Methods of Proof (Part II)

Propositional Logic: Methods of Proof (Part II) Propositional Logic: Methods of Proof (Part II) You will be expected to know Basic definitions Inference, derive, sound, complete Conjunctive Normal Form (CNF) Convert a Boolean formula to CNF Do a short

More information

CS 7180: Behavioral Modeling and Decision- making in AI

CS 7180: Behavioral Modeling and Decision- making in AI CS 7180: Behavioral Modeling and Decision- making in AI Review of Propositional Logic Prof. Amy Sliva September 7, 2012 Outline General properties of logics Syntax, semantics, entailment, inference, and

More information

Agenda. Artificial Intelligence. Reasoning in the Wumpus World. The Wumpus World

Agenda. Artificial Intelligence. Reasoning in the Wumpus World. The Wumpus World Agenda Artificial Intelligence 10. Propositional Reasoning, Part I: Principles How to Think About What is True or False 1 Introduction Álvaro Torralba Wolfgang Wahlster 2 Propositional Logic 3 Resolution

More information

Chapter 13 Quantifying Uncertainty

Chapter 13 Quantifying Uncertainty Chapter 13 Quantifying Uncertainty CS5811 - Artificial Intelligence Nilufer Onder Department of Computer Science Michigan Technological University Outline Probability basics Syntax and semantics Inference

More information

Advanced Topics in LP and FP

Advanced Topics in LP and FP Lecture 1: Prolog and Summary of this lecture 1 Introduction to Prolog 2 3 Truth value evaluation 4 Prolog Logic programming language Introduction to Prolog Introduced in the 1970s Program = collection

More information

Propositional and First-Order Logic

Propositional and First-Order Logic Propositional and First-Order Logic Chapter 7.4 7.8, 8.1 8.3, 8.5 Some material adopted from notes by Andreas Geyer-Schulz and Chuck Dyer Logic roadmap overview Propositional logic (review) Problems with

More information

7. Propositional Logic. Wolfram Burgard and Bernhard Nebel

7. Propositional Logic. Wolfram Burgard and Bernhard Nebel Foundations of AI 7. Propositional Logic Rational Thinking, Logic, Resolution Wolfram Burgard and Bernhard Nebel Contents Agents that think rationally The wumpus world Propositional logic: syntax and semantics

More information

Logical Agents. Administrative. Thursday: Midterm 1, 7p-9p. Next Tuesday: DOW1013: Last name A-M DOW1017: Last name N-Z

Logical Agents. Administrative. Thursday: Midterm 1, 7p-9p. Next Tuesday: DOW1013: Last name A-M DOW1017: Last name N-Z Logical Agents Mary Herchenhahn, mary-h.com EECS 492 February 2 nd, 2010 Administrative Thursday: Midterm 1, 7p-9p DOW1013: Last name A-M DOW1017: Last name N-Z Next Tuesday: PS2 due PS3 distributed---

More information

Logic. Stephen G. Ware CSCI 4525 / 5525

Logic. Stephen G. Ware CSCI 4525 / 5525 Logic Stephen G. Ware CSCI 4525 / 5525 Logic How can we represent knowledge about the world in a general, reusable way? How can we use existing knowledge to gain new knowledge? Problem Solving Approaches

More information

Foundations of Artificial Intelligence

Foundations of Artificial Intelligence Foundations of Artificial Intelligence 7. Propositional Logic Rational Thinking, Logic, Resolution Wolfram Burgard, Maren Bennewitz, and Marco Ragni Albert-Ludwigs-Universität Freiburg Contents 1 Agents

More information

Chương 3 Tri th ức và lập luận

Chương 3 Tri th ức và lập luận Chương 3 Tri thức và lập luận Nội dung chính chương 3 Lecture 1 Lecture 2 Lecture 3,4 I. Logic ngôn ngữ của tư duy II. Logic mệnh đề (cú pháp, ngữ nghĩa, sức mạnh biểu diễn, các thuật toán suy diễn) III.

More information

Foundations of Artificial Intelligence

Foundations of Artificial Intelligence Foundations of Artificial Intelligence 7. Propositional Logic Rational Thinking, Logic, Resolution Joschka Boedecker and Wolfram Burgard and Bernhard Nebel Albert-Ludwigs-Universität Freiburg May 17, 2016

More information

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax:

GENERALIZATION IN THE NEW GENERATION OF GIS. Dan Lee ESRI, Inc. 380 New York Street Redlands, CA USA Fax: GENERALIZATION IN THE NEW GENERATION OF GIS Dan Lee ESRI, Inc. 380 New York Street Redlands, CA 92373 USA dlee@esri.com Fax: 909-793-5953 Abstract In the research and development of automated map generalization,

More information

7.5.2 Proof by Resolution

7.5.2 Proof by Resolution 137 7.5.2 Proof by Resolution The inference rules covered so far are sound Combined with any complete search algorithm they also constitute a complete inference algorithm However, removing any one inference

More information

Inference Methods In Propositional Logic

Inference Methods In Propositional Logic Lecture Notes, Artificial Intelligence ((ENCS434)) University of Birzeit 1 st Semester, 2011 Artificial Intelligence (ENCS434) Inference Methods In Propositional Logic Dr. Mustafa Jarrar University of

More information

02 Propositional Logic

02 Propositional Logic SE 2F03 Fall 2005 02 Propositional Logic Instructor: W. M. Farmer Revised: 25 September 2005 1 What is Propositional Logic? Propositional logic is the study of the truth or falsehood of propositions or

More information

CSCI 5582 Artificial Intelligence. Today 9/28. Knowledge Representation. Lecture 9

CSCI 5582 Artificial Intelligence. Today 9/28. Knowledge Representation. Lecture 9 CSCI 5582 Artificial Intelligence Lecture 9 Jim Martin Today 9/28 Review propositional logic Reasoning with Models Break More reasoning Knowledge Representation A knowledge representation is a formal scheme

More information

PROBABILISTIC LOGIC. J. Webster (ed.), Wiley Encyclopedia of Electrical and Electronics Engineering Copyright c 1999 John Wiley & Sons, Inc.

PROBABILISTIC LOGIC. J. Webster (ed.), Wiley Encyclopedia of Electrical and Electronics Engineering Copyright c 1999 John Wiley & Sons, Inc. J. Webster (ed.), Wiley Encyclopedia of Electrical and Electronics Engineering Copyright c 1999 John Wiley & Sons, Inc. PROBABILISTIC LOGIC A deductive argument is a claim of the form: If P 1, P 2,...,andP

More information

Logic. proof and truth syntacs and semantics. Peter Antal

Logic. proof and truth syntacs and semantics. Peter Antal Logic proof and truth syntacs and semantics Peter Antal antal@mit.bme.hu 10/9/2015 1 Knowledge-based agents Wumpus world Logic in general Syntacs transformational grammars Semantics Truth, meaning, models

More information

7 LOGICAL AGENTS. OHJ-2556 Artificial Intelligence, Spring OHJ-2556 Artificial Intelligence, Spring

7 LOGICAL AGENTS. OHJ-2556 Artificial Intelligence, Spring OHJ-2556 Artificial Intelligence, Spring 109 7 LOGICAL AGENS We now turn to knowledge-based agents that have a knowledge base KB at their disposal With the help of the KB the agent aims at maintaining knowledge of its partially-observable environment

More information

3. The Logic of Quantified Statements Summary. Aaron Tan August 2017

3. The Logic of Quantified Statements Summary. Aaron Tan August 2017 3. The Logic of Quantified Statements Summary Aaron Tan 28 31 August 2017 1 3. The Logic of Quantified Statements 3.1 Predicates and Quantified Statements I Predicate; domain; truth set Universal quantifier,

More information

ARMY RDT&E BUDGET ITEM JUSTIFICATION (R-2 Exhibit)

ARMY RDT&E BUDGET ITEM JUSTIFICATION (R-2 Exhibit) ARMY RDT&E BUDGET ITEM JUSTIFICATION (R-2 Exhibit) COST (In Thousands) FY1998 Actual FY 2002 FY 2003 FY2004 FY2005 to Integrated Meteorological System (IMETS) 1823 1777 2318 1782 1918 1911 982 981 8008

More information

David Lanter PhD GISP. Information Security Risks and Controls of Public Geospatial Datasets July 17, 2014

David Lanter PhD GISP. Information Security Risks and Controls of Public Geospatial Datasets July 17, 2014 David Lanter PhD GISP Information Security Risks and Controls of Public Geospatial Datasets July 17, 2014 This Presentation CDM Smith applies GIS and develops custom applications producing, deploying and

More information

Agents that reason logically

Agents that reason logically Artificial Intelligence Sanguk Noh Logical Agents Agents that reason logically A Knowledge-Based Agent. function KB-Agent (percept) returns an action Tell(KB, Make-Percept-Sentence(percept,t)) action Ask(KB,

More information

Logical Agents. Soleymani. Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7

Logical Agents. Soleymani. Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7 Logical Agents CE417: Introduction to Artificial Intelligence Sharif University of Technology Spring 2016 Soleymani Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7 Knowledge-based agents

More information

CS1021. Why logic? Logic about inference or argument. Start from assumptions or axioms. Make deductions according to rules of reasoning.

CS1021. Why logic? Logic about inference or argument. Start from assumptions or axioms. Make deductions according to rules of reasoning. 3: Logic Why logic? Logic about inference or argument Start from assumptions or axioms Make deductions according to rules of reasoning Logic 3-1 Why logic? (continued) If I don t buy a lottery ticket on

More information

Logical Agents. Course material: Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7

Logical Agents. Course material: Artificial Intelligence: A Modern Approach, 3 rd Edition, Chapter 7 Logical Agents CE417: Introduction to Artificial Intelligence Sharif University of Technology Soleymani In which we design agents that can form representations of a complex world, use a process of inference

More information

Pei Wang( 王培 ) Temple University, Philadelphia, USA

Pei Wang( 王培 ) Temple University, Philadelphia, USA Pei Wang( 王培 ) Temple University, Philadelphia, USA Artificial General Intelligence (AGI): a small research community in AI that believes Intelligence is a general-purpose capability Intelligence should

More information

Propositions. c D. Poole and A. Mackworth 2010 Artificial Intelligence, Lecture 5.1, Page 1

Propositions. c D. Poole and A. Mackworth 2010 Artificial Intelligence, Lecture 5.1, Page 1 Propositions An interpretation is an assignment of values to all variables. A model is an interpretation that satisfies the constraints. Often we don t want to just find a model, but want to know what

More information

Last update: March 4, Logical agents. CMSC 421: Chapter 7. CMSC 421: Chapter 7 1

Last update: March 4, Logical agents. CMSC 421: Chapter 7. CMSC 421: Chapter 7 1 Last update: March 4, 00 Logical agents CMSC 4: Chapter 7 CMSC 4: Chapter 7 Outline Knowledge-based agents Wumpus world Logic in general models and entailment Propositional (oolean) logic Equivalence,

More information

Lecture 7: Logical Agents and Propositional Logic

Lecture 7: Logical Agents and Propositional Logic Lecture 7: Logical Agents and Propositional Logic CS 580 (001) - Spring 2018 Amarda Shehu Department of Computer Science George Mason University, Fairfax, VA, USA March 07, 2018 Amarda Shehu (580) 1 1

More information

Logical Agents. Chapter 7

Logical Agents. Chapter 7 Logical Agents Chapter 7 Outline Knowledge-based agents Wumpus world Logic in general - models and entailment Propositional (Boolean) logic Equivalence, validity, satisfiability Inference rules and theorem

More information

Inference Methods In Propositional Logic

Inference Methods In Propositional Logic Lecture Notes, Advanced Artificial Intelligence (SCOM7341) Sina Institute, University of Birzeit 2 nd Semester, 2012 Advanced Artificial Intelligence (SCOM7341) Inference Methods In Propositional Logic

More information

Inf2D 06: Logical Agents: Knowledge Bases and the Wumpus World

Inf2D 06: Logical Agents: Knowledge Bases and the Wumpus World Inf2D 06: Logical Agents: Knowledge Bases and the Wumpus World School of Informatics, University of Edinburgh 26/01/18 Slide Credits: Jacques Fleuriot, Michael Rovatsos, Michael Herrmann Outline Knowledge-based

More information

Enabling ENVI. ArcGIS for Server

Enabling ENVI. ArcGIS for Server Enabling ENVI throughh ArcGIS for Server 1 Imagery: A Unique and Valuable Source of Data Imagery is not just a base map, but a layer of rich information that can address problems faced by GIS users. >

More information

ArcGIS is Advancing. Both Contributing and Integrating many new Innovations. IoT. Smart Mapping. Smart Devices Advanced Analytics

ArcGIS is Advancing. Both Contributing and Integrating many new Innovations. IoT. Smart Mapping. Smart Devices Advanced Analytics ArcGIS is Advancing IoT Smart Devices Advanced Analytics Smart Mapping Real-Time Faster Computing Web Services Crowdsourcing Sensor Networks Both Contributing and Integrating many new Innovations ArcGIS

More information

Knowledge Based Systems: Logic and Deduction

Knowledge Based Systems: Logic and Deduction Knowledge Based Systems: Logic and Deduction Course: CS40002 Instructor: Dr. Pallab Dasgupta Department of Computer Science & Engineering Indian Institute of Technology Kharagpur Knowledge and Reasoning

More information

Adversarial Search & Logic and Reasoning

Adversarial Search & Logic and Reasoning CSEP 573 Adversarial Search & Logic and Reasoning CSE AI Faculty Recall from Last Time: Adversarial Games as Search Convention: first player is called MAX, 2nd player is called MIN MAX moves first and

More information

COMP9414/ 9814/ 3411: Artificial Intelligence. 14. Uncertainty. Russell & Norvig, Chapter 13. UNSW c AIMA, 2004, Alan Blair, 2012

COMP9414/ 9814/ 3411: Artificial Intelligence. 14. Uncertainty. Russell & Norvig, Chapter 13. UNSW c AIMA, 2004, Alan Blair, 2012 COMP9414/ 9814/ 3411: Artificial Intelligence 14. Uncertainty Russell & Norvig, Chapter 13. COMP9414/9814/3411 14s1 Uncertainty 1 Outline Uncertainty Probability Syntax and Semantics Inference Independence

More information

Uncertainty. Logic and Uncertainty. Russell & Norvig. Readings: Chapter 13. One problem with logical-agent approaches: C:145 Artificial

Uncertainty. Logic and Uncertainty. Russell & Norvig. Readings: Chapter 13. One problem with logical-agent approaches: C:145 Artificial C:145 Artificial Intelligence@ Uncertainty Readings: Chapter 13 Russell & Norvig. Artificial Intelligence p.1/43 Logic and Uncertainty One problem with logical-agent approaches: Agents almost never have

More information

Width and Complexity of Belief Tracking in Non-Deterministic Conformant and Contingent Planning

Width and Complexity of Belief Tracking in Non-Deterministic Conformant and Contingent Planning Width and Complexity of Belief Tracking in Non-Deterministic Conformant and Contingent Planning Blai Bonet Universidad Simón Bolívar Caracas, Venezuela bonet@ldc.usb.ve Hector Geffner ICREA & Universitat

More information

INTELLIGENT AUTONOMY FOR MULTIPLE, COORDINATED UAVS

INTELLIGENT AUTONOMY FOR MULTIPLE, COORDINATED UAVS INTELLIGENT AUTONOMY FOR MULTIPLE, COORDINATED UAVS PRESENTED BY: Dr. Lora G. Weiss PRESENTED TO: The Institute for Computational Sciences The Pennsylvania State University January 31, 2005 COORDINATED

More information

CS 561: Artificial Intelligence

CS 561: Artificial Intelligence CS 561: Artificial Intelligence Instructor: TAs: Sofus A. Macskassy, macskass@usc.edu Nadeesha Ranashinghe (nadeeshr@usc.edu) William Yeoh (wyeoh@usc.edu) Harris Chiu (chiciu@usc.edu) Lectures: MW 5:00-6:20pm,

More information

Belief Tracking for Planning with Sensing

Belief Tracking for Planning with Sensing Belief Tracking for Planning with Sensing Blai Bonet Universidad Simón Boĺıvar 2nd Brazilian Conf. on Intelligent Systems (BRACIS) Fortaleza, Brazil 2013 (joint work with Hector Geffner) Recap on Early

More information

2007 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes

2007 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes 2007 IEEE. Personal use of this material is permitted. However, permission to reprint/republish this material for advertising or promotional purposes or for creating new collective works for resale or

More information

CS 331: Artificial Intelligence Propositional Logic I. Knowledge-based Agents

CS 331: Artificial Intelligence Propositional Logic I. Knowledge-based Agents CS 331: Artificial Intelligence Propositional Logic I 1 Knowledge-based Agents Can represent knowledge And reason with this knowledge How is this different from the knowledge used by problem-specific agents?

More information