How to write this boolean expression using only NOR gates?
I'm having some trouble understanding how I can convert a boolean expression to a NOR-gate only expression.
What I'm working with looks like $T = A B' C + A' B C' + A B$. How would I go into implementing it with NOR gates?
digital-logic
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm having some trouble understanding how I can convert a boolean expression to a NOR-gate only expression.
What I'm working with looks like $T = A B' C + A' B C' + A B$. How would I go into implementing it with NOR gates?
digital-logic
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
You might want to start by minimizing the logic expression. It's not a requirement. But it often helps solve the problem faster, if you do that first. Then, ask yourself, "What is the template for a NOR gate?" There is some imagination involved. But it's not hard to just start with that template and work towards it. Can you show any thoughts or work?
– jonk
1 hour ago
add a comment |
I'm having some trouble understanding how I can convert a boolean expression to a NOR-gate only expression.
What I'm working with looks like $T = A B' C + A' B C' + A B$. How would I go into implementing it with NOR gates?
digital-logic
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm having some trouble understanding how I can convert a boolean expression to a NOR-gate only expression.
What I'm working with looks like $T = A B' C + A' B C' + A B$. How would I go into implementing it with NOR gates?
digital-logic
digital-logic
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 1 hour ago
Renan
4,29222144
4,29222144
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 1 hour ago
Eslem Med
42
42
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Eslem Med is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
You might want to start by minimizing the logic expression. It's not a requirement. But it often helps solve the problem faster, if you do that first. Then, ask yourself, "What is the template for a NOR gate?" There is some imagination involved. But it's not hard to just start with that template and work towards it. Can you show any thoughts or work?
– jonk
1 hour ago
add a comment |
You might want to start by minimizing the logic expression. It's not a requirement. But it often helps solve the problem faster, if you do that first. Then, ask yourself, "What is the template for a NOR gate?" There is some imagination involved. But it's not hard to just start with that template and work towards it. Can you show any thoughts or work?
– jonk
1 hour ago
You might want to start by minimizing the logic expression. It's not a requirement. But it often helps solve the problem faster, if you do that first. Then, ask yourself, "What is the template for a NOR gate?" There is some imagination involved. But it's not hard to just start with that template and work towards it. Can you show any thoughts or work?
– jonk
1 hour ago
You might want to start by minimizing the logic expression. It's not a requirement. But it often helps solve the problem faster, if you do that first. Then, ask yourself, "What is the template for a NOR gate?" There is some imagination involved. But it's not hard to just start with that template and work towards it. Can you show any thoughts or work?
– jonk
1 hour ago
add a comment |
4 Answers
4
active
oldest
votes
Your Boolean equation has the NOT, AND, and OR operators in it. DeMorgan's Law says that you can perform an AND function with a NOR gate or an OR function with a NAND gate. If you tie the two inputs of a NOR gate together, what kind of function does that give you?
Since this looks like homework, I'll let you fill in the details.
add a comment |
I'll give you a hint. If you missed DeMorgan's Theorem in lecture, you need to look it up. Briefly, the following two gates are identical

