Reputation: 1
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
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:
Upvotes: 1