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 question like this.

A similar one from another past exam paper is : Draw a circuit realization of the equivalence function (EQ) with two inputs. You may use AND, OR and NOT-gates.

Hence, why I don't want to just learn off the gates, since nearly anything could be asked.

link|improve this question
feedback

closed as off topic by duffymo, martin clayton, Patrick McDonald, Kirk Woll, George Stocker May 6 '11 at 20:52

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

My first suggestion would be to understand the truth tables of the various gates.

Realizing that a XOR gate has the following truth table:

A | B | O
--+---+--
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 0

You might notice that this is basically an OR gate except when both inputs are 1.

In other words, it's an OR gate except when the AND of the inputs is 1. And in that case (when they're both 1, the output needs to be a zero).

Then you'd continue to try to turn your words describing your desired circuit into logic blocks.

You know that at this point, you need the following:

Input 1 --\ 
           > AND 
Input 2 --/      

Input 1 --\ 
           > OR
Input 2 --/

but now what?

Well, call these points A (at the AND gate output) and B (and the OR gate output) and figure out what their values are at the 4 input possibilities:

 I1 | I2 | A | B | N
----+----+---+---+---
 0  | 0  | 0 | 0 | 0
 0  | 1  | 0 | 1 | 1
 1  | 0  | 0 | 1 | 1
 1  | 1  | 1 | 1 | 0

where the N column represents what is needed.

Well, we're close, but it might not be clear what is needed at this point. So to visualize all our options, we can expand that table to also consider the complements of these outputs (that is, if we were to add a NOT gate after point A and B). Where /A and /B represent the compliments of A and B, our table becomes:

 I1 | I2 | A |/A | B |/B | N
----+----+---+---+---+---+---
 0  | 0  | 0 | 1 | 0 | 1 | 0
 0  | 1  | 0 | 1 | 1 | 0 | 1
 1  | 0  | 0 | 1 | 1 | 0 | 1
 1  | 1  | 1 | 0 | 1 | 0 | 0

Now, it might take some experimenting with options, maybe adding an OR gate here or there, but you should realize eventually that what is needed is to AND the outputs of /A and B, in other words, a circuit like this:

Input 1 --\ 
           > AND -(A)-> NOT -(/A)-\
Input 2 --/                        \
                                    > AND -- Output
Input 1 --\                        /
           > OR -(B)--------------/
Input 2 --/

Which would generate a truth table:

 I1 | I2 | A |/A | B | O
----+----+---+---+---+---
 0  | 0  | 0 | 1 | 0 | 0
 0  | 1  | 0 | 1 | 1 | 1
 1  | 0  | 0 | 1 | 1 | 1
 1  | 1  | 1 | 0 | 1 | 0

Hope this helps. My best suggestion for a general problem would be to think about the truth tables, and try to morph a construction of gates you're allowed to use slowly and iteratively into the construction that accomplishes your goal.

An alternative way...

Just one more note, another way problems can be solved is as follows: For any desired output, we'll call a "satisfying circuit" one that, whenever it is 1, the desired output is 1. That is, it can be 0 when the desired output is 1, but it can never be 1 when the desired output is zero.

For the desired output of an XOR gate, an example "satisfying circuit" is:

Input 1 (A) -- NOT ---\
                       > AND --- OUTPUT
Input 2 (B) ----------/

Which would have a truth table of:

 A | B | O
---+---+---
 0 | 0 | 0
 0 | 1 | 1
 1 | 0 | 0
 1 | 1 | 0

And as you can see, this meets our "satisfying circuit" definition.

So your goal using this method is to build up enough satisfying circuits such that at least one of them will give you an output of 1 for each input state where the desired output is 1. But remember, that it must hold that for each satisfying circuit, there must never be a situation where a 1 is produced as an output when a 0 is desired.

Once you've come up with enough satisfying circuits, you can simply OR them together.

So an additional satisfying circuit to our XOR problem is:

Input 1 (A) ----------\
                       > AND --- OUTPUT
Input 2 (B) -- NOT ---/

Together, these would individually produce 1s only when we desired 1s, and OR'ing them together as follows:

Input 1 (A) -- NOT ---\
                       > AND --(C)--\
Input 2 (B) ----------/              \
                                      > OR --- OUTPUT (O)
Input 1 (A) ----------\              /
                       > AND --(D)--/
Input 2 (B) -- NOT ---/

Gives us the following truth table (with points C and D defined in the graphic):

 A | B | C | D | O | N
---+---+---+---+---+---
 0 | 0 |   |   |   | 
 0 | 1 | 1 |   | 1 | 1
 1 | 0 |   | 1 | 1 | 1
 1 | 1 |   |   |   | 

Where the blank spaces are 0's and column N represents what is Needed / Desired.

As you can see, this circuit too realizes our goal of an XOR function.

One more thing (I promise, this is it)

It is interesting to note that the equivalence function that you mentioned on a previous exam is simply the complement of the XOR function (that is, an XOR gate followed by a NOT gate) -- check it out!

link|improve this answer
feedback

Just layout all the possible input and results then build the logic that realizes it:

XOR
inputs     result
0  0       0
0  1       1
1  0       1
1  1       0

Logic to realize this would be:

(A OR B) AND (NOT (A AND B))

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.