simulate this circuit – Schematic created using CircuitLab
The rest is up to you.
add a comment |
I'll provide some direction to head. Since your question isn't so much about simplification, I'll do the simplification without any further ado. Then I'll provide a direction to head from that point but I'll leave some work you'll need to perform yourself.
Simplify
Let's simplify the expression:
$$begin{align*}
T &= A,overline{B},C + overline{A},B,overline{C} + A,B\
&= A,overline{B},C + overline{A},B,overline{C} + A,B,overline{C} + A,B,C\
&= Aleft(overline{B},C + B,overline{C} + B,Cright) + overline{A},B,overline{C}\
&= A,overline{overline{B},overline{C}} + overline{A},B,overline{C}\
&= A,B + A,C + overline{A},B,overline{C}\
&= A,C + Bleft(A + overline{A},overline{C}right)\
&= A,C + Bleft(A + overline{C}right)\
&= A,C + A,B + B,overline{C}
end{align*}$$
From there, you can see that if $A$ and $B$ are both true, the expression $T=A,C+B,overline{C}$ already captures the term, $A,B$, as one or the other is picked up regardless of $C$. So $T=A,C+B,overline{C}$ is the simplified version.
The above isn't the only, nor even the best approach to simplification. It's just one I decided to write out, off-hand.
Applying the NOR gate template
The basic model of a NOR gate, as I'm sure you know, is $T=overline{R+S}$. That's the template. The question is, how do you take an arbitrary expression and make it conform?
I'll start you out:
$$begin{align*}
T&=A,C+B,overline{C}\\
&=overline{overline{A,C+B,overline{C}}}\\
&=overline{overline{A,C}cdotoverline{B,overline{C}}}\\
&=overline{left(overline{A}+overline{C}right)cdotleft(overline{B}+Cright)}\\
&=overline{overline{A},overline{B}+overline{A},C+overline{B},overline{C}}\\
&=overline{overline{A}left(overline{B}+Cright)+overline{B},overline{C}}
end{align*}$$
At this point, you can see that if $T=overline{R+S}$ then $R=overline{A}left(overline{B}+Cright)$ and $S=overline{B},overline{C}$. So you are closer to an answer, now. But you have two new situations to resolve.
I'll solve $S$:
$$begin{align*}
S&=overline{B},overline{C}\\
&=overline{overline{overline{B},overline{C}}}\\
&=overline{B+C}\\
end{align*}$$
And that easily fits the model of a NOR with no additional work.
You get to resolve $R$, now. Once you walk yourself through that process, you should find a requirement for exactly five NOR gates. I've only shown you the first two of them. You get to find the other three.
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
add a comment |
NAND and NOR gates are universal. So one way to solve this problem is first reduce the logic using K-maps or whatever, then draw it out with AND, OR, and NOT gates. Then use bubble pushing identity techniques to convert the gates to the desired type.

simulate this circuit – Schematic created using CircuitLab
add a 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.ifUsing("editor", function () {
return StackExchange.using("schematics", function () {
StackExchange.schematics.init();
});
}, "cicuitlab");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "135"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Eslem Med is a new contributor. Be nice, and check out our Code of Conduct.
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%2felectronics.stackexchange.com%2fquestions%2f415436%2fhow-to-write-this-boolean-expression-using-only-nor-gates%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your Boolean equation has the NOT, AND, and OR operators in it. DeMorgan's Law says that you can perform an AND function with a NOR gate or an OR function with a NAND gate. If you tie the two inputs of a NOR gate together, what kind of function does that give you?
Since this looks like homework, I'll let you fill in the details.
add a comment |
Your Boolean equation has the NOT, AND, and OR operators in it. DeMorgan's Law says that you can perform an AND function with a NOR gate or an OR function with a NAND gate. If you tie the two inputs of a NOR gate together, what kind of function does that give you?
Since this looks like homework, I'll let you fill in the details.
add a comment |
Your Boolean equation has the NOT, AND, and OR operators in it. DeMorgan's Law says that you can perform an AND function with a NOR gate or an OR function with a NAND gate. If you tie the two inputs of a NOR gate together, what kind of function does that give you?
Since this looks like homework, I'll let you fill in the details.
Your Boolean equation has the NOT, AND, and OR operators in it. DeMorgan's Law says that you can perform an AND function with a NOR gate or an OR function with a NAND gate. If you tie the two inputs of a NOR gate together, what kind of function does that give you?
Since this looks like homework, I'll let you fill in the details.
answered 1 hour ago
Elliot Alderson
4,9551918
4,9551918
add a comment |
add a comment |
I'll give you a hint. If you missed DeMorgan's Theorem in lecture, you need to look it up. Briefly, the following two gates are identical

simulate this circuit – Schematic created using CircuitLab
The rest is up to you.
add a comment |
I'll give you a hint. If you missed DeMorgan's Theorem in lecture, you need to look it up. Briefly, the following two gates are identical

simulate this circuit – Schematic created using CircuitLab
The rest is up to you.
add a comment |
I'll give you a hint. If you missed DeMorgan's Theorem in lecture, you need to look it up. Briefly, the following two gates are identical

simulate this circuit – Schematic created using CircuitLab
The rest is up to you.
I'll give you a hint. If you missed DeMorgan's Theorem in lecture, you need to look it up. Briefly, the following two gates are identical

