English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I am working with the below "Carry in" Truth Table

A B C SUM
0 0 0 0
0 0 1 1
0 1 0 1
0 1 1 0
1 0 0 1
1 0 1 0
1 1 0 0
1 1 1 1

and have to convert it into an expression using AND, NOT, OR

I have come up with this:

(A & B & C)+(A & -B & -C)+(-A & B -C)+(-A & -B & C)

It uses a combination of 16 AND, NOT, OR.

How do I get this down to using only 8? Thanks

2006-10-24 04:04:16 · 1 answers · asked by Delicate 1 in Science & Mathematics Mathematics

How do I show XOR C?

2006-10-24 04:39:56 · update #1

1 answers

The minimum solution is (A XOR B) XOR C and you make an XOR as (A & -B) + (-A & B ) and requires 2 NOT's, 2 AND's, and a single OR. Using only 2 input logic functions, I'm not sure it can be done with less than that.


Doug

2006-10-24 04:29:06 · answer #1 · answered by doug_donaghue 7 · 0 0

fedest.com, questions and answers