MAT 3100 Introduction to Proof

Slides:



Advertisements
Similar presentations
Geometry Chapter 2 Terms.
Advertisements

2.2 Conditional Statements. Goals Identify statements which are conditional Identify the antecedent and consequent of a conditional statement Negate conditional.
Copyright © 2015, 2011, 2008 Pearson Education, Inc. Chapter 1, Unit 1B, Slide 1 Thinking Critically 1.
Syllabus Every Week: 2 Hourly Exams +Final - as noted on Syllabus
1 Section 1.1 Logic. 2 Proposition Statement that is either true or false –can’t be both –in English, must contain a form of “to be” Examples: –Cate Sheller.
Adapted from Discrete Math
The Foundations: Logic and Proofs
Propositions and Truth Tables
Section 1.5 Implications. Implication Statements If Cara has a piano lesson, then it is Friday. If it is raining, then I need to remember my umbrella.
Section 1-4 Logic Katelyn Donovan MAT 202 Dr. Marinas January 19, 2006.
CSCI 115 Chapter 2 Logic. CSCI 115 §2.1 Propositions and Logical Operations.
Discrete Mathematics and Its Applications
COS 150 Discrete Structures Assoc. Prof. Svetla Boytcheva Fall semester 2014.
© by Kenneth H. Rosen, Discrete Mathematics & its Applications, Sixth Edition, Mc Graw-Hill, 2007 Ch.1 (Part 1): The Foundations: Logic and Proofs Introduction.
Mathematical Structures A collection of objects with operations defined on them and the accompanying properties form a mathematical structure or system.
Chapter 1: The Foundations: Logic and Proofs
Conditional Statements
Chapter 2: The Logic of Compound Statements 2.2 Conditional Statements
Lecture 4. CONDITIONAL STATEMENTS: Consider the statement: "If you earn an A in Math, then I'll buy you a computer." This statement is made up of two.
Unit 2 Part 1 Conditional, Converse, Inverse, and Contra- Positive Statements.
CS 381 DISCRETE STRUCTURES Gongjun Yan Aug 25, November 2015Introduction & Propositional Logic 1.
LOGIC Lesson 2.1. What is an on-the-spot Quiz  This quiz is defined by me.  While I’m having my lectures, you have to be alert.  Because there are.
Conditional Statements Section 2-3 Conditional Statements If-then statements are called conditional statements. The portion of the sentence following.
2.2.1 Analyze Conditional Statements and Proof Chapter 2: Reasoning and Proof.
Section 2-2: Conditional Statements. Conditional A statement that can be written in If-then form symbol: If p —>, then q.
Logic and Reasoning Conditional Statements. Logic The use and study of valid reasoning. When studying mathematics it is important to have the ability.
Chapter 2 Section 2-1: Conditional Statements
Lecture 9 Conditional Statements CSCI – 1900 Mathematics for Computer Science Fall 2014 Bill Pine.
Thinking Mathematically
1/10/ Math/CSE 1019N: Discrete Mathematics for Computer Science Winter 2007 Suprakash Datta Office: CSEB 3043 Phone:
Chapter 1: The Foundations: Logic and Proofs
Logic The Lost Art of Argument. Logic - Review Proposition – A statement that is either true or false (but not both) Conjunction – And Disjunction – Or.
Mathematics for Comter I Lecture 2: Logic (1) Basic definitions Logical operators Translating English sentences.
Bellwork Write if-then form, converse, inverse, and contrapositive of given statement. 3x - 8 = 22 because x = 10.
Conditional statement or implication IF p then q is denoted p ⇒ q p is the antecedent or hypothesis q is the consequent or conclusion ⇒ means IF…THEN.
1 Georgia Tech, IIC, GVU, 2006 MAGIC Lab Rossignac Lecture 01: Boolean Logic Sections 1.1 and 1.2 Jarek Rossignac.
CS104 The Foundations: Logic and Proof 1. 2 What is Discrete Structure?  Discrete Objects  Separated from each other (Opposite of continuous)  e.g.,
Chapter 1. Chapter Summary  Propositional Logic  The Language of Propositions (1.1)  Logical Equivalences (1.3)  Predicate Logic  The Language of.
CS-7081 Application - 1. CS-7082 Example - 2 CS-7083 Simplifying a Statement – 3.
Simple Logic.
Discrete Structures for Computer Science Presented By: Andrew F. Conn Slides adapted from: Adam J. Lee Lecture #1: Introduction, Propositional Logic August.
Chapter 1 Propositional Logic
If – Then Statements Lesson 1.5.
2. The Logic of Compound Statements Summary
CSNB 143 Discrete Mathematical Structures
Niu Kun Discrete Mathematics Chapter 1 The Foundations: Logic and Proof, Sets, and Functions Niu Kun 离散数学.
Logic.
MATH 245 Spring 2009 This is mathematics for computer science
Ch.1 (Part 1): The Foundations: Logic and Proofs
Warm Up:.
The Foundations: Logic and Proofs
Principles of Computing – UFCFA3-30-1
Chapter 8 Logic Topics
2 Chapter Introduction to Logic and Sets
Conditional Statements
Information Technology Department
Chapter 1 The Foundations: Logic and Proof, Sets, and Functions
CS201: Data Structures and Discrete Mathematics I
2.2 Analyze Conditional Statements
(1.4) An Introduction to Logic
1 Chapter An Introduction to Problem Solving
Discrete Mathematics and Its Applications Kenneth H
Discrete Mathematics Lecture 2: Propositional Logic
1 Chapter An Introduction to Problem Solving
Conditional Statements
Discrete Mathematics Lecture 2: Propositional Logic
COMP 1380 Discrete Structures I Thompson Rivers University
Logic and Reasoning.
CS201: Data Structures and Discrete Mathematics I
The Foundations: Logic and Proofs
Presentation transcript:

