Introduction to Structural Argumentation

Size: px
Start display at page:

Download "Introduction to Structural Argumentation"

Transcription

1 Introduction to Structural Argumentation Anthony Hunter Department of Computer Science, University College London, UK July 8, / 28

2 Approaches to structured argumentation Some frameworks for structured argumentation Deductive argumentation (Hunter, Besnard, Cayrol, Amgoud, et al) Defeasible logic programming (Simari, et al) Assumption-based argumentation (Toni, et al) ASPIC+ (Prakken, et al) See the special issue in Argument & Computation, volume 5 (1), 2014, for tutorials on each of these frameworks. 2 / 28

3 Overview of structured argumentation Descriptive graphs Generative graphs Counterarguments Arguments Base logic 3 / 28

4 Base logic Choice of base logic Here we focus on simple logic and classical logic, but other options include non-monotonic logics, conditional logics, temporal logics, description logics, and paraconsistent logics. A few definitions for base logic Let L be a language for a logic, and let i be the consequence relation for that logic. If α is an atom in L, then α is a positive literal in L and α is a negative literal in L. For a literal β, the complement of β is defined as follows: If β is a positive literal, i.e. it is of the form α, then the complement of β is the negative literal α, if β is a negative literal, i.e. it is of the form α, then the complement of β is the positive literal α. 4 / 28

5 Arguments Definition for deductive argument A deductive argument is an ordered pair Φ, α where Φ i α. Φ is the support, or premises, or assumptions of the argument, and α is the claim, or conclusion, of the argument. For an argument A = Φ, α, the function Support(A) returns Φ and the function Claim(A) returns α. Examples {report(rain), report(rain) carry(umbrella)}, carry(umbrella) {study(sid, logic), study(sid, logic)}, KingOfFrance(Sid) 5 / 28

6 Arguments The consistency constraint An argument Φ, α satisfies the consistency constraint when Φ is consistent. Example If we assume the consistency constraint, then the following are not arguments. {study(sid, logic), study(sid, logic)}, study(sid, logic) study(sid, logic) {study(sid, logic), study(sid, logic)}, KingOfFrance(Sid) Consistency constraint is not essential If we assume the base logic is a paraconsistent logic (such as Belnap s four valued logic), and we do not impose the consistent constraint, then the following are arguments. {study(sid, logic) study(sid, logic)}, study(sid, logic) {study(sid, logic) study(sid, logic)}, study(sid, logic) 6 / 28

7 Arguments The minimality constraint An argument Φ, α satisfies the minimality constraint when there is no Ψ Φ such that Ψ α. Example If we assume the minimality constraint, then the following is not an argument. {report(rain), report(rain) carry(umbrella), happy(sid)}, carry(umbrella) 7 / 28

8 Arguments based on simple logic Simple logic Simple logic is based on a language of literals and simple rules where each simple rule is of the form α 1... α k β where α 1 to α k and β are literals. The consequence relation is modus ponens (i.e. implication elimination) as defined next. s β iff there is an α 1 α n β and for each α i {α 1,..., α n} either α i or s α i Example Let = {a, b, a b c, c d}. Hence, s c and s d. However, s a and s b. 8 / 28

9 Arguments based on simple logic Simple argument Let be a simple logic knowledgebase. For Φ, and a literal α, Φ, α is a simple argument iff Φ s α and there is no proper subset Φ of Φ such that Φ s α. Example Let p 1, p 2, and p 3 be the following formulae. p 1 = oilcompany(bp) p 2 = goodperformer(bp) p 3 = oilcompany(bp) goodperformer(bp)) goodinvestment(bp) Then {p 1, p 2, p 3}, goodinvestment(bp) is a simple argument. 9 / 28

10 Arguments based on classical logic Classical logic argument A classical logic argument from a set of formulae is a pair Φ, α such that 1 Φ 2 Φ 3 Φ α 4 there is no Φ Φ such that Φ α. Example The following classical argument uses a universally quantified formula in contrapositive reasoning to obtain the following claim about number 77. { X.multipleOfTen(X) even(x), even(77)}, multipleoften(77) 10 / 28

11 Counterarguments based on simple logic Rebut and undercut for simple logic For simple arguments A and B, we consider the following type of simple attack: A is a simple undercut of B if there is a simple rule α 1 α n β in Support(B) and there is an α i {α 1,..., α n} such that Claim(A) is the complement of α i A is a simple rebut of B if Claim(A) is the complement of Claim(B) Examples A 1 = {efficientmetro, efficientmetro usemetro}, usemetro A 2 = {strikemetro, strikemetro efficientmetro}, efficientmetro A 3 = {govdeficit, govdeficit cutgovspending}, cutgovspending A 4 = {weakeconomy, weakeconomy cutgovspending}, cutgovspending 11 / 28

12 Counterarguments based on simple logic Example of defeasible reasoning The first argument A 1 captures the general rule that if workday holds, then usemetro(sid) holds. A 1 = {workday, normal, workday normal usemetro(sid)}, usemetro(sid) A 2 = {workathome(sid), workathome(sid) normal}, normal Here we use normal as an assumption of normality for using the rule. 12 / 28

13 Counterarguments based on classical logic Counterarguments If Φ, α and Ψ, β are arguments, then Φ, α rebuts Ψ, β iff α β Φ, α undercuts Ψ, β iff α Ψ Direct undercut A direct undercut for an argument Φ, α is an argument of the form Ψ, φ i where φ i Φ. Example using classical logic {β, β α}, α rebuts {γ, γ α}, α {γ, γ β}, (β (β α)) undercuts {β, β α}, α {δ β}, β is a direct undercut for {α, β}, α β 13 / 28

