How Do You Simplify Complex Boolean Expressions?

mad_monkey_j
Messages
33
Reaction score
0

Homework Statement



1.
Simplify the following problem using boolean algebra:
(p+q'r')(p'q'+r)

2.
Use algebra or karnaugh maps to simplify the following circuit:
(z+xy')+yx+xzy'

Homework Equations


Boolean algebra rules and demorgan's law

The Attempt at a Solution



1. (p+q'r')(p'q'+r)
=pq'p'+pr+q'r'p'q'+q'r'r
=0q'+pr+'q'r'p+0q
=pr+q'r'p'
=0r+q'r'
=00+q'
=q'
Not sure if correct

2.(z+xy')+yx+x(z+y')
=zxy'+yx+xzy'
=zxy'+1x+xz
=x(zy'+z)
=xz
Not sure about this one either
 
Last edited:
Physics news on Phys.org
mad_monkey_j said:

Homework Statement



1.
Simplify the following problem using boolean algebra:
(p+q'r')(p'q'+r)

2.
Use algebra or karnaugh maps to simplify the following circuit:
(z+xy')+yx+xzy'


Homework Equations


Boolean algebra rules and demorgan's law


The Attempt at a Solution



1. (p+q'r')(p'q'+r)
=pq'p'+pr+q'r'p'q'+q'r'r
=0q'+pr+'q'r'p+0q
=pr+q'r'p'
OK to there. Then next equation is wrong. Use the identity a + a'b = a + b.
=0r+q'r'
=00+q'
=q'
Not sure if correct

2.(z+xy')+yx+x(z+y')
=zxy'+yx+xzy'

What rule did you use to get that step?
 
So i get
pr+q' for the first one
and i used demorgan's law to get to the second step in the second question
 
mad_monkey_j said:
So i get
pr+q' for the first one
and i used demorgan's law to get to the second step in the second question

Actually, after looking at it a bit more leisurely than I did this morning, I think you should have just stopped at pr + q'r'p' which is correct. I don't think my suggestion was good.

For the second one, use the associative law to group the two center terms first to get started.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top