simulate this circuit – Schematic created using CircuitLab
The rest is up to you.
answered 45 mins ago
WhatRoughBeast
49.1k22874
49.1k22874
add a comment |
add a comment |
I'll provide some direction to head. Since your question isn't so much about simplification, I'll do the simplification without any further ado. Then I'll provide a direction to head from that point but I'll leave some work you'll need to perform yourself.
Simplify
Let's simplify the expression:
$$begin{align*}
T &= A,overline{B},C + overline{A},B,overline{C} + A,B\
&= A,overline{B},C + overline{A},B,overline{C} + A,B,overline{C} + A,B,C\
&= Aleft(overline{B},C + B,overline{C} + B,Cright) + overline{A},B,overline{C}\
&= A,overline{overline{B},overline{C}} + overline{A},B,overline{C}\
&= A,B + A,C + overline{A},B,overline{C}\
&= A,C + Bleft(A + overline{A},overline{C}right)\
&= A,C + Bleft(A + overline{C}right)\
&= A,C + A,B + B,overline{C}
end{align*}$$
From there, you can see that if $A$ and $B$ are both true, the expression $T=A,C+B,overline{C}$ already captures the term, $A,B$, as one or the other is picked up regardless of $C$. So $T=A,C+B,overline{C}$ is the simplified version.
The above isn't the only, nor even the best approach to simplification. It's just one I decided to write out, off-hand.
Applying the NOR gate template
The basic model of a NOR gate, as I'm sure you know, is $T=overline{R+S}$. That's the template. The question is, how do you take an arbitrary expression and make it conform?
I'll start you out:
$$begin{align*}
T&=A,C+B,overline{C}\\
&=overline{overline{A,C+B,overline{C}}}\\
&=overline{overline{A,C}cdotoverline{B,overline{C}}}\\
&=overline{left(overline{A}+overline{C}right)cdotleft(overline{B}+Cright)}\\
&=overline{overline{A},overline{B}+overline{A},C+overline{B},overline{C}}\\
&=overline{overline{A}left(overline{B}+Cright)+overline{B},overline{C}}
end{align*}$$
At this point, you can see that if $T=overline{R+S}$ then $R=overline{A}left(overline{B}+Cright)$ and $S=overline{B},overline{C}$. So you are closer to an answer, now. But you have two new situations to resolve.
I'll solve $S$:
$$begin{align*}
S&=overline{B},overline{C}\\
&=overline{overline{overline{B},overline{C}}}\\
&=overline{B+C}\\
end{align*}$$
And that easily fits the model of a NOR with no additional work.
You get to resolve $R$, now. Once you walk yourself through that process, you should find a requirement for exactly five NOR gates. I've only shown you the first two of them. You get to find the other three.
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
add a comment |
I'll provide some direction to head. Since your question isn't so much about simplification, I'll do the simplification without any further ado. Then I'll provide a direction to head from that point but I'll leave some work you'll need to perform yourself.
Simplify
Let's simplify the expression:
$$begin{align*}
T &= A,overline{B},C + overline{A},B,overline{C} + A,B\
&= A,overline{B},C + overline{A},B,overline{C} + A,B,overline{C} + A,B,C\
&= Aleft(overline{B},C + B,overline{C} + B,Cright) + overline{A},B,overline{C}\
&= A,overline{overline{B},overline{C}} + overline{A},B,overline{C}\
&= A,B + A,C + overline{A},B,overline{C}\
&= A,C + Bleft(A + overline{A},overline{C}right)\
&= A,C + Bleft(A + overline{C}right)\
&= A,C + A,B + B,overline{C}
end{align*}$$
From there, you can see that if $A$ and $B$ are both true, the expression $T=A,C+B,overline{C}$ already captures the term, $A,B$, as one or the other is picked up regardless of $C$. So $T=A,C+B,overline{C}$ is the simplified version.
The above isn't the only, nor even the best approach to simplification. It's just one I decided to write out, off-hand.
Applying the NOR gate template
The basic model of a NOR gate, as I'm sure you know, is $T=overline{R+S}$. That's the template. The question is, how do you take an arbitrary expression and make it conform?
I'll start you out:
$$begin{align*}
T&=A,C+B,overline{C}\\
&=overline{overline{A,C+B,overline{C}}}\\
&=overline{overline{A,C}cdotoverline{B,overline{C}}}\\
&=overline{left(overline{A}+overline{C}right)cdotleft(overline{B}+Cright)}\\
&=overline{overline{A},overline{B}+overline{A},C+overline{B},overline{C}}\\
&=overline{overline{A}left(overline{B}+Cright)+overline{B},overline{C}}
end{align*}$$
At this point, you can see that if $T=overline{R+S}$ then $R=overline{A}left(overline{B}+Cright)$ and $S=overline{B},overline{C}$. So you are closer to an answer, now. But you have two new situations to resolve.
I'll solve $S$:
$$begin{align*}
S&=overline{B},overline{C}\\
&=overline{overline{overline{B},overline{C}}}\\
&=overline{B+C}\\
end{align*}$$
And that easily fits the model of a NOR with no additional work.
You get to resolve $R$, now. Once you walk yourself through that process, you should find a requirement for exactly five NOR gates. I've only shown you the first two of them. You get to find the other three.
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
add a comment |
I'll provide some direction to head. Since your question isn't so much about simplification, I'll do the simplification without any further ado. Then I'll provide a direction to head from that point but I'll leave some work you'll need to perform yourself.
Simplify
Let's simplify the expression:
$$begin{align*}
T &= A,overline{B},C + overline{A},B,overline{C} + A,B\
&= A,overline{B},C + overline{A},B,overline{C} + A,B,overline{C} + A,B,C\
&= Aleft(overline{B},C + B,overline{C} + B,Cright) + overline{A},B,overline{C}\
&= A,overline{overline{B},overline{C}} + overline{A},B,overline{C}\
&= A,B + A,C + overline{A},B,overline{C}\
&= A,C + Bleft(A + overline{A},overline{C}right)\
&= A,C + Bleft(A + overline{C}right)\
&= A,C + A,B + B,overline{C}
end{align*}$$
From there, you can see that if $A$ and $B$ are both true, the expression $T=A,C+B,overline{C}$ already captures the term, $A,B$, as one or the other is picked up regardless of $C$. So $T=A,C+B,overline{C}$ is the simplified version.
The above isn't the only, nor even the best approach to simplification. It's just one I decided to write out, off-hand.
Applying the NOR gate template
The basic model of a NOR gate, as I'm sure you know, is $T=overline{R+S}$. That's the template. The question is, how do you take an arbitrary expression and make it conform?
I'll start you out:
$$begin{align*}
T&=A,C+B,overline{C}\\
&=overline{overline{A,C+B,overline{C}}}\\
&=overline{overline{A,C}cdotoverline{B,overline{C}}}\\
&=overline{left(overline{A}+overline{C}right)cdotleft(overline{B}+Cright)}\\
&=overline{overline{A},overline{B}+overline{A},C+overline{B},overline{C}}\\
&=overline{overline{A}left(overline{B}+Cright)+overline{B},overline{C}}
end{align*}$$
At this point, you can see that if $T=overline{R+S}$ then $R=overline{A}left(overline{B}+Cright)$ and $S=overline{B},overline{C}$. So you are closer to an answer, now. But you have two new situations to resolve.
I'll solve $S$:
$$begin{align*}
S&=overline{B},overline{C}\\
&=overline{overline{overline{B},overline{C}}}\\
&=overline{B+C}\\
end{align*}$$
And that easily fits the model of a NOR with no additional work.
You get to resolve $R$, now. Once you walk yourself through that process, you should find a requirement for exactly five NOR gates. I've only shown you the first two of them. You get to find the other three.
I'll provide some direction to head. Since your question isn't so much about simplification, I'll do the simplification without any further ado. Then I'll provide a direction to head from that point but I'll leave some work you'll need to perform yourself.
Simplify
Let's simplify the expression:
$$begin{align*}
T &= A,overline{B},C + overline{A},B,overline{C} + A,B\
&= A,overline{B},C + overline{A},B,overline{C} + A,B,overline{C} + A,B,C\
&= Aleft(overline{B},C + B,overline{C} + B,Cright) + overline{A},B,overline{C}\
&= A,overline{overline{B},overline{C}} + overline{A},B,overline{C}\
&= A,B + A,C + overline{A},B,overline{C}\
&= A,C + Bleft(A + overline{A},overline{C}right)\
&= A,C + Bleft(A + overline{C}right)\
&= A,C + A,B + B,overline{C}
end{align*}$$
From there, you can see that if $A$ and $B$ are both true, the expression $T=A,C+B,overline{C}$ already captures the term, $A,B$, as one or the other is picked up regardless of $C$. So $T=A,C+B,overline{C}$ is the simplified version.
The above isn't the only, nor even the best approach to simplification. It's just one I decided to write out, off-hand.
Applying the NOR gate template
The basic model of a NOR gate, as I'm sure you know, is $T=overline{R+S}$. That's the template. The question is, how do you take an arbitrary expression and make it conform?
I'll start you out:
$$begin{align*}
T&=A,C+B,overline{C}\\
&=overline{overline{A,C+B,overline{C}}}\\
&=overline{overline{A,C}cdotoverline{B,overline{C}}}\\
&=overline{left(overline{A}+overline{C}right)cdotleft(overline{B}+Cright)}\\
&=overline{overline{A},overline{B}+overline{A},C+overline{B},overline{C}}\\
&=overline{overline{A}left(overline{B}+Cright)+overline{B},overline{C}}
end{align*}$$
At this point, you can see that if $T=overline{R+S}$ then $R=overline{A}left(overline{B}+Cright)$ and $S=overline{B},overline{C}$. So you are closer to an answer, now. But you have two new situations to resolve.
I'll solve $S$:
$$begin{align*}
S&=overline{B},overline{C}\\
&=overline{overline{overline{B},overline{C}}}\\
&=overline{B+C}\\
end{align*}$$
And that easily fits the model of a NOR with no additional work.
You get to resolve $R$, now. Once you walk yourself through that process, you should find a requirement for exactly five NOR gates. I've only shown you the first two of them. You get to find the other three.
answered 39 mins ago
jonk
32.3k12570
32.3k12570
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
add a comment |
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
The original equation simplifies further than you suggest... to AC+BC’
– vicatcu
4 mins ago
add a comment |
NAND and NOR gates are universal. So one way to solve this problem is first reduce the logic using K-maps or whatever, then draw it out with AND, OR, and NOT gates. Then use bubble pushing identity techniques to convert the gates to the desired type.