14 Counterarguments based on classical logic A rebut denotes a disagreement with the claim, whereas an undercut denotes a disagreement with the support (i.e. a disagreement of the explanation or justification). Example a = garlic is horrible b = this dish contains garlic c = this dish is horrible {a, b, a b c}, c { c}, c { a}, a { a c}, a 14 / 28

15 Counterarguments based on classical logic Example Essentially, the attack says that the flight cannot be both a low cost flight and a luxury flight. {lowcostfly, luxuryfly, lowcostfly luxuryfly goodfly}, goodfly { lowcostfly luxuryfly}, lowcostfly luxuryfly 15 / 28

16 Counterarguments based on classical logic Example with first-order predicate formulae Because Tweety is a bird, and birds fly, there is a bird that flies. But, there is a bird that doesn t fly, and so it is not the case that all birds fly. {bird(tweety), X.bird(X) fly(x)}, X.bird(X ) fly(x) { X.bird(X ) fly(x )}, X.bird(X) fly(x) Another example with first-order predicate formulae Some students know nothing. But, they all know their own name { X. Y. knows(x, Y)}, X. Y. knows(x, Y) { X.knows(X, name(x))}, X, Y.knows(X, Y) 16 / 28

17 Counterarguments based on classical logic Further kinds of classical counterargument Let A and B be two classical arguments. We define the following types of classical attack. A is a classical defeater of B if Claim(A) Support(B). A is a classical direct defeater of B if A is a classical undercut of B if φ Support(B) s.t. Claim(A) φ Ψ Support(B) s.t. Claim(A) Ψ A is a classical direct undercut of B if φ Support(B) s.t. Claim(A) φ A is a classical canonical undercut of B if Claim(A) Support(B). A is a classical rebuttal of B if Claim(A) Claim(B). A is a classical defeating rebuttal of B if Claim(A) Claim(B). 17 / 28

18 Counterarguments based on classical logic Examples of attack functions/relations {a b, c}, (a b) c is a classical defeater of { a, b}, a b {a b, c}, (a b) c is a classical direct defeater of { a b}, a b { a b}, (a b) is a classical undercut of {a, b, c}, a b c { a b}, a is a classical direct undercut of {a, b, c}, a b c { a b}, (a b c) is a classical canonical undercut of {a, b, c}, a b c {a, a b}, b c is a classical rebuttal of { a b, c}, (b c) {a, a b}, b is a classical defeating rebuttal of { a b, c}, (b c) 18 / 28

19 Counterarguments based on classical logic An arrow from D 1 to D 2 indicates that D 1 D 2. Defeater Direct defeat Undercut Direct rebut Direct undercut Canonical undercut Rebut 19 / 28

20 Argument graphs Approaches to generating argument graphs Descriptive graphs Here we assume that the structure of the argument graph is given, and the task is to identify the premises and claim of each argument. Therefore the input is an abstract argument graph, and the output is an instantiated argument graph. Generative graphs Here we assume that we start with a knowledgebase (i.e. a set of logical formula), and the task is to generate the arguments and counterarguments (and hence the attacks between arguments). Therefore, the input is a knowledgebase, and the output is an instantiated argument graph. 20 / 28

21 Argument graphs Example of abstract graph and descriptive graph The flight is low cost and luxury, therefore it is a good flight A flight cannot be both low cost and luxury A 1 = {lowcostfly, luxuryfly, lowcostfly luxuryfly goodfly}, goodfly A 2 = { (lowcostfly luxuryfly)}, lowcostfly luxuryfly 21 / 28

22 Argument graphs Example of abstract graph A 1 = Patient has hypertension so prescribe diuretics A 2 = Patient has hypertension so prescribe betablockers A 3 = Patient has emphysema which is a contraindication for betablockers 22 / 28

23 Argument graphs Example of descriptive graph using classical logic with integrity constraint bp(high) ok(diuretic) bp(high) ok(diuretic) give(diuretic) ok(diuretic) ok(betablocker) bp(high) ok(betablocker) bp(high) ok(betablocker) give(betablocker) ok(diuretic) ok(betablocker) give(diuretic) ok(betablocker) give(betablocker) ok(diuretic) symptom(emphysema), symptom(emphysema) ok(betablocker) ok(betablocker) 23 / 28

24 Argument graphs Example of generative graph using simple logic Let = {a, b, c, a c a, b c, a c b}. {a, c, a c a}, a {a, c, a c b}, b {b, b c}, c 24 / 28

25 Argument graphs Example of generative graph using classical logic Consider = {a, b, a a, b a, a b}, let the arguments be those that involves one or more rules. {c, b c}, b {b, b c}, c {b, a b}, a {a, a b}, b {c, c a}, a {a, c a}, c 25 / 28

26 Need for meta-level information Normally, meta-level information is also needed for logical argumentation. Examples of meta-level information Preferences over formulae to give a preference over arguments [see for example Amgoud and Cayrol 2002]. Preference for premises that are based on more reliable sources Preference for claims that meet more important goals Use probability theory to quantify uncertainty of each argument (e.g. probability that premises are true, or probability that the argument comes from a reliable source, etc). Use meta-level argumentation to reason about the quality of arguments (e.g. argumentation about whether proponents for arguments are qualified to argue about a topic). 26 / 28

27 Probabilistic logic Drug X is an effective treatment for improving survival However, strokes are a serious side-effect p = problematic treatment, s = effective treatment for improving survival, r = strokes are a serious side-effect. A 1 = { p, p s}, s A 2 = {r, r p}, p Model p s r P m 1 false true true 0.35 m 2 false true false 0.35 m 3 true true true 0.12 m 4 true false true 0.18 P(A 1) = P(m 1) + P(m 2) = 0.7 P(A 2) = P(m 3) + P(m 4) = / 28

