Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. Q2. (15 points) Is the statement (A ∧ B ∧ C) → D a valid argument. Justify your answer with a mathematical proof. Hint 1: a statement is valid if and only if its negation is a contradiction. Hint 2: try to simplify the body of the implication (i.e., the part A ∧ B ∧ C) before simplifying the entire formula. Hint 3: a quantified formula is a contradiction if and only if it is not possible to find a universe satisfying it.
  2.  
  3. (A ∧ B ∧ C) → D
  4.  
  5. = [∀x {H(x) → ¬R(x)}] ∧ [∀x {¬R(x) → ¬ G(x)}] ∧ [∀x {¬G(x) → ¬N(x)}] → D
  6.  
  7. since the universal quantifier (∀) distributes over conjunction:
  8.  
  9. = ∀x [{H(x) → ¬R(x)} ∧ {¬R(x) → ¬ G(x)} ∧ {¬G(x) → ¬N(x)}] → D
  10.  
  11. by using the principle of transitivity of implication (in Hypothetical Syllogism) which tells us that (P→Q),(Q→R)⊢(P→R)
  12.  
  13. = ∀x [{H(x) → ¬ G(x)} ∧ {¬G(x) → ¬N(x)}] → D
  14.  
  15. = ∀x [H(x) → ¬N(x)] → D
  16.  
  17. put D in place
  18.  
  19. = { ∀x [H(x) → ¬N(x)] } → { ∀x [H(x) → ¬N(x)] }
  20.  
  21. by conditional laws
  22.  
  23. = ¬ { ∀x [H(x) → ¬N(x)] } ∨ { ∀x [H(x) → ¬N(x)] }
  24.  
  25.  
  26. = ¬ { ∀x [¬H(x) ∨ ¬N(x)] } ∨ { ∀x [¬H(x) ∨ ¬N(x)] }
  27.  
  28. = {¬∀x [¬H(x) ∨ ¬N(x)] } ∨ { ∀x [¬H(x) ∨ ¬N(x)] }
  29.  
  30. by quantifier negation laws
  31.  
  32. = { ∃x ¬[¬H(x) ∨ ¬N(x)] } ∨ { ∀x [¬H(x) ∨ ¬N(x)] }
  33.  
  34. take the negation of this statement
  35.  
  36. negation = ¬ ( { ∃x ¬[¬H(x) ∨ ¬N(x)] } ∨ { ∀x [¬H(x) ∨ ¬N(x)] } )
  37.  
  38. by De Morgan’s law
  39.  
  40. negation = ¬{ ∃x ¬[¬H(x) ∨ ¬N(x)] } ∧ ¬{ ∀x [¬H(x) ∨ ¬N(x)] }
  41.  
  42. by quantifier negation laws
  43.  
  44. negation = {∀x [¬H(x) ∨ ¬N(x)] } ∧ { ∃x ¬[¬H(x) ∨ ¬N(x)] }
  45.  
  46. Let [¬H(x) ∨ ¬N(x)] = Z(x)
  47.  
  48. negation = {∀x Z(x) } ∧ { ∃x ¬Z(x) }
  49.  
  50. This is a contradiction since the statements “for all x, Z(x) is true” and “there exists an x for which Z(x) isn’t true contradict each other. When two contradicting statements are said to be true at the same time; there is a contradiction. There is no universe which x is an element of, that satisfies the negation of the original statement.
  51.  
  52. So the argument is valid since it’s negation is a contradiction.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement