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

Respected,
Kindly help me in minimizing the following boolean function ( a '\' means 'Not' or Compliment)

\A \B \C + \A B C + A \B C + A B \C

Thanks in advance.

2007-04-26 03:03:26 · 2 answers · asked by helpingspirits1 2 in Science & Mathematics Engineering

2 answers

The result is an odd number of zeros from the 3-bit input (A,B,C) which is called odd parity. Parity generators are trees of Exclusive OR gates. In this case:

Y = not((A xor B) xor C)

alternately:

Y = (A xor B) xnor C

.

2007-04-26 04:26:05 · answer #1 · answered by tlbs101 7 · 0 0

/A/B/C+/ABC+AB/C=/A[/B/C+BC]+AB/C=/A[1]+AB/C=/A+AB/C

2007-05-04 08:12:12 · answer #2 · answered by Anonymous · 0 0

fedest.com, questions and answers