-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Project 1 #69
base: main
Are you sure you want to change the base?
Project 1 #69
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am hoping this was submitted too early by accident.
T F F T | ||
T F T T | ||
T T F T | ||
T T T T |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the spacing.
State whether each is a tautology, a contradiction, or contingent.
(a) (A→B)→C | ||
(A ∨ C) ∧ (¬B ∨ C) | ||
(b) (A→(B∨C))∨(C→¬A) | ||
(A→(B∨C))∨(C→¬A) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CNF does not use conditionals.
(b) (A→(B∨C))∨(C→¬A) | ||
(A→(B∨C))∨(C→¬A) | ||
(c) (¬A∧¬B∧C)∨(¬A∧¬C)∨(B∧C)∨A | ||
(¬A∧¬B∧C)∨(¬A∧¬C)∨(B∧C)∨A |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should have conjunctions of disjunction pairs...
(b) A(x,y) that says that x is an aunt of y | ||
(c) C(x,y) that says that x and y are cousins | ||
(d) O(x) that says that x is an only child | ||
(e) T(x) that says that x has exactly two brothers |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where are the symbolizations?
6. Explain the difference - using natural language - between the first-order prefixes: | ||
``` | ||
(a) ∃x∀y and ∀x∃y | ||
There exists for every such that for all y and For all x there exists a y |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes no sense. There exists for every what?
(a) ∃x∀y and ∀x∃y | ||
There exists for every such that for all y and For all x there exists a y | ||
(b) ∃x∀y∃z and ∀x∃y∀z | ||
There exists an x such that for all y, there exists an z and For all x there exists a y such that for all z |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should say why these are different, not just write out in natural language what the symbols mean.
``` | ||
(a) ∀x∀y(¬(Px ∧ Qx) → (¬Px ∨ ¬Qx)) | ||
1. ¬∀x∀y(¬(Px ∧ Qx) → (¬Px ∨ ¬Qx)) | ||
2. ¬∀y(¬(Pa ∧ Qa) → (¬Pa ∨ ¬Qa))(1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does line 2 follow from line 1? It involves dropping a negation without altering anything within its scope.
assume -Px. | ||
-Px + -Qx. | ||
F. | ||
therefore —Px. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?????? If you assume ~Px, derive ~Px + ~Qx, which contradicts a previous line, then what follows is Px, rather than ~Px.
-Px + -Qx. | ||
F. | ||
therefore —Px. | ||
assume Q. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes no sense.
So you know, I've stopped reading the proofs in detail at this point. They all need to be revised.
therefore -(Qx + Px). | ||
therefore -Px & -Qx => -(Qx + Px). | ||
10. Compare and contrast the proofs provided for (a) in your answers to questions 8 and 9. Explain the different assumptions, strategies, etc. exhibited in tree proofs vs natural deduction proofs. | ||
The natural deduction proof uses double negation to complete the proof while a tree proof attempts to cancel out the assumptions it uses to get the proof. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is incorrect and superficial. Say more.
Here is my project1