28 Conclusions Argumentation is an important cognitive process for dealing with incomplete and inconsistent information. Computational models of argument provide a range of insights into argumentation. Abstract argumentation captures the dialectical nature of argumentation. Logical argumentation captures the internal structure of arguments and attacks. Dialogical argumentation captures protocols and strategies for multiple agents to argue together. Argumentation technology offers promising solutions for a range of applications. Many interesting and important research questions remain (e.g. using richer formalisms from computational linguistics such as discourse representation theory) 28 / 28

Introduction to Structured Argumentation

Introduction to Structured Argumentation Introduction to Structured Argumentation Anthony Hunter Department of Computer Science, University College London, UK April 15, 2016 1 / 42 Computational models of argument Abstract argumentation Structured

More information

A Review of Argumentation Based on Deductive Arguments

A Review of Argumentation Based on Deductive Arguments 1 A Review of Argumentation Based on Deductive Arguments Philippe Besnard, Anthony Hunter abstract. A deductive argument is a pair where the first item is a set of premises, the second item is a claim,

More information

Introduction to Structured Argumentation

Introduction to Structured Argumentation Introduction to Structured Argumentation Anthony Hunter Department of Computer Science, University College London, UK September 6, 2016 1 / 134 Computational models of argument 1 Introduction 2 Framework

More information

Introduction to Computational Argumentation

Introduction to Computational Argumentation Introduction to Computational Argumentation Anthony Hunter Department of Computer Science University College London London, UK September 21, 2018 1 / 45 Overview 1 What is argumentation? 2 Key dimensions

More information

Reasoning about the Appropriateness of Proponents for Arguments

Reasoning about the Appropriateness of Proponents for Arguments Reasoning about the Appropriateness of Proponents for Arguments Anthony Hunter Department of Computer Science University College London Gower Street, London WC1E 6BT, UK Abstract Formal approaches to modelling

More information

Abstract Rule-Based Argumentation

Abstract Rule-Based Argumentation 1 Abstract Rule-Based Argumentation Sanjay Modgil, Henry Prakken abstract. This chapter reviews abstract rule-based approaches to argumentation, in particular the ASPIC + framework. In ASPIC + and its

More information

Argumentation-Based Models of Agent Reasoning and Communication

Argumentation-Based Models of Agent Reasoning and Communication Argumentation-Based Models of Agent Reasoning and Communication Sanjay Modgil Department of Informatics, King s College London Outline Logic and Argumentation - Dung s Theory of Argumentation - The Added

More information

A Sequent-Based Representation of Logical Argumentation

A Sequent-Based Representation of Logical Argumentation A Sequent-Based Representation of Logical Argumentation Ofer Arieli School of Computer Science, The Academic College of Tel-Aviv, Israel. oarieli@mta.ac.il Abstract. In this paper we propose a new presentation

More information

Tutorial: Nonmonotonic Logic

Tutorial: Nonmonotonic Logic Tutorial: Nonmonotonic Logic PhDs in Logic (2017) Christian Straßer May 2, 2017 Outline Defeasible Reasoning Scratching the Surface of Nonmonotonic Logic 1/52 Defeasible Reasoning What is defeasible reasoning?

More information

ESSENCE 2014: Argumentation-Based Models of Agent Reasoning and Communication

ESSENCE 2014: Argumentation-Based Models of Agent Reasoning and Communication ESSENCE 2014: Argumentation-Based Models of Agent Reasoning and Communication Sanjay Modgil Department of Informatics, King s College London Outline Logic, Argumentation and Reasoning - Dung s Theory of

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

Argumentation among Agents

Argumentation among Agents Argumentation among Agents Iyad Rahwan 1 Masdar Institute of Science & Technology, UAE 2 University of Edinburgh, UK 3 Massachusetts Institute of Technology, USA I. Rahwan. Argumentation among Agents.

More information

Identifying the Class of Maxi-Consistent Operators in Argumentation

Identifying the Class of Maxi-Consistent Operators in Argumentation Journal of Artificial Intelligence Research 47 (2013) 71-93 Submitted 11/12; published 05/13 Identifying the Class of Maxi-Consistent Operators in Argumentation Srdjan Vesic CRIL - CNRS Rue Jean Souvraz

More information

Formalising a legal opinion on a legislative proposal in the ASPIC + framework

Formalising a legal opinion on a legislative proposal in the ASPIC + framework Formalising a legal opinion on a legislative proposal in the ASPIC + framework Henry Prakken Department of Information and Computing Sciences, University of Utrecht and Faculty of Law, University of Groningen,

More information

On the Relationship of Defeasible Argumentation and Answer Set Programming

On the Relationship of Defeasible Argumentation and Answer Set Programming On the Relationship of Defeasible Argumentation and Answer Set Programming Matthias Thimm a Gabriele Kern-Isberner a a Information Engineering Group, Department of Computer Science University of Dortmund,

More information

Taking the A-chain: Strict and Defeasible Implication in Argumentation Frameworks

Taking the A-chain: Strict and Defeasible Implication in Argumentation Frameworks Taking the A-chain: Strict and Defeasible Implication in Argumentation Frameworks Adam Zachary Wyner and Trevor Bench-Capon University of Liverpool Department of Computer Science Ashton Building Liverpool,

More information

Argumentation with Abduction

Argumentation with Abduction Argumentation with Abduction Neophytos Demetriou Dept. of Computer Science University of Cyprus Nicosia CY-1678, Cyprus nkd@cs.ucy.ac.cy Tel.: (+357) 22892673 Antonis Kakas Dept. of Computer Science University

