Shagor
Shagor

Reputation: 1

simplifying Boolean expression A'BC + AB'C + ABC'

Need help here, whats the simplified form of this Boolean expression? I'm a little confused about this, help me guys!

A'BC + AB'C + ABC'

Upvotes: 0

Views: 2522

Answers (1)

Joop Eggen
Joop Eggen

Reputation: 109613

ABC A'BC + AB'C + ABC'
000 0
001 0
010 0
011 1
100 0
101 1
110 1
111 0

This cannot be simplified, see *Karnaugh map*.

But using other operators, there are simpler forms:

  • Exclusive OR ^: A'BC + A(B^C)
  • Bit count: #[A, B, C] = 2

Upvotes: 1

Related Questions