Simplify the boolean expression ¬(A.B)+A.

¬(A.B)+A -- given in question. =(¬A+¬B)+A -- using De Morgan's Law. =¬A+¬B+A -- can remove the brackets. =1+¬B -- using identity ¬A+A = 1.=1 -- using identity 1 + anything = 1.

Related Computing A Level answers

All answers ▸

Explain what is meant by the term ‘TCP/IP stack’ [3]


Express the number 208 as a) an 8-bit binary number b) an octal string c) a hexadecimal string


What is the difference between a high level language and a low level language?


How can I decide whether Quicksort or Mergesort is better for a given situation?