More information

Pollock s undercutting defeat

Pollock s undercutting defeat Argumentation in Artificial Intelligence, With Alications in the Law Course at the Institute of Logic and Cognition, Sun Yat-Sen University Ib Abstract Argumentation and Argument Structure Bart Verheij

More information

Postulates for logic-based argumentation systems

Postulates for logic-based argumentation systems Postulates for logic-based argumentation systems Leila Amgoud IRIT CNRS Toulouse France Abstract Logic-based argumentation systems are developed for reasoning with inconsistent information. Starting from

More information

Resolving Incompatibilities among Procedural Goals under Uncertainty

Resolving Incompatibilities among Procedural Goals under Uncertainty Resolving Incompatibilities among Procedural Goals under Uncertainty Mariela Morveli-Espinoza 1, Juan Carlos Nieves 2, Ayslan Possebom 1, and Cesar Augusto Tacla 1 1 Federal University of Technology -

More information

On the Instantiation of Knowledge Bases in Abstract Argumentation Frameworks

On the Instantiation of Knowledge Bases in Abstract Argumentation Frameworks On the Instantiation of Knowledge Bases in Abstract Argumentation Frameworks Adam Wyner 1, Trevor Bench-Capon 2, and Paul Dunne 2 1 Department of Computing Science, University of Aberdeen, Aberdeen, United

More information

Justified argument revision in agent dialogue

Justified argument revision in agent dialogue Justified argument revision in agent dialogue Mark Snaith and Chris Reed School of Computing, University of Dundee, Dundee, DD1 4HN, UK {marksnaith,chris}@computing.dundee.ac.uk Abstract. In certain dialogue

More information

An abstract framework for argumentation with structured arguments

An abstract framework for argumentation with structured arguments An abstract framework for argumentation with structured arguments Henry Prakken Technical Report UU-CS-2009-019 September 2009 Department of Information and Computing Sciences Utrecht University, Utrecht,

More information

On the Complexity of Linking Deductive and Abstract Argument Systems

On the Complexity of Linking Deductive and Abstract Argument Systems On the Complexity of Linking Deductive and Abstract Argument Systems Michael Wooldridge and Paul E. Dunne Dept of Computer Science University of Liverpool Liverpool L69 3BX, UK mjw,ped@csc.liv.ac.uk Simon

More information

Towards an integrated theory of causal scenarios and evidential arguments

Towards an integrated theory of causal scenarios and evidential arguments Towards an integrated theory of causal scenarios and evidential arguments Floris BEX Department of Information and Computing Sciences, Utrecht University Abstract. The process of proof is one of inference

More information

Preference-based Argumentation

Preference-based Argumentation Preference-based Argumentation Yannis Dimopoulos Department of Computer Science University of Cyprus Nicosia, Cyprus Joint work with Leila Amgoud (IRIT, Toulouse) and Pavlos Moraitis (Uni Paris 5) Y. Dimopoulos

More information

Contamination in Formal Argumentation Systems

Contamination in Formal Argumentation Systems Contamination in Formal Argumentation Systems Martin Caminada a a Utrecht University, P.O.Box 80089, 3508TB Utrecht Abstract Over the last decennia, many systems for formal argumentation have been defined.

More information

A Brief Introduction to Nonmonotonic Reasoning

A Brief Introduction to Nonmonotonic Reasoning A Brief Introduction to Nonmonotonic Reasoning Gerhard Brewka, Stefan Woltran Computer Science Institute University of Leipzig [brewka,woltran]@informatik.uni-leipzig.de G. Brewka, S. Woltran (Leipzig)

More information

Relevance in Structured Argumentation

Relevance in Structured Argumentation Relevance in Structured Argumentation AnneMarie Borg and Christian Straßer, Ruhr-University Bochum, Germany annemarie.borg@rub.de, christian.strasser@rub.de Abstract We study properties related to relevance

More information

Paraconsistent Logics in Argumentation Systems

Paraconsistent Logics in Argumentation Systems UTRECHT UNIVERSITY Paraconsistent Logics in Argumentation Systems by Diana Grooters ICA-3470857 Supervised by Henry Prakken A thesis submitted in partial fulfilment for the degree of Master of Science

More information

MULTI-AGENT ONLY-KNOWING

MULTI-AGENT ONLY-KNOWING MULTI-AGENT ONLY-KNOWING Gerhard Lakemeyer Computer Science, RWTH Aachen University Germany AI, Logic, and Epistemic Planning, Copenhagen October 3, 2013 Joint work with Vaishak Belle Contents of this

More information

An approach for an algebra applied to a Defeasible Logic Programming

An approach for an algebra applied to a Defeasible Logic Programming An approach for an algebra applied to a Defeasible Logic Programming Maximiliano C. D. Budán, Mauro J. Gómez Lucero, Guillermo R. Simari Consejo Nacional de Investigaciones Científicas y Técnicas (CONICET)

More information

Conflict Resolution in Assumption-Based Frameworks

Conflict Resolution in Assumption-Based Frameworks Conflict Resolution in Assumption-Based Frameworks Martin Baláž 1, Jozef Frtús 1, Giorgos Flouris 2, Martin Homola 1, and Ján Šefránek 1 1 Comenius University in Bratislava, Slovakia 2 FORTH-ICS, Greece

More information

Commonsense Reasoning and Argumentation

Commonsense Reasoning and Argumentation DEPARTMENT OF INFORMATION AND COMPUTING SCIENCES UTRECHT UNIVERSITY FEBRUARY 2018 Commonsense Reasoning and Argumentation Author: HENRY PRAKKEN Contents 1 Circumscription 9 1.1 The basic idea: model preference.....................

