Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Project 1 #69

wants to merge 1 commit into from

Conversation

lchill2
Copy link

@lchill2 lchill2 commented Mar 11, 2023

Here is my project1

@lchill2 lchill2 closed this Mar 13, 2023
@lchill2 lchill2 reopened this Mar 13, 2023
Copy link
Owner

@johnbeve johnbeve left a 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
Copy link
Owner

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)
Copy link
Owner

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
Copy link
Owner

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
Copy link
Owner

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
Copy link
Owner

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
Copy link
Owner

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)
Copy link
Owner

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.
Copy link
Owner

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.
Copy link
Owner

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.
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants