Possible to further minimise the boolean expression: A’B'C' + AB + AC?

46 Views Asked by At

I need to minimise this expression for use in a logic circuit with a limited number of gates used. Is it possible to minimise this boolean expression any further? My thought process has been this:

A’B'C' + AB + AC = (A + B + C)' + A(B + C).

I know I must somehow remove A but I am lost on how to proceed.

Any help on this would be greatly appreciated, thanks!

*To clarify, the only gates I am permitted to use to represent this expression in my logic circuit are XOR and AND gates.