simulate this circuit – Schematic created using CircuitLab
add a comment |
NAND and NOR gates are universal. So one way to solve this problem is first reduce the logic using K-maps or whatever, then draw it out with AND, OR, and NOT gates. Then use bubble pushing identity techniques to convert the gates to the desired type.

simulate this circuit – Schematic created using CircuitLab
add a comment |
NAND and NOR gates are universal. So one way to solve this problem is first reduce the logic using K-maps or whatever, then draw it out with AND, OR, and NOT gates. Then use bubble pushing identity techniques to convert the gates to the desired type.

simulate this circuit – Schematic created using CircuitLab
NAND and NOR gates are universal. So one way to solve this problem is first reduce the logic using K-maps or whatever, then draw it out with AND, OR, and NOT gates. Then use bubble pushing identity techniques to convert the gates to the desired type.

simulate this circuit – Schematic created using CircuitLab
edited 8 mins ago
answered 1 hour ago
vicatcu
16k861129
16k861129
add a comment |
add a comment |
Eslem Med is a new contributor. Be nice, and check out our Code of Conduct.
Eslem Med is a new contributor. Be nice, and check out our Code of Conduct.
Eslem Med is a new contributor. Be nice, and check out our Code of Conduct.
Eslem Med is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Electrical Engineering 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%2felectronics.stackexchange.com%2fquestions%2f415436%2fhow-to-write-this-boolean-expression-using-only-nor-gates%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
You might want to start by minimizing the logic expression. It's not a requirement. But it often helps solve the problem faster, if you do that first. Then, ask yourself, "What is the template for a NOR gate?" There is some imagination involved. But it's not hard to just start with that template and work towards it. Can you show any thoughts or work?
– jonk
1 hour ago