Jan 30, 2015 #1 U u24c02 Advanced Member level 1 Joined May 8, 2012 Messages 404 Helped 2 Reputation 4 Reaction score 2 Trophy points 1,298 Activity points 4,101 Hi. I want to confirm the answer of this question's answer. The boolean question is like this. ab'+c And my answer is ab'+c(a+b'+c); But my book's answer is like this. ab'+c(a+b'+1); What is the answer of the question? Am I do wrong?
Hi. I want to confirm the answer of this question's answer. The boolean question is like this. ab'+c And my answer is ab'+c(a+b'+c); But my book's answer is like this. ab'+c(a+b'+1); What is the answer of the question? Am I do wrong?
Jan 30, 2015 #2 H harpv Member level 4 Joined May 30, 2012 Messages 73 Helped 19 Reputation 38 Reaction score 20 Trophy points 1,288 Activity points 1,838 Please explain how you arrived at your answer.
Jan 30, 2015 #3 U u24c02 Advanced Member level 1 Joined May 8, 2012 Messages 404 Helped 2 Reputation 4 Reaction score 2 Trophy points 1,298 Activity points 4,101 ab'+c =(a+c)(b'+c) =ab'+ac+cb'+cc =ab'+c(a+b'+c)
Jan 30, 2015 #4 D dipin Full Member level 4 Joined Jul 16, 2014 Messages 223 Helped 14 Reputation 28 Reaction score 14 Trophy points 18 Activity points 1,731 hi, in boolean function x.x=x. so c.c =c regards Last edited: Jan 30, 2015
Jan 30, 2015 #5 U u24c02 Advanced Member level 1 Joined May 8, 2012 Messages 404 Helped 2 Reputation 4 Reaction score 2 Trophy points 1,298 Activity points 4,101 Thanks, and I'm trying to convert*SOP (Sum of Products) to POS (Product of Sums). The question is like this. ABC +AB'C'+AB'C+ABC'+A'B'C I just want to know some technic how to convert SOP to POS? I got thus like this but I can't find any more. ABC +AB'C'+AB'C+ABC'+A'B'C =A(BC+B'C'+B'C+BC')+A'B'C =A(1+1)+A'B'C =A+A'B'C' ... Would you please help me ? How to convert this?
Thanks, and I'm trying to convert*SOP (Sum of Products) to POS (Product of Sums). The question is like this. ABC +AB'C'+AB'C+ABC'+A'B'C I just want to know some technic how to convert SOP to POS? I got thus like this but I can't find any more. ABC +AB'C'+AB'C+ABC'+A'B'C =A(BC+B'C'+B'C+BC')+A'B'C =A(1+1)+A'B'C =A+A'B'C' ... Would you please help me ? How to convert this?
Jan 30, 2015 #6 H harpv Member level 4 Joined May 30, 2012 Messages 73 Helped 19 Reputation 38 Reaction score 20 Trophy points 1,288 Activity points 1,838 @u24c02 For your first question : There could also be something like this : Code: ab' + c = ab' + c + ca + cb' // from a + ab = a = ab' + c(a + b' + 1) So basically the answer you are looking for isn't unique. For the second question : Apply DeMorgan's law : Code: F = ABC +AB'C'+AB'C+ABC'+A'B'C F' = A'B'C' + A'BC' + A'BC (the SOP of minterms not present in F) F = (F')' = (A'B'C' + A'BC' + A'BC)' I believe the rest you can work out yourself.
@u24c02 For your first question : There could also be something like this : Code: ab' + c = ab' + c + ca + cb' // from a + ab = a = ab' + c(a + b' + 1) So basically the answer you are looking for isn't unique. For the second question : Apply DeMorgan's law : Code: F = ABC +AB'C'+AB'C+ABC'+A'B'C F' = A'B'C' + A'BC' + A'BC (the SOP of minterms not present in F) F = (F')' = (A'B'C' + A'BC' + A'BC)' I believe the rest you can work out yourself.
Jan 30, 2015 #7 D dipin Full Member level 4 Joined Jul 16, 2014 Messages 223 Helped 14 Reputation 28 Reaction score 14 Trophy points 18 Activity points 1,731 hi, u24c02 said: Thanks, and I'm trying to convert*SOP (Sum of Products) to POS (Product of Sums). The question is like this. ABC +AB'C'+AB'C+ABC'+A'B'C I just want to know some technic how to convert SOP to POS? I got thus like this but I can't find any more. ABC +AB'C'+AB'C+ABC'+A'B'C =A(BC+B'C'+B'C+BC')+A'B'C =A(1+1)+A'B'C Would you please help me ? How to convert this? Click to expand... After that apply the rule A+A'B = A+B results A+A'(B'C)=A+B'C then apply the rule used in the #3 post you will get (A+B')(A+C) which is in POS form. regards
hi, u24c02 said: Thanks, and I'm trying to convert*SOP (Sum of Products) to POS (Product of Sums). The question is like this. ABC +AB'C'+AB'C+ABC'+A'B'C I just want to know some technic how to convert SOP to POS? I got thus like this but I can't find any more. ABC +AB'C'+AB'C+ABC'+A'B'C =A(BC+B'C'+B'C+BC')+A'B'C =A(1+1)+A'B'C Would you please help me ? How to convert this? Click to expand... After that apply the rule A+A'B = A+B results A+A'(B'C)=A+B'C then apply the rule used in the #3 post you will get (A+B')(A+C) which is in POS form. regards
Jan 30, 2015 #8 U u24c02 Advanced Member level 1 Joined May 8, 2012 Messages 404 Helped 2 Reputation 4 Reaction score 2 Trophy points 1,298 Activity points 4,101 harpv said: @u24c02 For your first question : There could also be something like this : Code: ab' + c = ab' + c + ca + cb' // from a + ab = a = ab' + c(a + b' + 1) So basically the answer you are looking for isn't unique. For the second question : Apply DeMorgan's law : Code: F = ABC +AB'C'+AB'C+ABC'+A'B'C F' = A'B'C' + A'BC' + A'BC (the SOP of minterms not present in F) F = (F')' = (A'B'C' + A'BC' + A'BC)' I believe the rest you can work out yourself. Click to expand... Thanks , How can you find minterm and maxterm?
harpv said: @u24c02 For your first question : There could also be something like this : Code: ab' + c = ab' + c + ca + cb' // from a + ab = a = ab' + c(a + b' + 1) So basically the answer you are looking for isn't unique. For the second question : Apply DeMorgan's law : Code: F = ABC +AB'C'+AB'C+ABC'+A'B'C F' = A'B'C' + A'BC' + A'BC (the SOP of minterms not present in F) F = (F')' = (A'B'C' + A'BC' + A'BC)' I believe the rest you can work out yourself. Click to expand... Thanks , How can you find minterm and maxterm?
Jan 30, 2015 #9 H harpv Member level 4 Joined May 30, 2012 Messages 73 Helped 19 Reputation 38 Reaction score 20 Trophy points 1,288 Activity points 1,838 I'm afraid you'll have to figure that out for yourself. Any basic digital electronics book should have the details you need. If you can't find a book I'm sure a simple Google search will yield all the answers regarding boolean algebra.
I'm afraid you'll have to figure that out for yourself. Any basic digital electronics book should have the details you need. If you can't find a book I'm sure a simple Google search will yield all the answers regarding boolean algebra.
Jan 30, 2015 #10 U u24c02 Advanced Member level 1 Joined May 8, 2012 Messages 404 Helped 2 Reputation 4 Reaction score 2 Trophy points 1,298 Activity points 4,101 I get it I will do that.