How Do You Derive the Sum Formula for a Full Adder?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 10K views
King
Messages
43
Reaction score
0
Hi,
I've been trying to work out the formula for the sum for the full adder logic, however have come across a gap which I don't know how to fill.
S = (¬A.¬B.C) + (¬A.B.¬C) + (A.¬B.¬C) + (A.B.C)
S = ¬A.(¬B.C + B.¬C) + A.(¬B.¬C)
S = ¬A.(B [tex]\oplus[/tex] C) + A.( do not know what to do at this point to reach the next stage
S = (A [tex]\oplus[/tex] B) [tex]\oplus[/tex] C

Does anyone know how to get to that last statement?

Thanks for any help.
 
Last edited:
Physics news on Phys.org
King said:
Hi,
I've been trying to work out the formula for the sum for the full adder logic, however have come across a gap which I don't know how to fill.
S = (¬A.¬B.C) + (¬A.B.¬C) + (A.¬B.¬C) + (A.B.C)
S = ¬A.(¬B.C + B.¬C) + A.(¬B.¬C)
S = ¬A.(B [tex]\oplus[/tex] C) + A.( do not know what to do at this point to reach the next stage
S = (A [tex]\oplus[/tex] B) [tex]\oplus[/tex] C

Does anyone know how to get to that last statement?

Thanks for any help.


It's probably easiest to draw a Karnaugh map for the function, and use that to help your intuition in the reduction. Have you drawn a K-map for this yet?
 
Nope. I have never used one before.

Edit: How come this received a warning? This isn't homework or coursework. It's just studying.
 
King said:
Nope. I have never used one before.

Edit: How come this received a warning? This isn't homework or coursework. It's just studying.

Studying is coursework. Even if it's for self-study, it belongs in the Homework Help forums, and needs to follow the rules here. You can check out the Rules link at the top of the page for clarification.

The K-map is a great tool for helping you visualize logic reduction. Here's an intro to get you started -- there are lots of other learning resources for K-maps on the web:

http://en.wikipedia.org/wiki/Karnaugh_map

.
 
berkeman said:
Studying is coursework. Even if it's for self-study, it belongs in the Homework Help forums, and needs to follow the rules here. You can check out the Rules link at the top of the page for clarification.

That doesn't make sense since every thread in these forums is about help to understand something, so one could always link it to a course since there are courses for everything, and thus everything should therefore be in the Homework Help forums. But anyway...

Does anyone know how to solve this without the K-map since I don't really have colouring pencils to create this diagram, just a pen? Also, how would one solve this algebraically?