9

Looking at the truth table, they're equivalent:

A   B      (A+B)  (A+A'B)
-------------------------------
1   1       1       1
1   0       1       1
0   1       1       1
0   0       0       0

But what manipulation can one do using basic identifies and laws to show that they're the same?

C.J. Jackson
  • 243
  • 1
  • 3
  • 6
  • 4
    By A' you mean not A? I personally never used nor seen used that notation. I think $\overline{A}$ and $\lnot A$ are much more used around the world (or at least in the material I have seen). – Bakuriu Sep 18 '16 at 07:26
  • 2
    @Bakuriu it's a notation that's used more in computer science, out of the necessity of not being able to do overbar in ASCII. See: https://courses.cs.washington.edu/courses/cse370/99sp/lectures/02-Comb/sld008.htm – C.J. Jackson Sep 18 '16 at 18:05

2 Answers2

21

$A+A'B=A(1+B)+A'B=A+AB+A'B=A+(A+A')B=A+B$

JRN
  • 6,566
20

Note with the laws of Boolean algebra, "addition" distributes over "multiplication" (just as multiplication would normally distribute over addition). Thus, we have $$ a + (a'\cdot b) = (a+a')\cdot (a+b) = 1(a+b) = a+b $$

Ben Grossmann
  • 225,327