EDIT

Alright, so after reading quite a bit I came up with some stuff and I just want to make sure if I'm headed in the right direction.

Sx, Sy, and Sz would be sign bits in a full adder that detects overflow. Sz would be treated as a carry in.

The truth table would be as follows.

Sx  Sy  Sz  O

0   0   0   0
0   0   1   1
0   1   0   0
0   1   1   0
1   0   0   0
1   0   1   0 
1   1   0   1
1   1   1   0
link|improve this question

This question is off topic as it's not really a programming question. I'll simply say that you should read about sign bits and overflow. Here's a page to get you started: allaboutcircuits.com/vol_4/chpt_2/5.html – Anson Sep 29 '11 at 0:42
Your edit makes this more of a statement than a question, and it is (basically) purely math. – Tim Post Sep 29 '11 at 10:41
feedback

closed as off topic by Tim Post Sep 29 '11 at 10:41

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

3 Answers

Sounds like you really need to get a Boolean Algebra brush up. Wiki actually has a pretty good page to describe the different operations. I think once you get up to speed with these basic concepts, what you are looking for won't be too difficult. http://en.wikipedia.org/wiki/Boolean_algebra_(logic)

link|improve this answer
I have a whole book with a cd that goes into that stuff but I'm still particularly confused with this question. -_______- – BleuCheese Sep 29 '11 at 0:50
See edits please. – BleuCheese Sep 29 '11 at 2:33
feedback

Two hints:

negative + positive can never overflow

postive + positive overflows if and only if the result is negative

link|improve this answer
I know this also. My problem I guess is just visualizing the circle and the truth table. Is the Sz going to be the same as O because X + Y = Z and the output is O is my main question I guess. It's confusing me because it says Sz, Sy, and Sx are all inputs. :\ – BleuCheese Sep 29 '11 at 1:06
Sz, Sy, and Sz are inputs to your circuit (which you are designing). Sx and Sy are inputs to the adder circuit (which you are not designing; it already exists), and Sz is one of the outputs of that adder circuit. Your job is to determine whether the adder circuit overflowed. – Nemo Sep 29 '11 at 1:08
That's what I thought but the whole differentiating between whether I was figuring up the adder also was confusing. – BleuCheese Sep 29 '11 at 1:15
See edits please. – BleuCheese Sep 29 '11 at 2:24
feedback

Sx, Sy, Sz are inputs to the truth table. The output is O.

What you need to do is:

Write out a table for all combinations of Sx, Sy, Sz and the value of O that should yield. Remember, O indicates whether you have overflow or not.

Here is an example for unsigned integers:

Sx || Sy || Sz || O
====================
 0    0     0     0
 0    1     1     0
 1    0     1     0
 1    1     0     1

The sum of products here would be O = (Sx AND Sy)

link|improve this answer
See edits please. – BleuCheese Sep 29 '11 at 2:24
It looks better, however I you can only have 4 possible rows in the table. You can't have values of Sz where the sum result is invalid: for example Sx (0) + Sy(0) can only be either Sz(0) or Sz(1), not both since this is the definition of the adder. – filip-fku Sep 29 '11 at 2:33
feedback

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