Doubt regarding $∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x)))$ validity
I know this is valid. But from LHS we can infer only for same $x$ for both $P$ and $Q$. So, I want to know how we can directly arrive at $P(a)→Q(b)$, when only information we have is $P(a)→Q(a)$ and $P(b)→Q(b)$.
logic
add a comment |
I know this is valid. But from LHS we can infer only for same $x$ for both $P$ and $Q$. So, I want to know how we can directly arrive at $P(a)→Q(b)$, when only information we have is $P(a)→Q(a)$ and $P(b)→Q(b)$.
logic
We have $forall x (Px → Qx)$ and we assume $forall x Px$. Then we derive $Pa to Qa$ and $Pa$ respectively. From them : $Qa$.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:16
But $a$ is whatever; thus, we can "generalize" on it.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:20
Consider domain of disourse consisiting of {a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
add a comment |
I know this is valid. But from LHS we can infer only for same $x$ for both $P$ and $Q$. So, I want to know how we can directly arrive at $P(a)→Q(b)$, when only information we have is $P(a)→Q(a)$ and $P(b)→Q(b)$.
logic
I know this is valid. But from LHS we can infer only for same $x$ for both $P$ and $Q$. So, I want to know how we can directly arrive at $P(a)→Q(b)$, when only information we have is $P(a)→Q(a)$ and $P(b)→Q(b)$.
logic
logic
edited Nov 21 '18 at 13:59
user 170039
10.4k42465
10.4k42465
asked Nov 21 '18 at 13:11
user10143594
103
103
We have $forall x (Px → Qx)$ and we assume $forall x Px$. Then we derive $Pa to Qa$ and $Pa$ respectively. From them : $Qa$.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:16
But $a$ is whatever; thus, we can "generalize" on it.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:20
Consider domain of disourse consisiting of {a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
add a comment |
We have $forall x (Px → Qx)$ and we assume $forall x Px$. Then we derive $Pa to Qa$ and $Pa$ respectively. From them : $Qa$.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:16
But $a$ is whatever; thus, we can "generalize" on it.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:20
Consider domain of disourse consisiting of {a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
We have $forall x (Px → Qx)$ and we assume $forall x Px$. Then we derive $Pa to Qa$ and $Pa$ respectively. From them : $Qa$.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:16
We have $forall x (Px → Qx)$ and we assume $forall x Px$. Then we derive $Pa to Qa$ and $Pa$ respectively. From them : $Qa$.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:16
But $a$ is whatever; thus, we can "generalize" on it.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:20
But $a$ is whatever; thus, we can "generalize" on it.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:20
Consider domain of disourse consisiting of {a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
Consider domain of disourse consisiting of {a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
add a comment |
2 Answers
2
active
oldest
votes
If P holds for all x and for each x, P(x) implies Q(x), then Q holds for all x.
You never need P(a) implies Q(b), but you have guaranteed, on RHS that P(x) for all x, and by LHS, P(x) implies Q(x).
As an example, let the domain be {a, b}.
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))". Note that we are NOT proving "for all x (P(x) implies for all x Q(x))".
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
1
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
|
show 8 more comments
Do you mean valid in a semantic or deductive way?
Deductively it can be shown as follows:
Assume $forall x( P(x) rightarrow Q(x))$
Suppose $ forall x P(x)$,
Therefore $P(x)$ and as such $Q(x)$ by the assumption. As such $forall x Q(x)$.
That completes the proof. Since natural deduction using the usual rules is semantically valid, then so is the formula. It's valid even constructively.
For an example, let the domain be $A={a,b}$. Now assume:
$$forall x( P(x) rightarrow Q(x))$$
As such:
$$ P(a) rightarrow Q(a),P(b) rightarrow Q(b)$$
Now assume:
$P(a),P(b)$
Therefore by the above: $Q(a),Q(b)$. Since $a,b$ is the whole domain we are allowed to bring in the "for all" quantifier.
And that concludes the proof. Note that model theory would be inconsistent if this was not the case. By the above proof the sentence should hold for all possible worlds.
Finally, there is small error in the question. $P(a)rightarrow Q(b)$ is not the case.
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3007709%2fdoubt-regarding-%25e2%2588%2580xpx%25e2%2586%2592qx%25e2%2586%2592%25e2%2588%2580xpx%25e2%2586%2592%25e2%2588%2580xqx-validity%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If P holds for all x and for each x, P(x) implies Q(x), then Q holds for all x.
You never need P(a) implies Q(b), but you have guaranteed, on RHS that P(x) for all x, and by LHS, P(x) implies Q(x).
As an example, let the domain be {a, b}.
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))". Note that we are NOT proving "for all x (P(x) implies for all x Q(x))".
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
1
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
|
show 8 more comments
If P holds for all x and for each x, P(x) implies Q(x), then Q holds for all x.
You never need P(a) implies Q(b), but you have guaranteed, on RHS that P(x) for all x, and by LHS, P(x) implies Q(x).
As an example, let the domain be {a, b}.
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))". Note that we are NOT proving "for all x (P(x) implies for all x Q(x))".
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
1
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
|
show 8 more comments
If P holds for all x and for each x, P(x) implies Q(x), then Q holds for all x.
You never need P(a) implies Q(b), but you have guaranteed, on RHS that P(x) for all x, and by LHS, P(x) implies Q(x).
As an example, let the domain be {a, b}.
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))". Note that we are NOT proving "for all x (P(x) implies for all x Q(x))".
If P holds for all x and for each x, P(x) implies Q(x), then Q holds for all x.
You never need P(a) implies Q(b), but you have guaranteed, on RHS that P(x) for all x, and by LHS, P(x) implies Q(x).
As an example, let the domain be {a, b}.
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))". Note that we are NOT proving "for all x (P(x) implies for all x Q(x))".
edited Nov 21 '18 at 13:44
answered Nov 21 '18 at 13:18
Henrique Lecco
363
363
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
1
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
|
show 8 more comments
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
1
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
Consider domain of disourse as{a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
First of all consider only premise this ∀x(P(x)→Q(x)) . After that we have to prove ∀x(P(x))→∀x(Q(x))
– user10143594
Nov 21 '18 at 13:26
1
1
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
What you're saying is different from what is written. You are saying "for all x, y, P(x) implies Q(y)". This is different from "for all x P(x) implies for all x Q(x)" . Read it as "the fact that P holds for all x implies that Q also holds for all x".
– Henrique Lecco
Nov 21 '18 at 13:27
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}
– user10143594
Nov 21 '18 at 13:32
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
Suppose LHS valid. Then P(a) implies Q(a) and P(b) implies Q(b). Now, on RHS, suppose for all x, P(x). That is, we have P(a) and P(b) valid. By LHS, P(a) implies Q(a), then Q(a) is valid. Also, P(b) implies Q(b), then Q(b) is valid. Then Q holds for both a and b, that is, Q holds for all x. Then we proved "(for all x P(x)) implies (for all x Q(x))".
– Henrique Lecco
Nov 21 '18 at 13:37
|
show 8 more comments
Do you mean valid in a semantic or deductive way?
Deductively it can be shown as follows:
Assume $forall x( P(x) rightarrow Q(x))$
Suppose $ forall x P(x)$,
Therefore $P(x)$ and as such $Q(x)$ by the assumption. As such $forall x Q(x)$.
That completes the proof. Since natural deduction using the usual rules is semantically valid, then so is the formula. It's valid even constructively.
For an example, let the domain be $A={a,b}$. Now assume:
$$forall x( P(x) rightarrow Q(x))$$
As such:
$$ P(a) rightarrow Q(a),P(b) rightarrow Q(b)$$
Now assume:
$P(a),P(b)$
Therefore by the above: $Q(a),Q(b)$. Since $a,b$ is the whole domain we are allowed to bring in the "for all" quantifier.
And that concludes the proof. Note that model theory would be inconsistent if this was not the case. By the above proof the sentence should hold for all possible worlds.
Finally, there is small error in the question. $P(a)rightarrow Q(b)$ is not the case.
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
|
show 1 more comment
Do you mean valid in a semantic or deductive way?
Deductively it can be shown as follows:
Assume $forall x( P(x) rightarrow Q(x))$
Suppose $ forall x P(x)$,
Therefore $P(x)$ and as such $Q(x)$ by the assumption. As such $forall x Q(x)$.
That completes the proof. Since natural deduction using the usual rules is semantically valid, then so is the formula. It's valid even constructively.
For an example, let the domain be $A={a,b}$. Now assume:
$$forall x( P(x) rightarrow Q(x))$$
As such:
$$ P(a) rightarrow Q(a),P(b) rightarrow Q(b)$$
Now assume:
$P(a),P(b)$
Therefore by the above: $Q(a),Q(b)$. Since $a,b$ is the whole domain we are allowed to bring in the "for all" quantifier.
And that concludes the proof. Note that model theory would be inconsistent if this was not the case. By the above proof the sentence should hold for all possible worlds.
Finally, there is small error in the question. $P(a)rightarrow Q(b)$ is not the case.
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
|
show 1 more comment
Do you mean valid in a semantic or deductive way?
Deductively it can be shown as follows:
Assume $forall x( P(x) rightarrow Q(x))$
Suppose $ forall x P(x)$,
Therefore $P(x)$ and as such $Q(x)$ by the assumption. As such $forall x Q(x)$.
That completes the proof. Since natural deduction using the usual rules is semantically valid, then so is the formula. It's valid even constructively.
For an example, let the domain be $A={a,b}$. Now assume:
$$forall x( P(x) rightarrow Q(x))$$
As such:
$$ P(a) rightarrow Q(a),P(b) rightarrow Q(b)$$
Now assume:
$P(a),P(b)$
Therefore by the above: $Q(a),Q(b)$. Since $a,b$ is the whole domain we are allowed to bring in the "for all" quantifier.
And that concludes the proof. Note that model theory would be inconsistent if this was not the case. By the above proof the sentence should hold for all possible worlds.
Finally, there is small error in the question. $P(a)rightarrow Q(b)$ is not the case.
Do you mean valid in a semantic or deductive way?
Deductively it can be shown as follows:
Assume $forall x( P(x) rightarrow Q(x))$
Suppose $ forall x P(x)$,
Therefore $P(x)$ and as such $Q(x)$ by the assumption. As such $forall x Q(x)$.
That completes the proof. Since natural deduction using the usual rules is semantically valid, then so is the formula. It's valid even constructively.
For an example, let the domain be $A={a,b}$. Now assume:
$$forall x( P(x) rightarrow Q(x))$$
As such:
$$ P(a) rightarrow Q(a),P(b) rightarrow Q(b)$$
Now assume:
$P(a),P(b)$
Therefore by the above: $Q(a),Q(b)$. Since $a,b$ is the whole domain we are allowed to bring in the "for all" quantifier.
And that concludes the proof. Note that model theory would be inconsistent if this was not the case. By the above proof the sentence should hold for all possible worlds.
Finally, there is small error in the question. $P(a)rightarrow Q(b)$ is not the case.
edited Nov 21 '18 at 14:05
answered Nov 21 '18 at 13:49
Dole
904514
904514
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
|
show 1 more comment
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
I am saying all we have is this ∀x(P(x)→Q(x)) and the domain of discourse. Now, I am asking how we can prove it to ∀x(P(x)→Q(x))→(∀x(P(x))→∀x(Q(x))) . I do not want to take this formula as given and then proving it correct. I want to know how to derive it using a example. And that example is using domain of discourse {a,b}.
– user10143594
Nov 21 '18 at 13:50
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
@user10143594 Okay, so you want to show that there is some model that satisfies it? I will edit the post...
– Dole
Nov 21 '18 at 13:53
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
If P(a) and P(b) are true and then obviously Q(a) and Q(b) are true. So, P(a) -> Q(b)
– user10143594
Nov 21 '18 at 14:29
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
@user10143594 The first statement does not infer that $P(a)rightarrow Q(b)$. It's only after that, when it's assumd that $P(a)$ IS true for all a, that you can make such inference. Sure, that does imply it.
– Dole
Nov 21 '18 at 18:55
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
In my above comment, all I wrote was based on your answer only
– user10143594
Nov 21 '18 at 19:00
|
show 1 more comment
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3007709%2fdoubt-regarding-%25e2%2588%2580xpx%25e2%2586%2592qx%25e2%2586%2592%25e2%2588%2580xpx%25e2%2586%2592%25e2%2588%2580xqx-validity%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
We have $forall x (Px → Qx)$ and we assume $forall x Px$. Then we derive $Pa to Qa$ and $Pa$ respectively. From them : $Qa$.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:16
But $a$ is whatever; thus, we can "generalize" on it.
– Mauro ALLEGRANZA
Nov 21 '18 at 13:20
Consider domain of disourse consisiting of {a,b}. From premises we have P(a)→Q(a) and P(b)→Q(b). Now logically how can we say about P(a)→Q(b) ?
– user10143594
Nov 21 '18 at 13:23