Expanding this boolean expression

2.9k Views Asked by At

Can this Boolean expression:

$$A*\overline{A*B}$$

be expanded to give:

$$A*\overline{A} * A*\overline{B}$$

Although that appears to reduce to zero?

I know $A(\overline{A+B})$ can be expanded to give: $A*A + A*\overline{B}$

So can it work with an AND? How else do you simplify the first expression?

1

There are 1 best solutions below

1
On BEST ANSWER

No. By De Morgan's laws, $$(A * B)' = A' + B'.$$ So, $A*(A*B)'$ can be expanded to give $$A*(A'+B') = A*A' + A*B' = \mathsf{F} + A*B' = A*B'.$$