Boolean expression explanation

32 Views Asked by At

Could someone explain how to get the following Boolean expression in its simplest form, I am having difficulties working it out step by step

$$A+B+A*B$$

1

There are 1 best solutions below

6
On

Note that $A + B + AB = A(B + 1) + B = A + B$ (because $B + 1$ is always 1), so it simplifies to a simple OR function. This can be verified by the truth table as well.