1 / 33

CSE15 Discrete Mathematics 01/30/17

CSE15 Discrete Mathematics 01/30/17. Ming-Hsuan Yang UC Merced. 1.6 Rules of Inference. Proof : valid arguments that establish the truth of a mathematical statement Argument : a sequence of statements that end with a conclusion

jleamon
Download Presentation

CSE15 Discrete Mathematics 01/30/17

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSE15 Discrete Mathematics01/30/17 Ming-Hsuan Yang UC Merced

  2. 1.6 Rules of Inference • Proof: valid arguments that establish the truth of a mathematical statement • Argument: a sequence of statements that end with a conclusion • Valid: the conclusion or final statement of the argument must follow the truth of proceeding statements or premise of the argument

  3. Argument and inference • An argument is valid if and only if it is impossible for all the premises to be true and the conclusion to be false • Rules of inference: use them to deduce (construct) new statements from statements that we already have • Basic tools for establishing the truth of statements

  4. Valid arguments in propositional logic • Consider the following arguments involving propositions “If you have a correct password, then you can log onto the network” “You have a correct password” therefore, “You can log onto the network” premises conclusion

  5. Valid arguments • is tautology • When ((p→q)˄p) is true, both p→q and p are ture, and thus q must be also be true • This form of argument is true because when the premises are true, the conclusion must be true

  6. Example “If you have access to the network, then you can change your grade” “You have access to the network” so “You can change your grade” Is this a valid argument? • p: “You have access to the network” • q: “You can change your grade” • p→q: “If you have access to the network, then you can change your grade”

  7. Example “If you have access to the network, then you can change your grade” (p→q) “You have access to the network” (p) so “You can change your grade” (q) • Valid arguments • But the conclusion is not true because one of the premises is false • Argument form: a sequence of compound propositions involving propositional variables

  8. Rules of inference for propositional logic • Can always use truth table to show an argument form is valid • For an argument form with 10 propositional variables, the truth table requires 210 rows • The tautology is the rule of inference called modus ponens (mode that affirms), or the law of detachment

  9. Example • If both statements “If it snows today, then we will go skiing” and “It is snowing today” are true. • By modus ponens, it follows the conclusion “We will go skinning” is true

  10. Example • The premises of the argument are p→q and p, and q is the conclusion • This argument is valid by using modus ponens • But one of the premises is false, consequently we cannot conclude the conclusion is true • Furthermore, the conclusion is not true

  11. Rules of inference for propositional logic: Modus ponens Corresponding Tautology: (p ∧ (p →q)) → q Example: Let p be “It is snowing.” Let q be “I will study discrete math.” “If it is snowing, then I will study discrete math.” “It is snowing.” “Therefore , I will study discrete math.”

  12. Modus tollens Corresponding Tautology: (¬q∧(p →q))→¬p Example: Let p be “it is snowing.” Let q be “I will study discrete math.” “If it is snowing, then I will study discrete math.” “I will not study discrete math.” “Therefore , it is not snowing.”

  13. Hypothetical syllogism Corresponding Tautology: ((p →q) ∧ (q→r))→(p→ r) Example: Let p be “it snows.” Let q be “I will study discrete math.” Let r be “I will get an A.” “If it snows, then I will study discrete math.” “If I study discrete math, I will get an A.” “Therefore , If it snows, I will get an A.”

  14. Disjunctive syllogism Corresponding Tautology: (¬p∧(p ∨q))→q Example: Let p be “I will study discrete math.” Let q be “I will study English literature.” “I will study discrete math or I will study English literature.” “I will not study discrete math.” “Therefore , I will study English literature.”

  15. Addition Corresponding Tautology: p →(p ∨q) Example: Let p be “I will study discrete math.” Let q be “I will visit Las Vegas.” “I will study discrete math.” “Therefore, I will study discrete math or I will visit Las Vegas.”

  16. Simplification Corresponding Tautology: (p∧q) →p Example: Let p be “I will study discrete math.” Let q be “I will study English literature.” “I will study discrete math and English literature” “Therefore, I will study discrete math.”

  17. Conjunction Corresponding Tautology: ((p)∧ (q)) →(p ∧ q) Example: Let p be “I will study discrete math.” Let q be “I will study English literature.” “I will study discrete math.” “I will study English literature.” “Therefore, I will study discrete math and I will study English literature.”

  18. Resolution Resolution plays an important role in AI and is used in Prolog. Corresponding Tautology: ((¬p ∨ r )∧ (p ∨ q)) →(q ∨ r) Example: Let p be “I will study discrete math.” Let r be “I will study English literature.” Let q be “I will study databases.” “I will not study discrete math or I will study English literature.” “I will study discrete math or I will study databases.” “Therefore, I will study databases or I will English literature.”

  19. Valid Arguments p->q, p is hypothesis or premise (or antecedent) if p then q p only if q Example: • With these hypotheses: “It is not sunny this afternoon and it is colder than yesterday.” “We will go swimming only if it is sunny.” “If we do not go swimming, then we will take a canoe trip.” “If we take a canoe trip, then we will be home by sunset.” • Using the inference rules, construct a valid argument for the conclusion: “We will be home by sunset.” Solution: • Choose propositional variables: p : “It is sunny this afternoon.” r : “We will go swimming.” t : “We will be home by sunset.” q : “It is colder than yesterday.” s : “We will take a canoe trip.” • Translation into propositional logic: Continued on next slide

  20. Example p->q, p is hypothesis or premise (or antecedent) if p then q p only if q • “It is not sunny this afternoon and it is colder than yesterday” • “We will go swimming only if it is sunny” • “If we do not go swimming, then we will take a canoe trip” • “If we take a canoe trip, then we will be home by sunset” Can we conclude “We will be home by sunset”?

  21. Example • “If you send me an email message, then I will finish my program” • “If you do not send me an email message, then I will go to sleep early” • “If I go to sleep early, then I will wake up feeling refreshed” • “If I do not finish writing the program, then I will wake up feeling refreshed”

  22. Resolution • Based on the tautology • Resolvent: • Let q=r, we have • Let r=F, we have • Important in logic programming, AI, etc.

  23. Example • “Jasmine is skiing or it is not snowing” • “It is snowing or Bart is playing hockey” imply • “Jasmine is skiing or Bart is playing hockey”

  24. Example • To construct proofs using resolution as the only rule of inference, the hypotheses and the conclusion must be expressed as clauses • Clause: a disjunction of variables or negations of these variables Using resolution, we have p v s

  25. Fallacies • Inaccurate arguments • is not a tautology as it is false when p is false and q is true • If you do every problem in this book, then you will learn discrete mathematics. You learned discrete mathematics Therefore you did every problem in this book ?

  26. Example • is it correct to conclude ┐q? • Fallacy: the incorrect argument is of the form as ┐p does not imply ┐q

  27. Inference with quantified statements Instantiation: c is one particular member of the domain Generalization: for an arbitrary member c

  28. Example • “Everyone in this discrete mathematics has taken a course in computer science” and “Marla is a student in this class” imply “Marla has taken a course in computer science”

  29. Using rules of inference Example: Use the rules of inference to construct a valid argument showing that the conclusion “Someone who passed the first exam has not read the book.” follows from the premises “A student in this class has not read the book.” “Everyone in this class passed the first exam.” Solution: Let C(x) denote “x is in this class,” B(x) denote “ x has read the book,” and P(x) denote “x passed the first exam.” First we translate the premises and conclusion into symbolic form. Continued on next slide

  30. Example • “A student in this class has not read the book”, and “Everyone in this class passed the first exam” imply “Someone who passed the first exam has not read the book”

  31. Universal modus ponens • Use universal instantiation and modus ponens to derive new rule • Assume “For all positive integers n, if n is greater than 4, then n2 is less than 2n” is true. Show 1002<2100

  32. Universal modus tollens • Combine universal modus tollens and universal instantiation

More Related