More information

Corrigendum for: A General Account of Argumentation with Preferences

Corrigendum for: A General Account of Argumentation with Preferences Corrigendum for: A General Account of Argumentation with Preferences Sanjay Modgil 1 and Henry Prakken 2 1. Department of Infomatics, King s College London (sanjay.modgil@kcl.ac.uk) 2. Department of Information

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

Nonmonotonic Tools for Argumentation

Nonmonotonic Tools for Argumentation Nonmonotonic Tools for Argumentation Gerhard Brewka Computer Science Institute University of Leipzig brewka@informatik.uni-leipzig.de joint work with Stefan Woltran G. Brewka (Leipzig) CILC 2010 1 / 38

More information

Explanations, Belief Revision and Defeasible Reasoning

Explanations, Belief Revision and Defeasible Reasoning Explanations, Belief Revision and Defeasible Reasoning Marcelo A. Falappa a Gabriele Kern-Isberner b Guillermo R. Simari a a Artificial Intelligence Research and Development Laboratory Department of Computer

More information

Two sources of explosion

Two sources of explosion Two sources of explosion Eric Kao Computer Science Department Stanford University Stanford, CA 94305 United States of America Abstract. In pursuit of enhancing the deductive power of Direct Logic while

More information

Constellations and Epistemic Approaches to Probabilistic Argumentation

Constellations and Epistemic Approaches to Probabilistic Argumentation Constellations and Epistemic Approaches to Probabilistic Argumentation Anthony Hunter 1 Department of Computer Science University College London October 20, 2016 1 Some of the work in this talk was done

More information

Introduction to Isabelle/HOL

Introduction to Isabelle/HOL Introduction to Isabelle/HOL 1 Notes on Isabelle/HOL Notation In Isabelle/HOL: [ A 1 ;A 2 ; ;A n ]G can be read as if A 1 and A 2 and and A n then G 3 Note: -Px (P x) stands for P (x) (P(x)) -P(x, y) can

More information

Argumentation for Propositional Logic and Nonmonotonic Reasoning

Argumentation for Propositional Logic and Nonmonotonic Reasoning Argumentation for Propositional Logic and Nonmonotonic Reasoning Antonis Kakas, Francesca Toni, and Paolo Mancarella 1 University of Cyprus, Cyprus antonis@cs.ucy.ac.cy 2 Imperial College London, UK ft@imperial.ac.uk

More information

Advances in Argumentation-Based Negotiation

Advances in Argumentation-Based Negotiation Send Orders for Reprints to reprints@benthamscience.net 82 Negotiation and Argumentation in Multi-agent Systems, 2014, 82-125 CHAPTER 4 Advances in Argumentation-Based Negotiation Yannis Dimopoulos 1 and

More information

A. Propositional Logic

A. Propositional Logic CmSc 175 Discrete Mathematics A. Propositional Logic 1. Statements (Propositions ): Statements are sentences that claim certain things. Can be either true or false, but not both. Propositional logic deals

More information

CogSysI Lecture 9: Non-Monotonic and Human Reasoning

CogSysI Lecture 9: Non-Monotonic and Human Reasoning CogSysI Lecture 9: Non-Monotonic and Human Reasoning Intelligent Agents WS 2004/2005 Part II: Inference and Learning Non-Monotonic and Human Reasoning CogSysI Lecture 9: Non-Monotonic and Human Reasoning

More information

MAKING ARGUMENT SYSTEMS COMPUTATIONALLY ATTRACTIVE Argument Construction and Maintenance 1

MAKING ARGUMENT SYSTEMS COMPUTATIONALLY ATTRACTIVE Argument Construction and Maintenance 1 MAKING ARGUMENT SYSTEMS COMPUTATIONALLY ATTRACTIVE Argument Construction and Maintenance 1 Alejandro J. García, Carlos I. Chesñevar, and Guillermo R. Simari 2 Departamento de Matemática, Universidad Nacional

More information

COMP310 MultiAgent Systems. Chapter 16 - Argumentation

COMP310 MultiAgent Systems. Chapter 16 - Argumentation COMP310 MultiAgent Systems Chapter 16 - Argumentation Argumentation Argumentation is the process of attempting to agree about what to believe. Only a question when information or beliefs are contradictory.

More information

The Role of Dialectics in Defeasible Argumentation 1 2

The Role of Dialectics in Defeasible Argumentation 1 2 The Role of Dialectics in Defeasible Argumentation 1 2 Guillermo R. Simari Carlos I. Chesñevar Alejandro J. García Grupo de Investigación en Inteligencia Artificial (GIIA) Departamento de Matemática, Universidad

More information

arxiv: v2 [cs.ai] 1 Jul 2015

arxiv: v2 [cs.ai] 1 Jul 2015 Argumentation Semantics for Prioritised Default Logic arxiv:1506.08813v2 [cs.ai] 1 Jul 2015 Anthony P. Young, Sanjay Modgil, Odinaldo Rodrigues 1st July 2015 Abstract We endow prioritised default logic

More information

Argumentation and rules with exceptions

Argumentation and rules with exceptions Argumentation and rules with exceptions Bart VERHEIJ Artificial Intelligence, University of Groningen Abstract. Models of argumentation often take a given set of rules or conditionals as a starting point.

More information

Tutorial: Nonmonotonic Logic (Day 1)

Tutorial: Nonmonotonic Logic (Day 1) Tutorial: Nonmonotonic Logic (Day 1) Christian Straßer Institute for Philosophy II, Ruhr-University Bochum Center for Logic and Philosophy of Science, Ghent University http://homepage.ruhr-uni-bochum.de/defeasible-reasoning/index.html

