1

I was asked to prove that the following is TRUE by "multiplying it out" and simplifying:

$(A+BC)(A+DE)=A+BCDE$

I am already familiar with the theorem

$A+BC=(A+B)(A+C)$

which would be enough proof to prove this true in standard environments, but I was specifically told to "multiply it out". So I tried and this is how far I got:

$(A+BC)(A+DE)$

$=AA+BCDE+ABC+ADE$

$=A+BCDE+ABC+ADE$

$=A(BC+DE)+BCDE$

How does that look so far? Am I headed in the right direction, or do I need to take a different route for simplification?

Parcly Taxel
  • 103,344
wad11656
  • 251
  • This is the distributivity of addition over multiplication. In general, we have $(a+b)c = ac+bc$ as a law over the real numbers, right? This means that multiplication distributes over addition. In boolean algebra, we have the other rule as well, which is definitely not true over the real numbers. This rule is $(a+b)(a+c) = a + bc$, which looks weird, but is true because $a+bc = a(1+b+c) + bc = (a+b)(a+c)$. – Sarvesh Ravichandran Iyer Sep 20 '17 at 02:35

1 Answers1

2

You need to take a different route at your second-to-last line: $$A+BCDE+ABC+ADE$$ $$=A(BC+DE+1)+BCDE$$ $$=A+BCDE$$

Parcly Taxel
  • 103,344