[Math] Expanding this boolean expression

boolean-algebrapropositional-calculus

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?

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'.$$

Related Question