More information

Resolutions in Structured Argumentation

Resolutions in Structured Argumentation Resolutions in Structured Argumentation Sanjay Modgil a Henry Prakken b a Department of Informatics, King s ollege London, UK b Department of Information and omputing Sciences, University of Utrecht and

More information

On the Semantics of Simple Contrapositive Assumption-Based Argumentation Frameworks

On the Semantics of Simple Contrapositive Assumption-Based Argumentation Frameworks On the Semantics of Simple Contrapositive Assumption-Based Argumentation Frameworks Jesse Heyninck 1 and Ofer Arieli 2 Institute of Philosophy II, Ruhr University Bochum, Germany School of Computer Science,

More information

Dialectical Frameworks: Argumentation Beyond Dung

Dialectical Frameworks: Argumentation Beyond Dung Dialectical Frameworks: Argumentation Beyond Dung Gerhard Brewka Computer Science Institute University of Leipzig brewka@informatik.uni-leipzig.de joint work with Stefan Woltran G. Brewka (Leipzig) NMR

More information

COMP310 Multi-Agent Systems Chapter 16 - Argumentation. Dr Terry R. Payne Department of Computer Science

COMP310 Multi-Agent Systems Chapter 16 - Argumentation. Dr Terry R. Payne Department of Computer Science COMP310 Multi-Agent Systems Chapter 16 - Argumentation Dr Terry R. Payne Department of Computer Science Overview How do agents agree on what to believe? In a court of law, barristers present a rationally

More information

Default Logic Autoepistemic Logic

Default Logic Autoepistemic Logic Default Logic Autoepistemic Logic Non-classical logics and application seminar, winter 2008 Mintz Yuval Introduction and Motivation Birds Fly As before, we are troubled with formalization of Non-absolute

More information

Modeling Defeasible Argumentation within a Possibilistic Logic Framework with Fuzzy Unification

Modeling Defeasible Argumentation within a Possibilistic Logic Framework with Fuzzy Unification Modeling Defeasible Argumentation within a Possibilistic Logic Framework with Fuzzy Unification Teresa Alsinet Carlos I. Chesñevar Dept. of Computer Science University of Lleida, Spain {tracy,cic}@eps.udl.es

More information

Chapter 3: Propositional Calculus: Deductive Systems. September 19, 2008

Chapter 3: Propositional Calculus: Deductive Systems. September 19, 2008 Chapter 3: Propositional Calculus: Deductive Systems September 19, 2008 Outline 1 3.1 Deductive (Proof) System 2 3.2 Gentzen System G 3 3.3 Hilbert System H 4 3.4 Soundness and Completeness; Consistency

More information

Argumentative Characterisations of Non-monotonic Inference in Preferred Subtheories: Stable Equals Preferred

Argumentative Characterisations of Non-monotonic Inference in Preferred Subtheories: Stable Equals Preferred Argumentative Characterisations of Non-monotonic Inference in Preferred Subtheories: Stable Equals Preferred Sanjay Modgil November 17, 2017 Abstract A number of argumentation formalisms provide dialectical

More information

Polarization and Bipolar Probabilistic Argumentation Frameworks

Polarization and Bipolar Probabilistic Argumentation Frameworks Polarization and Bipolar Probabilistic Argumentation Frameworks Carlo Proietti Lund University Abstract. Discussion among individuals about a given issue often induces polarization and bipolarization effects,

More information

Tackling Defeasible Reasoning in Bochum:

Tackling Defeasible Reasoning in Bochum: Tackling Defeasible Reasoning in Bochum: the Research Group for Non-Monotonic Logic and Formal Argumentation Christian Straßer and Dunja Šešelja April 10, 2017 Outline The NMLFA Reasoning by Cases Unrestricted

More information

Probabilistic Strength of Arguments with Structure

Probabilistic Strength of Arguments with Structure Probabilistic Strength of Arguments with Structure Henry Prakken Department of Information and Computing Sciences, Utrecht University & Faculty of Law, University of Groningen The Netherlands Abstract

More information

Characterization of Semantics for Argument Systems

Characterization of Semantics for Argument Systems Characterization of Semantics for Argument Systems Philippe Besnard and Sylvie Doutre IRIT Université Paul Sabatier 118, route de Narbonne 31062 Toulouse Cedex 4 France besnard, doutre}@irit.fr Abstract

More information

From Arguments to Constraints on a Bayesian Network

From Arguments to Constraints on a Bayesian Network From Arguments to Constraints on a Bayesian Network Floris BEX a, Silja RENOOIJ a a Information and Computing Sciences, Utrecht University, The Netherlands Abstract. In this paper, we propose a way to

More information

Using Enthymemes in an Inquiry Dialogue System

Using Enthymemes in an Inquiry Dialogue System Using Enthymemes in an Inquiry Dialogue System Elizabeth Black Department of Engineering Science University of Oxford Oxford, UK lizblack@robots.ox.ac.uk Anthony Hunter Department of Computer Science University

More information

Revisiting Unrestricted Rebut and Preferences in Structured Argumentation.

Revisiting Unrestricted Rebut and Preferences in Structured Argumentation. Revisiting Unrestricted Rebut and Preferences in Structured Argumentation. Jesse Heyninck and Christian Straßer Ruhr University Bochum, Germany jesse.heyninck@rub.de, christian.strasser@rub.de Abstract

More information

Properties for a Formal Model of Collaborative Dialogue

