Can't figure out how to simplify $(^\neg a)bc+a(^\neg b)c+ab(^\neg c)+abc$, I'm really bad at this...
Asked
Active
Viewed 6.7k times
-1
-
Do you know what a Karnaugh map is? – Oria Gruber Sep 28 '14 at 21:19
-
No clue, are just working with boolean algebra identities like de Morgan's law – Brandon Jerz Sep 28 '14 at 21:19
2 Answers
0
A'B C + A B'C + A B C'+ A B C
Since We can use ABC = ABC + ABC So I use three of Copies:
A'B C + A B'C + A B C' + A B C + A B C + A B C
RE-ARRANGE: A'B C + A B C + A B'C + A B C + A B C'+A B C
GROUPING: BC(A'+A) + AC(B'+B) + AB(C'+C)
Since A'+A=1 & B'+B=1 & C'+C=1;
= BC+AC+AB
-
1Welcome to math.stackexchange. You can type mathematical formulas in a beautiful way using MathJax. Here's a tutorial. – Scientifica Mar 14 '17 at 06:11
0
$a'bc+ab'c+abc'+abc = a'bc+a(b'c+bc'+bc)$
Let's continue:
$a'bc+a*(b'c+bc'+bc)=a'bc+a(b'c+b(c'+c))=a'bc+a(b'c+b)=a'bc+ab'c+ab$
Why don't you try to see if you can simplify further (which I doubt is possible).
Oria Gruber
- 12,739
-
-
with numbers, $6+8+10=2(3+4+5)$. this is a similar concept. $ab'c+abc'+abc=a(b'c+bc'+bc)$. because $a$ appears in every term. – Oria Gruber Sep 29 '14 at 11:24
-
-
Please read, Oria, Enforcement of Quality Standards. Consider yourself fully informed. You answered a very low quality answer, and fully. This violates quality standards on this site, so be aware of the consequences of repeatedly doing so. – amWhy Sep 20 '21 at 18:11