Deductive Reasoning: Propositional Logic

Slides:



Advertisements
Similar presentations
Rules of Inferences Section 1.5. Definitions Argument: is a sequence of propositions (premises) that end with a proposition called conclusion. Valid Argument:
Advertisements

1 Introduction to Abstract Mathematics Valid AND Invalid Arguments 2.3 Instructor: Hayk Melikya
CS128 – Discrete Mathematics for Computer Science
Laws of , , and  Excluded middle law Contradiction law P   P  T P   P  F NameLaw Identity laws P  F  P P  T  P Domination laws P  T  T P.
Propositional Logic. Negation Given a proposition p, negation of p is the ‘not’ of p.
Proof by Deduction. Deductions and Formal Proofs A deduction is a sequence of logic statements, each of which is known or assumed to be true A formal.
CSCI 115 Chapter 2 Logic. CSCI 115 §2.1 Propositions and Logical Operations.
Deduction, Proofs, and Inference Rules. Let’s Review What we Know Take a look at your handout and see if you have any questions You should know how to.
DeMorgan’s Rule DM ~(p v q) :: (~p. ~q)“neither…nor…” is the same as “not the one and not the other” ~( p. q) :: (~p v ~q) “not both…” is the same as “either.
COS 150 Discrete Structures Assoc. Prof. Svetla Boytcheva Fall semester 2014.
Fundamentals of Logic 1. What is a valid argument or proof? 2. Study system of logic 3. In proving theorems or solving problems, creativity and insight.
Chapter Four Proofs. 1. Argument Forms An argument form is a group of sentence forms such that all of its substitution instances are arguments.
1 Introduction to Computational Linguistics Eleni Miltsakaki AUTH Spring 2006-Lecture 8.
Chapter 3: Introduction to Logic. Logic Main goal: use logic to analyze arguments (claims) to see if they are valid or invalid. This is useful for math.
From Truth Tables to Rules of Inference Using the first four Rules of Inference Modus Ponens, Modus Tollens, Hypothetical Syllogism and Disjunctive Syllogism.
1 Introduction to Abstract Mathematics Expressions (Propositional formulas or forms) Instructor: Hayk Melikya
Formal Logic Mathematical Structures for Computer Science Chapter 1 Copyright © 2006 W.H. Freeman & Co.MSCS SlidesFormal Logic.
Symbolic Logic ⊃ ≡ · v ~ ∴. What is a logical argument? Logic is the science of reasoning, proof, thinking, or inference. Logic allows us to analyze a.
Today’s Topics Argument forms and rules (review)
1 Propositional Proofs 1. Problem 2 Deduction In deduction, the conclusion is true whenever the premises are true.  Premise: p Conclusion: (p ∨ q) 
Sound Arguments and Derivations. Topics Sound Arguments Derivations Proofs –Inference rules –Deduction.
Chapter 1 Logic and proofs
Formal logic The part of logic that deals with arguments with forms.
L = # of lines n = # of different simple propositions L = 2 n EXAMPLE: consider the statement, (A ⋅ B) ⊃ C A, B, C are three simple statements 2 3 L =
Lecture 1-2: Propositional Logic. Propositional Logic Deriving a logical conclusion by combining many propositions and using formal logic: hence, determining.
March 23 rd. Four Additional Rules of Inference  Constructive Dilemma (CD): (p  q) (r  s) p v r q v s.
Making Inferences with Propositions (Rules of Inference)
Logic and Reasoning.
2. The Logic of Compound Statements Summary
Advanced Algorithms Analysis and Design
Discrete Mathematics Lecture 1 Logic of Compound Statements
Discrete Mathematics Logic.
Formal Logic CSC 333.
Chapter 1 Logic and Proofs Homework 1 Two merchants publish new marketing campaign to attract more customers. The first merchant launches a motto “Good.
Thinking Mathematically
Truth Tables and Equivalent Statements
Chapter 1 – Logic and Proof
Methods of proof Section 1.6 & 1.7 Wednesday, June 20, 2018
Natural Deduction: Using simple valid argument forms –as demonstrated by truth-tables—as rules of inference. A rule of inference is a rule stating that.
Demonstrating the validity of an argument using syllogisms.
Proof Techniques.
Rules of Inference Section 1.6.
Introduction to Symbolic Logic
Chapter 8 Logic Topics
7.1 Rules of Implication I Natural Deduction is a method for deriving the conclusion of valid arguments expressed in the symbolism of propositional logic.
Propositional Logic Defining Propositional Logic
CS201: Data Structures and Discrete Mathematics I
Mathematical Reasoning
3.5 Symbolic Arguments.
CS 270 Math Foundations of CS
Natural Deduction 1 Hurley, Logic 7.4.
THE REST The rest of the rules are not all that useful
CS 220: Discrete Structures and their Applications
Applied Discrete Mathematics Week 1: Logic
Back to “Serious” Topics…
Inference Rules: Tautologies
The Method of Deduction
Malini Sen WESTERN LOGIC Presented by Assistant Professor
Natural Deduction Hurley, Logic 7.1.
1 Chapter An Introduction to Problem Solving
Discrete Mathematics Logic.
1 Chapter An Introduction to Problem Solving
Foundations of Discrete Mathematics
Natural Deduction Hurley, Logic 7.3.
Mathematical Reasoning
CS201: Data Structures and Discrete Mathematics I
Introduction to Computational Linguistics
The Foundations: Logic and Proofs
Chapter 8 Natural Deduction
Conjunctive addition states that if we know that each of two statements is true, we can join them with the conjunction connective and the resulting conjunction.
Presentation transcript:

Deductive Reasoning: Propositional Logic Chapter 6 Deductive Reasoning: Propositional Logic

4 Logical Connectives & Conjunction (and)—as in p & q (Alice rode her bike, and John walked.) V Disjunction (or)—as in p v q (Either Alice rode her bike, or John walked.) ~ Negation (not)—as in ~p (Alice did not ride her bike. Or: It is not the case that Alice rode her bike.) â Conditional (if-then)—as in p â q (If Alice rode her bike, then John walked.)

Truth table for a conjunction: p q p & q T T T T F F F T F F F F

Truth table for a disjunction: p q p v q T T T T F T F T T F F F

Truth table for a negation: p ~ p T F F T

Truth table for a conditional: p q p â q T T T T F F F T T F F T

Some Rules of Inference 1. Modus Ponens (MP) 3. Hypothetical Syllogism (HS) p → q p → q p q → r  q  p → r 2. Modus Tollens (MT) 4. Simplification (SIMP) p → q p & q ~ q  p  ~ p

Some Rules of Replacement 10. Tautology (TAUT) 15. De Morgan’s Law (DM) p ≡ (p & p) ~ (p & q) ≡ (~ p v ~ q) p ≡ (p v p) ~ (p v q) ≡ (~ p & ~ q)   11. Double Negation (DN) 16. Contraposition (CONTRA) ~ ~ p ≡ p (p → q) ≡ (~ q → ~ p) p ≡ ~ ~ p