Knowledge organisersBoolean Logic
Ability to work with more than one gate in a logic diagram
Logic gates can be combined to form more complex logic circuits and expressions. When combining gates, the order of precedence matters: brackets are evaluated first, then NOT, then AND, then OR. You need to be able to trace through circuits with multiple gates, building the truth table step by step.
B OR NOT C AND A is evaluated as B OR ((NOT C) AND A).P = NOT A AND (B OR C) → draw NOT gate on A, OR gate on B and C, then AND gate combining both outputs.P = (A OR B) AND NOT C → draw OR gate on A and B, NOT gate on C, then AND gate combining both outputs.