I am attempting to simplify the following expression: (!A && !B) || (!B && !C) || (C && !A)
. It should simplify to only two terms: (!A and C) || (!B and !C)
I have tried applying almost all of the laws and tried different combinations of factoring to see if anything will reduce but it does not lead to the required answer.