Given this logic gate :
A AND B OR B AND C AND (B OR C)
it can be shorten as :
B AND (A OR C)
How do we do this ? I tried to aplly the De Morgan law but without success?
Any help is greatly appreciated !
Given this logic gate :
A AND B OR B AND C AND (B OR C)
it can be shorten as :
B AND (A OR C)
How do we do this ? I tried to aplly the De Morgan law but without success?
Any help is greatly appreciated !
If $BC$ is true, then both $B$ and $C$ are true, and so it is clear that $B+C$ is also true. Thus, $BC(B+C)=BC$.
Then, $AB+BC(B+C)=AB+BC=B(A+C)$, as required.
Use the rule that (X AND (X OR Y)) <=> (X)
You can apply this to transform
B AND C AND (B OR C)
into
B AND C
Can you solve the rest?