Boolean Algebra: Sum of Products

Thread Starter

Zachlr_ms

Joined Sep 16, 2013
2
Hey all,
I'm trying to wrap my head around boolean algebra, specifically sum of products and product of sums. I know it has something to do with the distributive law, and possibly DeMorgan's laws, but I cannot figure it out.

I'm stuck on a problem on my homework. The instructions are to multiply out and simplify to obtain a product of sums. The problem goes as follows:
(A' + B + C')(A' + C' + D)(B' + D')

I grouped the A' + C' together using the law (X + Y)(X + Z) = X + YZ and got
A' + C' + BD(B'D')
Then I thought I could distribute the BD to make it BDB' + BDD'. Using the X + X' = 0 law I came up with A' + C' +B +D. The solution in the book is A'B' + A'D' + C'B' + C'D'. I'm way off and I have no idea what I'm doing. I'm sure if I could just grasp the concept of POS and SOP It would become easy, but so far I have not been able to understand.

Thanks for the help,
Zach
 

WBahn

Joined Mar 31, 2012
30,088
Take your best shot at describing what YOUR current understanding of each is. Then we can look at what you are thinking and try to fix any misconceptions or holes you might have.

Are you SURE the problem told you to obtain a product of sums? The answer you say the book provides is a sum of products and the problem is given as a product of sums.
 

djsfantasi

Joined Apr 11, 2010
9,163
I grouped the A' + C' together using the law (X + Y)(X + Z) = X + YZ and got
A' + C' + BD(B'D')
Whoa there! Take baby steps.

Using the X + X' = 0 law
This "law" simply doesn't make sense to me.

You could also approach this using simple algebra (Boolean algebra) and multiply the terms out and simplify later. Step by step... Don't make any leaps of faith!

Like WBahn said, "Take your best shot at describing what YOUR current understanding of each is. Then we can look at what you are thinking and try to fix any misconceptions or holes you might have." He is a great teacher.
 

Thread Starter

Zachlr_ms

Joined Sep 16, 2013
2
Take your best shot at describing what YOUR current understanding of each is. Then we can look at what you are thinking and try to fix any misconceptions or holes you might have.

Are you SURE the problem told you to obtain a product of sums? The answer you say the book provides is a sum of products and the problem is given as a product of sums.
My current understanding is that product of sums means to reduce it into different products added together. As in ab + cd + ef etc. Sum of products is the opposite. I wanted added terms multiplied together, such as (a+b)(c+d) etc.

The problem in the book (Fundamentals of Logic Design by Roth and Kinney) states the following: Multiply out and simplify to obtain a sum of products:
(a) (A+B)(C+B)(D'+B)(ACD'+E)
(b) another problem
(c) so on and so forth.

The answer in the back is ACD' + BE.


djsfantasi, I was mistaken. Looking back, the Laws of complementarity say that X + X' = 1 and X * X' = 0. I must have mixed them up.

Thanks for the replies. I've been very busy lately, but I'll try and stay on top of this thread.
 

WBahn

Joined Mar 31, 2012
30,088
My current understanding is that product of sums means to reduce it into different products added together. As in ab + cd + ef etc. Sum of products is the opposite. I wanted added terms multiplied together, such as (a+b)(c+d) etc.
This understanding is fine. Now consider your original question in light of this understanding:

I'm stuck on a problem on my homework. The instructions are to multiply out and simplify to obtain a product of sums. The problem goes as follows:
(A' + B + C')(A' + C' + D)(B' + D')
The problem is already in product of sums as given!

The solution in the book is A'B' + A'D' + C'B' + C'D'.
The solution given is in sum of products.

This is why I asked you to verify that you were stating the problem and what you were trying to do correctly.

The problem in the book (Fundamentals of Logic Design by Roth and Kinney) states the following: Multiply out and simplify to obtain a sum of products:
(a) (A+B)(C+B)(D'+B)(ACD'+E)

The answer in the back is ACD' + BE.
So have you done this? If not, do it here and show your work, in detail, for as far as you can get and we will help you get the rest of the way.

djsfantasi, I was mistaken. Looking back, the Laws of complementarity say that X + X' = 1 and X * X' = 0. I must have mixed them up.
You shouldn't have to "look back" for these. They should be very obvious to you in short order -- you need to get to that point. X+X' requires that the two terms be opposite, meaning that one of them WILL be True. Since OR is True if ANY term is True, the result must always be True. Similarly, X*X' requires that the two factors be opposite, meaning that one of them WILL be False. Since AND is False if ANY factor is False, the result must always be False.
 
Top