Tagged Questions
10
votes
5answers
458 views
XOR of three values
What is the simplest way to do a three-way exclusive OR?
In other words, I have three values, and I want a statement that evaluates to true IFF only one of the three values is true.
So far, this is ...
5
votes
8answers
176 views
Not able to figure out the logical error in C program
A program that prints its input one word per line.
int main() {
int c;
while ((c=getchar()) != EOF) {
if (c== ' ' || c== '\n' ||c == '\t')
putchar('\n');
...
3
votes
4answers
2k views
Generating truth tables for logic expressions in Haskell
I completely forgot about my Haskell project which is due in a couple of hours, any help would be appreciated.
The first part is an evaluation function that has the following type signature:
...
2
votes
3answers
86 views
Why is it important to express code in Disjunctive Normal Form?
At the company I work for, there has recently been a mandate that all 'highly visibile' boolean logic must be expressed in Disjunctive Normal Form.
So for instance (though the concept is language ...
0
votes
2answers
198 views
Draw a circuit realization of the exclusive OR function (XOR) with two inputs. You may use AND, OR and NOT gates [closed]
I am trying to figure out a way of doing this without simply learning all the gates, how would you work this out? I am familiar with boolean algebra and drawing circuits, just not how to work out a ...
0
votes
0answers
113 views
Constructing logic gates from only AND, OR and NOT gates
I am doing some revision for my exams and one of the questions that frequently occurs is to construct logic gates using only the functions AND, OR and NOT. The most commonly occurring ones are NAND, ...