MAT 3100 Introduction to Proof Logic & Truth Tables

Logic Logic = the study of correct reasoning Use of logic In mathematics: to prove theorems In computer science: to prove that programs do what they are supposed to do

Propositions A proposition is a statement or sentence that can be determined to be either true (T) or false (F). Examples: 1+1=2 3+1=2 My dog ate my homework. 𝑛+1>3 4𝑥2+2𝑦−1

Operations on Truth Values 1. Negation (Not), ~p, ¬p, Examples: p: I am 21. ~p: I am not 21. Rules If p is T, then ~p is __ . If p is F, then ~p is __. Truth Table p ~p T F

Operations on Truth Values 2. Conjunction (And), p  q Examples: p: I am going to town. q: It is going to rain. p  q: I am going to town and it is going to rain. Rules p  q is T if both p and q are __.

Operations on Truth Values 2. Conjunction (And), p  q p q p  q T F

Operations on Truth Values 3. (Inclusive) Disjunction (Or), p  q Examples: p: I am going to town. q: It is going to rain. p  q: I am going to town or it is going to rain. Rules p  q is T if p or q is __.

Operations on Truth Values 3. (Inclusive) Disjunction (Or), p  q p q p  q T F

Operations on Truth Values 4. Exclusive Disjunction (Exclusive Or), p exor q Rules p exor q is T if p or q is __, but not both.

Operations on Truth Values 5. Implication (If…then…), p  q Examples: p: I am going to town. (hypothesis) q: It is going to rain. (conclusion) p  q: If I am going to town then it is going to rain. Rules p  q is F only when p is __ but q is __.

Operations on Truth Values 5. Implication (If…then…), p  q Remark: Implication is defined different from normal (English) Language. It is independent of ___________________ __________ between the hypothesis and conclusion.

Operations on Truth Values 5. Implication (If…then…), p  q p q p  q T F

Operations on Truth Values 5. Implication (If…then…), p  q If the hypothesis is F, then the implication is always T. Examples: p: I have $1 million in the bank. q: I donate $10,000 to my church. p  q:

Operations on Truth Values Given p  q, we define the following related implications. a. Converse of p  q : _______ b. Contrapositive of p  q: _______ c. Inverse of p  q: _______ We will see these related implications very often.

Operations on Truth Values Examples: If 𝑥=𝑦 then 𝑥2=𝑦2 Converse: If 𝑥2=𝑦2 then 𝑥=𝑦 Contrapositive: If 𝑥2≠𝑦2 then 𝑥≠𝑦 Inverse: If 𝑥≠𝑦 then 𝑥2≠𝑦2

Operations on Truth Values Examples: If 𝑥=5 then 𝑥+1=6 Contrapositive: If 𝑥+1≠6 then 𝑥≠5

Operations on Truth Values Examples: If 𝑥=1 then 𝑥2=1 Inverse: If 𝑥≠1 then 𝑥2≠1

Operations on Truth Values 6. Double Implication, Biconditional Proposition, (…if and only if…), p  q Rules p  q is T if p and q ___________________.

Operations on Truth Values Summary p q p  q p  q p  q p  q T F

In Class Learning Activity Classwork Group Explorations