Properties for a Formal Model of Collaborative Dialogue Properties for a Formal Model of Collaborative Dialogue M. Julieta Marcos Marcelo A. Falappa Guillermo R. Simari Consejo Nacional de Investigaciones Científicas y Técnicas (CONICET), Laboratorio de Investigación

More information

On Logical Reifications of the Argument Interchange Format

On Logical Reifications of the Argument Interchange Format On Logical Reifications of the Argument Interchange Format Floris Bex a, Sanjay Modgil b Henry Prakken c Chris Reed a a School of Computing, University of Dundee b Department of Informatics, King s College

More information

Computing Dialectical Trees Efficiently in Possibilistic Defeasible Logic Programming

Computing Dialectical Trees Efficiently in Possibilistic Defeasible Logic Programming Computing Dialectical Trees Efficiently in Possibilistic Defeasible Logic Programming Carlos I. Chesñevar 1, Guillermo R. Simari 2, and Lluis Godo 3 1 Departament of Computer Science Universitat de Lleida

More information

EECS 1028 M: Discrete Mathematics for Engineers

EECS 1028 M: Discrete Mathematics for Engineers EECS 1028 M: Discrete Mathematics for Engineers Suprakash Datta Office: LAS 3043 Course page: http://www.eecs.yorku.ca/course/1028 Also on Moodle S. Datta (York Univ.) EECS 1028 W 18 1 / 21 Predicate Logic

More information

An argumentation system for defeasible reasoning 1

An argumentation system for defeasible reasoning 1 An argumentation system for defeasible reasoning 1 Leila Amgoud 1 Farid Nouioua 2 1 IRIT CNRS, France 2 LSIS Aix-Marseille University, France Abstract Rule-based argumentation systems are developed for

More information

Nonmonotonic Logic. Daniel Bonevac. April 16, Accident victims who are cool to the touch may be in shock.

Nonmonotonic Logic. Daniel Bonevac. April 16, Accident victims who are cool to the touch may be in shock. Nonmonotonic Logic Daniel Bonevac April 16, 2012 We organize our thought with general principles: 1. 2. Acids are corrosive. 3. Handguns are dangerous. 4. Promises ought to be kept. 5. What goes up must

More information

Practical First-order Argumentation

Practical First-order Argumentation Practical First-order Argumentation Philippe Besnard IRIT-CNRS, Université Paul Sabatier, 118 rte de Narbonne, 31062 Toulouse, France Anthony Hunter Department of Computer Science, University College London,

More information

Maximal ideal recursive semantics for defeasible argumentation

Maximal ideal recursive semantics for defeasible argumentation Maximal ideal recursive semantics for defeasible argumentation Teresa Alsinet 1, Ramón Béjar 1, Lluis Godo 2, and Francesc Guitart 1 1 Department of Computer Science University of Lleida Jaume II, 69 251

More information

An axiomatic approach for persuasion dialogs

An axiomatic approach for persuasion dialogs An axiomatic approach for persuasion dialogs Leila Amgoud IRIT - CNRS 118, route de Narbonne, 31062 Toulouse Cedex 9 France amgoud@irit.fr Florence Dupin de Saint-Cyr IRIT - Université de Toulouse 118,

More information

Proseminar on Semantic Theory Fall 2013 Ling 720 Propositional Logic: Syntax and Natural Deduction 1

Proseminar on Semantic Theory Fall 2013 Ling 720 Propositional Logic: Syntax and Natural Deduction 1 Propositional Logic: Syntax and Natural Deduction 1 The Plot That Will Unfold I want to provide some key historical and intellectual context to the model theoretic approach to natural language semantics,

More information

Reasoning by Cases in Structured Argumentation.

Reasoning by Cases in Structured Argumentation. . Jesse Heyninck, Mathieu Beirlaen and Christian Straßer Workgroup for Non-Monotonic Logics and Formal Argumentation Institute for Philosophy II Ruhr University Bochum The 32nd ACM SIGAPP Symposium On

More information

Gödel s Incompleteness Theorems by Sally Cockburn (2016)

Gödel s Incompleteness Theorems by Sally Cockburn (2016) Gödel s Incompleteness Theorems by Sally Cockburn (2016) 1 Gödel Numbering We begin with Peano s axioms for the arithmetic of the natural numbers (ie number theory): (1) Zero is a natural number (2) Every

More information

Maximal Introspection of Agents

Maximal Introspection of Agents Electronic Notes in Theoretical Computer Science 70 No. 5 (2002) URL: http://www.elsevier.nl/locate/entcs/volume70.html 16 pages Maximal Introspection of Agents Thomas 1 Informatics and Mathematical Modelling

More information

An Argumentation-Theoretic Characterization of Defeasible Logic

An Argumentation-Theoretic Characterization of Defeasible Logic An Argumentation-Theoretic Characterization of Defeasible Logic G. Governatori and M.J. Maher 1 Abstract. Defeasible logic is an efficient non-monotonic logic that is defined only proof-theoretically.

More information

Formal Methods of Argumentation as Models of Engineering Design Decisions and Processes

Formal Methods of Argumentation as Models of Engineering Design Decisions and Processes Formal Methods of Argumentation as Models of Engineering Design Decisions and Processes Jann Müller A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy

More information

Math.3336: Discrete Mathematics. Nested Quantifiers/Rules of Inference

Math.3336: Discrete Mathematics. Nested Quantifiers/Rules of Inference Math.3336: Discrete Mathematics Nested Quantifiers/Rules of Inference Instructor: Dr. Blerina Xhabli Department of Mathematics, University of Houston https://www.math.uh.edu/ blerina Email: blerina@math.uh.edu

More information

Adam Blank Spring 2017 CSE 311. Foundations of Computing I

