How to distribute $(neg 𝑃 lor 𝑅) land [((neg 𝑃 lor 𝑄) land (𝑃 lor neg 𝑄))∨((neg 𝑅 lor...
$begingroup$
I see two possible ways to distribute this.
I believe it is case 1.
For brevity,
Let
begin{align}A &= (neg P lor Q) &
B &= (P lor neg Q) & C &=(neg R lor Q) & D &=(R lor neg Q).
end{align}
Case 1:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg Pland A land B)lor(neg P land C land D)]lor [(R land A land B)lor (R land C land D)]$$
Case 2:
$$(neg P lor R)land [(A land B)lor (Cland D)]=$$
$$[(neg P lor A) land (neg P land B)lor(neg 𝑃 land C)∧(neg 𝑃 land D]lor [(R land A)land (R land B)) lor (R land C) land (R land D)]$$
Question: Which case is correct (if either)? Why is this case correct/other wrong?
logic propositional-calculus boolean-algebra
$endgroup$
add a comment |
$begingroup$
I see two possible ways to distribute this.
I believe it is case 1.
For brevity,
Let
begin{align}A &= (neg P lor Q) &
B &= (P lor neg Q) & C &=(neg R lor Q) & D &=(R lor neg Q).
end{align}
Case 1:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg Pland A land B)lor(neg P land C land D)]lor [(R land A land B)lor (R land C land D)]$$
Case 2:
$$(neg P lor R)land [(A land B)lor (Cland D)]=$$
$$[(neg P lor A) land (neg P land B)lor(neg 𝑃 land C)∧(neg 𝑃 land D]lor [(R land A)land (R land B)) lor (R land C) land (R land D)]$$
Question: Which case is correct (if either)? Why is this case correct/other wrong?
logic propositional-calculus boolean-algebra
$endgroup$
add a comment |
$begingroup$
I see two possible ways to distribute this.
I believe it is case 1.
For brevity,
Let
begin{align}A &= (neg P lor Q) &
B &= (P lor neg Q) & C &=(neg R lor Q) & D &=(R lor neg Q).
end{align}
Case 1:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg Pland A land B)lor(neg P land C land D)]lor [(R land A land B)lor (R land C land D)]$$
Case 2:
$$(neg P lor R)land [(A land B)lor (Cland D)]=$$
$$[(neg P lor A) land (neg P land B)lor(neg 𝑃 land C)∧(neg 𝑃 land D]lor [(R land A)land (R land B)) lor (R land C) land (R land D)]$$
Question: Which case is correct (if either)? Why is this case correct/other wrong?
logic propositional-calculus boolean-algebra
$endgroup$
I see two possible ways to distribute this.
I believe it is case 1.
For brevity,
Let
begin{align}A &= (neg P lor Q) &
B &= (P lor neg Q) & C &=(neg R lor Q) & D &=(R lor neg Q).
end{align}
Case 1:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg Pland A land B)lor(neg P land C land D)]lor [(R land A land B)lor (R land C land D)]$$
Case 2:
$$(neg P lor R)land [(A land B)lor (Cland D)]=$$
$$[(neg P lor A) land (neg P land B)lor(neg 𝑃 land C)∧(neg 𝑃 land D]lor [(R land A)land (R land B)) lor (R land C) land (R land D)]$$
Question: Which case is correct (if either)? Why is this case correct/other wrong?
logic propositional-calculus boolean-algebra
logic propositional-calculus boolean-algebra
edited Feb 2 at 21:15
Taroccoesbrocco
5,87471840
5,87471840
asked Feb 2 at 20:26
tree_traversaltree_traversal
386
386
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Case 1 is correct.
What you end up with in case 2 is ungrammatical ... you'll need to add some parentheses. I assume you meant:
$$[color{red}((neg P color{red}land A) land (neg P land B)color{red})lorcolor{red}((neg 𝑃 land C)∧(neg 𝑃 land Dcolor{red})color{red})]lor [color{red}((R land A)land (R land B)) lor color{red}((R land C) land (R land D)color{red})]$$
But note that that is equivalent to:
$$[((neg P land A) land (neg P land B))lor((neg 𝑃 land C)land(neg 𝑃 land D))]lor [((R land A)land (R land B)) lor ((R land C) land (R land D))] overset{Association (drop parentheses in generalized conjunctions)}Leftrightarrow$$
$$[(neg P land A land neg P land B)lor(neg 𝑃 land Cland neg 𝑃 land D)]lor [(R land Aland R land B) lor (R land C land R land D)] overset{Commutation}Leftrightarrow$$
$$[(neg P land neg P land A land B)lor(neg 𝑃 land neg 𝑃 land C land D)]lor [(R land R land A land B) lor (R land R land C land D)] overset{Idempotence}Leftrightarrow$$
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
... which is exactly what you got from case 1
In other words, had you used proper parentheses, both results would have been correct!
That said, I have a feeling you did the following to get to case 2:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg P land ((Aland B)lor (Cland D))] lor [(R land ((Aland B)lor (Cland D))]=$$
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]=$$
$$[(neg P land A) land (neg P land B)) lor (neg P land C) land (neg P land D))] lor [(R land A) land (R land B))lor (R land C) land (R land D))]$$
That is, you acted as if that last step was a Distribution ... but it isn't! ... because you end up distributing a $land$ over a $land$. Distribution is $land$ over $lor$ or vice versa.
So, you should have just stopped 1 line earlier, and thus have ended up with
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]$$
but since $land$ is Associative you can drop some parantheses and thus get:
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
and since $lor$ is Associative you can drop those square brackets as well:
$$(neg P land A land B)lor(neg 𝑃 land C land D)lor (R land A land B) lor (R land C land D)$$
$endgroup$
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
1
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
add a comment |
$begingroup$
Case 1 is right. Case 2 is not even a formula since some parentheses are missing: in $(lnot P lor A) land (lnot P land B) lor (lnot P lor C) land (lnot P lor D)$ it is not clear what is the principal connective.
Let us see why case 1 is correct. Essentially, you use repeatedly the following distributive law (together with associativity and commutativity):
begin{align}
A land (B lor C) &equiv (A land B) lor (A land C)
end{align}
By applying step-by-step this equivalence rule, you get:
begin{align}
&(neg P lor R) color{red}{land} big((Aland B) color{red}{lor} (Cland D)big) \
text{(distributivity) } equiv & ((neg P lor R) land (A land B)) lor ((neg P lor R) land (C land D)) \
text{(commutativity) } equiv & ((A land B) color{red}{land} (neg P color{red}{lor} R)) lor ((C land D) color{red}{land} (neg P color{red}{lor} R)) \
text{(distributivity) } equiv & big(((A land B) land neg P) lor ((A land B) land R)big) lor big(((C land D) land lnot P) lor ((C land D) land R)big) \
text{(associativity) } equiv & big((A land B land neg P) lor (A land B land R)big) lor big((C land D land lnot P) lor (C land D land R)big)
end{align}
$endgroup$
add a comment |
Your Answer
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%2f3097762%2fhow-to-distribute-neg-lor-land-neg-lor-land-lor-n%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
$begingroup$
Case 1 is correct.
What you end up with in case 2 is ungrammatical ... you'll need to add some parentheses. I assume you meant:
$$[color{red}((neg P color{red}land A) land (neg P land B)color{red})lorcolor{red}((neg 𝑃 land C)∧(neg 𝑃 land Dcolor{red})color{red})]lor [color{red}((R land A)land (R land B)) lor color{red}((R land C) land (R land D)color{red})]$$
But note that that is equivalent to:
$$[((neg P land A) land (neg P land B))lor((neg 𝑃 land C)land(neg 𝑃 land D))]lor [((R land A)land (R land B)) lor ((R land C) land (R land D))] overset{Association (drop parentheses in generalized conjunctions)}Leftrightarrow$$
$$[(neg P land A land neg P land B)lor(neg 𝑃 land Cland neg 𝑃 land D)]lor [(R land Aland R land B) lor (R land C land R land D)] overset{Commutation}Leftrightarrow$$
$$[(neg P land neg P land A land B)lor(neg 𝑃 land neg 𝑃 land C land D)]lor [(R land R land A land B) lor (R land R land C land D)] overset{Idempotence}Leftrightarrow$$
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
... which is exactly what you got from case 1
In other words, had you used proper parentheses, both results would have been correct!
That said, I have a feeling you did the following to get to case 2:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg P land ((Aland B)lor (Cland D))] lor [(R land ((Aland B)lor (Cland D))]=$$
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]=$$
$$[(neg P land A) land (neg P land B)) lor (neg P land C) land (neg P land D))] lor [(R land A) land (R land B))lor (R land C) land (R land D))]$$
That is, you acted as if that last step was a Distribution ... but it isn't! ... because you end up distributing a $land$ over a $land$. Distribution is $land$ over $lor$ or vice versa.
So, you should have just stopped 1 line earlier, and thus have ended up with
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]$$
but since $land$ is Associative you can drop some parantheses and thus get:
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
and since $lor$ is Associative you can drop those square brackets as well:
$$(neg P land A land B)lor(neg 𝑃 land C land D)lor (R land A land B) lor (R land C land D)$$
$endgroup$
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
1
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
add a comment |
$begingroup$
Case 1 is correct.
What you end up with in case 2 is ungrammatical ... you'll need to add some parentheses. I assume you meant:
$$[color{red}((neg P color{red}land A) land (neg P land B)color{red})lorcolor{red}((neg 𝑃 land C)∧(neg 𝑃 land Dcolor{red})color{red})]lor [color{red}((R land A)land (R land B)) lor color{red}((R land C) land (R land D)color{red})]$$
But note that that is equivalent to:
$$[((neg P land A) land (neg P land B))lor((neg 𝑃 land C)land(neg 𝑃 land D))]lor [((R land A)land (R land B)) lor ((R land C) land (R land D))] overset{Association (drop parentheses in generalized conjunctions)}Leftrightarrow$$
$$[(neg P land A land neg P land B)lor(neg 𝑃 land Cland neg 𝑃 land D)]lor [(R land Aland R land B) lor (R land C land R land D)] overset{Commutation}Leftrightarrow$$
$$[(neg P land neg P land A land B)lor(neg 𝑃 land neg 𝑃 land C land D)]lor [(R land R land A land B) lor (R land R land C land D)] overset{Idempotence}Leftrightarrow$$
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
... which is exactly what you got from case 1
In other words, had you used proper parentheses, both results would have been correct!
That said, I have a feeling you did the following to get to case 2:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg P land ((Aland B)lor (Cland D))] lor [(R land ((Aland B)lor (Cland D))]=$$
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]=$$
$$[(neg P land A) land (neg P land B)) lor (neg P land C) land (neg P land D))] lor [(R land A) land (R land B))lor (R land C) land (R land D))]$$
That is, you acted as if that last step was a Distribution ... but it isn't! ... because you end up distributing a $land$ over a $land$. Distribution is $land$ over $lor$ or vice versa.
So, you should have just stopped 1 line earlier, and thus have ended up with
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]$$
but since $land$ is Associative you can drop some parantheses and thus get:
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
and since $lor$ is Associative you can drop those square brackets as well:
$$(neg P land A land B)lor(neg 𝑃 land C land D)lor (R land A land B) lor (R land C land D)$$
$endgroup$
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
1
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
add a comment |
$begingroup$
Case 1 is correct.
What you end up with in case 2 is ungrammatical ... you'll need to add some parentheses. I assume you meant:
$$[color{red}((neg P color{red}land A) land (neg P land B)color{red})lorcolor{red}((neg 𝑃 land C)∧(neg 𝑃 land Dcolor{red})color{red})]lor [color{red}((R land A)land (R land B)) lor color{red}((R land C) land (R land D)color{red})]$$
But note that that is equivalent to:
$$[((neg P land A) land (neg P land B))lor((neg 𝑃 land C)land(neg 𝑃 land D))]lor [((R land A)land (R land B)) lor ((R land C) land (R land D))] overset{Association (drop parentheses in generalized conjunctions)}Leftrightarrow$$
$$[(neg P land A land neg P land B)lor(neg 𝑃 land Cland neg 𝑃 land D)]lor [(R land Aland R land B) lor (R land C land R land D)] overset{Commutation}Leftrightarrow$$
$$[(neg P land neg P land A land B)lor(neg 𝑃 land neg 𝑃 land C land D)]lor [(R land R land A land B) lor (R land R land C land D)] overset{Idempotence}Leftrightarrow$$
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
... which is exactly what you got from case 1
In other words, had you used proper parentheses, both results would have been correct!
That said, I have a feeling you did the following to get to case 2:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg P land ((Aland B)lor (Cland D))] lor [(R land ((Aland B)lor (Cland D))]=$$
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]=$$
$$[(neg P land A) land (neg P land B)) lor (neg P land C) land (neg P land D))] lor [(R land A) land (R land B))lor (R land C) land (R land D))]$$
That is, you acted as if that last step was a Distribution ... but it isn't! ... because you end up distributing a $land$ over a $land$. Distribution is $land$ over $lor$ or vice versa.
So, you should have just stopped 1 line earlier, and thus have ended up with
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]$$
but since $land$ is Associative you can drop some parantheses and thus get:
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
and since $lor$ is Associative you can drop those square brackets as well:
$$(neg P land A land B)lor(neg 𝑃 land C land D)lor (R land A land B) lor (R land C land D)$$
$endgroup$
Case 1 is correct.
What you end up with in case 2 is ungrammatical ... you'll need to add some parentheses. I assume you meant:
$$[color{red}((neg P color{red}land A) land (neg P land B)color{red})lorcolor{red}((neg 𝑃 land C)∧(neg 𝑃 land Dcolor{red})color{red})]lor [color{red}((R land A)land (R land B)) lor color{red}((R land C) land (R land D)color{red})]$$
But note that that is equivalent to:
$$[((neg P land A) land (neg P land B))lor((neg 𝑃 land C)land(neg 𝑃 land D))]lor [((R land A)land (R land B)) lor ((R land C) land (R land D))] overset{Association (drop parentheses in generalized conjunctions)}Leftrightarrow$$
$$[(neg P land A land neg P land B)lor(neg 𝑃 land Cland neg 𝑃 land D)]lor [(R land Aland R land B) lor (R land C land R land D)] overset{Commutation}Leftrightarrow$$
$$[(neg P land neg P land A land B)lor(neg 𝑃 land neg 𝑃 land C land D)]lor [(R land R land A land B) lor (R land R land C land D)] overset{Idempotence}Leftrightarrow$$
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
... which is exactly what you got from case 1
In other words, had you used proper parentheses, both results would have been correct!
That said, I have a feeling you did the following to get to case 2:
$$(neg P lor R) land [(Aland B)lor (Cland D)]=$$
$$[(neg P land ((Aland B)lor (Cland D))] lor [(R land ((Aland B)lor (Cland D))]=$$
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]=$$
$$[(neg P land A) land (neg P land B)) lor (neg P land C) land (neg P land D))] lor [(R land A) land (R land B))lor (R land C) land (R land D))]$$
That is, you acted as if that last step was a Distribution ... but it isn't! ... because you end up distributing a $land$ over a $land$. Distribution is $land$ over $lor$ or vice versa.
So, you should have just stopped 1 line earlier, and thus have ended up with
$$[(neg P land (Aland B)) lor (neg P land (Cland D))] lor [(R land (Aland B))lor (R land (Cland D))]$$
but since $land$ is Associative you can drop some parantheses and thus get:
$$[(neg P land A land B)lor(neg 𝑃 land C land D)]lor [(R land A land B) lor (R land C land D)]$$
and since $lor$ is Associative you can drop those square brackets as well:
$$(neg P land A land B)lor(neg 𝑃 land C land D)lor (R land A land B) lor (R land C land D)$$
edited Feb 2 at 20:55
answered Feb 2 at 20:34
Bram28Bram28
64.5k44793
64.5k44793
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
1
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
add a comment |
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
1
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
$begingroup$
Your edit clarifies it for me. Thank you!
$endgroup$
– tree_traversal
Feb 2 at 20:55
1
1
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
$begingroup$
@tree_traversal OK ... added just a little more at the end ... glad I could help!
$endgroup$
– Bram28
Feb 2 at 20:55
add a comment |
$begingroup$
Case 1 is right. Case 2 is not even a formula since some parentheses are missing: in $(lnot P lor A) land (lnot P land B) lor (lnot P lor C) land (lnot P lor D)$ it is not clear what is the principal connective.
Let us see why case 1 is correct. Essentially, you use repeatedly the following distributive law (together with associativity and commutativity):
begin{align}
A land (B lor C) &equiv (A land B) lor (A land C)
end{align}
By applying step-by-step this equivalence rule, you get:
begin{align}
&(neg P lor R) color{red}{land} big((Aland B) color{red}{lor} (Cland D)big) \
text{(distributivity) } equiv & ((neg P lor R) land (A land B)) lor ((neg P lor R) land (C land D)) \
text{(commutativity) } equiv & ((A land B) color{red}{land} (neg P color{red}{lor} R)) lor ((C land D) color{red}{land} (neg P color{red}{lor} R)) \
text{(distributivity) } equiv & big(((A land B) land neg P) lor ((A land B) land R)big) lor big(((C land D) land lnot P) lor ((C land D) land R)big) \
text{(associativity) } equiv & big((A land B land neg P) lor (A land B land R)big) lor big((C land D land lnot P) lor (C land D land R)big)
end{align}
$endgroup$
add a comment |
$begingroup$
Case 1 is right. Case 2 is not even a formula since some parentheses are missing: in $(lnot P lor A) land (lnot P land B) lor (lnot P lor C) land (lnot P lor D)$ it is not clear what is the principal connective.
Let us see why case 1 is correct. Essentially, you use repeatedly the following distributive law (together with associativity and commutativity):
begin{align}
A land (B lor C) &equiv (A land B) lor (A land C)
end{align}
By applying step-by-step this equivalence rule, you get:
begin{align}
&(neg P lor R) color{red}{land} big((Aland B) color{red}{lor} (Cland D)big) \
text{(distributivity) } equiv & ((neg P lor R) land (A land B)) lor ((neg P lor R) land (C land D)) \
text{(commutativity) } equiv & ((A land B) color{red}{land} (neg P color{red}{lor} R)) lor ((C land D) color{red}{land} (neg P color{red}{lor} R)) \
text{(distributivity) } equiv & big(((A land B) land neg P) lor ((A land B) land R)big) lor big(((C land D) land lnot P) lor ((C land D) land R)big) \
text{(associativity) } equiv & big((A land B land neg P) lor (A land B land R)big) lor big((C land D land lnot P) lor (C land D land R)big)
end{align}
$endgroup$
add a comment |
$begingroup$
Case 1 is right. Case 2 is not even a formula since some parentheses are missing: in $(lnot P lor A) land (lnot P land B) lor (lnot P lor C) land (lnot P lor D)$ it is not clear what is the principal connective.
Let us see why case 1 is correct. Essentially, you use repeatedly the following distributive law (together with associativity and commutativity):
begin{align}
A land (B lor C) &equiv (A land B) lor (A land C)
end{align}
By applying step-by-step this equivalence rule, you get:
begin{align}
&(neg P lor R) color{red}{land} big((Aland B) color{red}{lor} (Cland D)big) \
text{(distributivity) } equiv & ((neg P lor R) land (A land B)) lor ((neg P lor R) land (C land D)) \
text{(commutativity) } equiv & ((A land B) color{red}{land} (neg P color{red}{lor} R)) lor ((C land D) color{red}{land} (neg P color{red}{lor} R)) \
text{(distributivity) } equiv & big(((A land B) land neg P) lor ((A land B) land R)big) lor big(((C land D) land lnot P) lor ((C land D) land R)big) \
text{(associativity) } equiv & big((A land B land neg P) lor (A land B land R)big) lor big((C land D land lnot P) lor (C land D land R)big)
end{align}
$endgroup$
Case 1 is right. Case 2 is not even a formula since some parentheses are missing: in $(lnot P lor A) land (lnot P land B) lor (lnot P lor C) land (lnot P lor D)$ it is not clear what is the principal connective.
Let us see why case 1 is correct. Essentially, you use repeatedly the following distributive law (together with associativity and commutativity):
begin{align}
A land (B lor C) &equiv (A land B) lor (A land C)
end{align}
By applying step-by-step this equivalence rule, you get:
begin{align}
&(neg P lor R) color{red}{land} big((Aland B) color{red}{lor} (Cland D)big) \
text{(distributivity) } equiv & ((neg P lor R) land (A land B)) lor ((neg P lor R) land (C land D)) \
text{(commutativity) } equiv & ((A land B) color{red}{land} (neg P color{red}{lor} R)) lor ((C land D) color{red}{land} (neg P color{red}{lor} R)) \
text{(distributivity) } equiv & big(((A land B) land neg P) lor ((A land B) land R)big) lor big(((C land D) land lnot P) lor ((C land D) land R)big) \
text{(associativity) } equiv & big((A land B land neg P) lor (A land B land R)big) lor big((C land D land lnot P) lor (C land D land R)big)
end{align}
edited Feb 3 at 8:20
answered Feb 2 at 21:08
TaroccoesbroccoTaroccoesbrocco
5,87471840
5,87471840
add a comment |
add a 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.
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%2f3097762%2fhow-to-distribute-neg-lor-land-neg-lor-land-lor-n%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