Each round shows a logic circuit and the value on every input. Follow the signals through the gates and call the output, Y — 0 or 1 — before the clock runs out. The circuits get bigger the longer you last.
Work out the output of a logic circuit of up to three levels of gates for any combination of inputs, and link a circuit diagram to its Boolean expression.
By the end of a game you should be able to: recognise the AND, OR, NOT, NAND, NOR and XOR symbols; state each gate's truth table; trace values through a circuit one gate at a time; and read a Boolean expression such as Y = A·B + A̅·C as a circuit.
A · B or AB | A AND B |
A + B | A OR B |
| NOT A (a bar over the top) |
A ⊕ B | A XOR B — 1 when the inputs differ |
| A NAND B |
| A NOR B |
NOT is worked out first, then AND, then OR — just as multiplication comes before addition. Brackets change the order.