Adam Blank Spring 2017 CSE 311. Foundations of Computing I Adam Blank Spring 2017 CSE 311 Foundations of Computing I Pre-Lecture Problem Suppose that p, and p (q r) are true. Is q true? Can you prove it with equivalences? CSE 311: Foundations of Computing Lecture

More information

Conditionals. Daniel Bonevac. February 12, 2013

Conditionals. Daniel Bonevac. February 12, 2013 Neighborhood February 12, 2013 Neighborhood are sentences formed, in English, with the particle if. Some are indicative; some are subjunctive. They are not equivalent, as this pair seems to show: 1. If

More information

Focused search for arguments from propositional knowledge

Focused search for arguments from propositional knowledge Focused search for arguments from propositional knowledge Department of Computer Science University College London Contents Introduction: Framework for argumentation and motivation for efficient search

More information

Predicate Logic. Andreas Klappenecker

Predicate Logic. Andreas Klappenecker Predicate Logic Andreas Klappenecker Predicates A function P from a set D to the set Prop of propositions is called a predicate. The set D is called the domain of P. Example Let D=Z be the set of integers.

More information

PHIL 50 - Introduction to Logic

PHIL 50 - Introduction to Logic Truth Validity Logical Consequence Equivalence V ψ ψ φ 1, φ 2,, φ k ψ φ ψ PHIL 50 - Introduction to Logic Marcello Di Bello, Stanford University, Spring 2014 Week 2 Friday Class Overview of Key Notions

More information

Proofs. Example of an axiom in this system: Given two distinct points, there is exactly one line that contains them.

Proofs. Example of an axiom in this system: Given two distinct points, there is exactly one line that contains them. Proofs A mathematical system consists of axioms, definitions and undefined terms. An axiom is assumed true. Definitions are used to create new concepts in terms of existing ones. Undefined terms are only

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

Encoding Deductive Argumentation in Quantified Boolean Formulae

Encoding Deductive Argumentation in Quantified Boolean Formulae Encoding Deductive Argumentation in Quantified Boolean Formulae Philippe Besnard IRIT-CNRS, Universitè Paul Sabatier, 118 rte de Narbonne, 31062 Toulouse, France Anthony Hunter Department of Computer Science,

More information

Argument-based Expansion Operators in Possibilistic Defeasible Logic Programming: Characterization and Logical Properties

Argument-based Expansion Operators in Possibilistic Defeasible Logic Programming: Characterization and Logical Properties Argument-based Expansion Operators in Possibilistic Defeasible Logic Programming: Characterization and Logical Properties 2 Carlos I. Chesñevar 1, Guillermo R. Simari 2, Lluis Godo 3, and Teresa Alsinet

More information

Chapter 3. The Logic of Quantified Statements

Chapter 3. The Logic of Quantified Statements Chapter 3. The Logic of Quantified Statements 3.1. Predicates and Quantified Statements I Predicate in grammar Predicate refers to the part of a sentence that gives information about the subject. Example:

More information

Intelligent Agents. First Order Logic. Ute Schmid. Cognitive Systems, Applied Computer Science, Bamberg University. last change: 19.

Intelligent Agents. First Order Logic. Ute Schmid. Cognitive Systems, Applied Computer Science, Bamberg University. last change: 19. Intelligent Agents First Order Logic Ute Schmid Cognitive Systems, Applied Computer Science, Bamberg University last change: 19. Mai 2015 U. Schmid (CogSys) Intelligent Agents last change: 19. Mai 2015

More information

On the Semantics of Simple Contrapositive Assumption-Based Argumentation Frameworks

On the Semantics of Simple Contrapositive Assumption-Based Argumentation Frameworks On the Semantics of Simple Contrapositive Assumption-Based Argumentation Frameworks Jesse HEYNINCK a,1 and Ofer ARIELI b,2 a Institute of Philosophy II, Ruhr University Bochum, Germany b School of Computer

More information

Notes on Modal Logic

Notes on Modal Logic Notes on Modal Logic Notes for Philosophy 151 Eric Pacuit January 25, 2009 These short notes are intended to supplement the lectures and text ntroduce some of the basic concepts of Modal Logic. The primary

More information

Logic and Proofs 1. 1 Overview. 2 Sentential Connectives. John Nachbar Washington University December 26, 2014

Logic and Proofs 1. 1 Overview. 2 Sentential Connectives. John Nachbar Washington University December 26, 2014 John Nachbar Washington University December 26, 2014 Logic and Proofs 1 1 Overview. These notes provide an informal introduction to some basic concepts in logic. For a careful exposition, see, for example,

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

Debate Games in Logic Programming

Debate Games in Logic Programming Debate Games in Logic Programming Chiaki Sakama Department of Computer and Communication Sciences Wakayama University, Sakaedani, Wakayama 640-8510, Japan sakama@sys.wakayama-u.ac.jp Abstract. A debate

More information

Mathematics 114L Spring 2018 D.A. Martin. Mathematical Logic

Mathematics 114L Spring 2018 D.A. Martin. Mathematical Logic Mathematics 114L Spring 2018 D.A. Martin Mathematical Logic 1 First-Order Languages. Symbols. All first-order languages we consider will have the following symbols: (i) variables v 1, v 2, v 3,... ; (ii)

More information

Argument. whenever all the assumptions are true, then the conclusion is true. If today is Wednesday, then yesterday is Tuesday. Today is Wednesday.

Argument. whenever all the assumptions are true, then the conclusion is true. If today is Wednesday, then yesterday is Tuesday. Today is Wednesday. Logic and Proof Argument An argument is a sequence of statements. All statements but the first one are called assumptions or hypothesis. The final statement is called the conclusion. An argument is valid

More information