cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
user name:
password:
Forgot your password?
please wait
try again
cancel
forgot your password?
sign up
log in
[Legacy version]
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Lounge
Simplify Boolean Expression
Simplify Boolean Expression
Dec 8, 2010 at 5:43pm
Dec 8, 2010 at 5:43pm UTC
Return 0
(1282)
I'm a bit rusty on my boolean algebra, does anyone see a way to simplify this down to the simplest form? Even my boolean algebra calculator says it can't be reduced.
xy'z' + x'y'z + x'yz'
Dec 8, 2010 at 7:47pm
Dec 8, 2010 at 7:47pm UTC
closed account (
1yR4jE8b
)
I'm too lazy to do it myself, but have you tried a Karnaugh Map?
Dec 12, 2010 at 1:55am
Dec 12, 2010 at 1:55am UTC
jsmith
(5804)
The expression is 1 iff exactly one of x, y, and z is 1.
Dec 13, 2010 at 3:28am
Dec 13, 2010 at 3:28am UTC
closed account (
1yR4jE8b
)
I was bored, so I did the KMap
|| 00 | 01 | 11 | 10 |
1 || 1 | 0 | 0 | 0 | 0 || 0 | 1 | 0 | 1 |
Apparently it can't be minimized
Dec 13, 2010 at 11:54am
Dec 13, 2010 at 11:54am UTC
Return 0
(1282)
Yeah that's what I thought. Just wanted to confirm. Thank you for taking a look.
Topic archived. No new replies allowed.