Foundations — Truth tables construction
Before you can build a truth table you must be able to read every mark that appears in one. Below is every symbol and idea the parent note leans on, ordered so each one rests on the previous. Nothing is used before it is drawn.
1. The two values: and
The picture: a single switch. Down = = OFF. Up = = ON. There is no "half-on".

Why the topic needs it: every column entry in a truth table is one of these two marks. If you did not know that "on/off" and "/" mean the same thing, the whole table would be gibberish. See also Binary Number System.
2. Input, output, and a Boolean function
The picture: a box. Arrows go in on the left (the inputs), one arrow comes out on the right (the output). The box hides the rule.

Why the topic needs it: a truth table is exactly "for every possible set of arrows-in, what is the arrow-out?" Without the input/output split there is nothing to tabulate.
3. Naming signals: , , and
Why the topic needs it: every column heading in the parent note is a letter like these. Once we have letters, the next four sections give us the operations that combine them into a rule for .
4. NOT — the bar
The picture: flip the switch to its other position. Whatever it was, it is now the reverse.
| 0 | 1 |
| 1 | 0 |
Why the topic needs it: the parent's worked examples use and as intermediate columns. You must know a bar means "flip" to fill them in. More at Logic Gates AND OR NOT.
5. AND — the dot
The picture: two switches wired in series in a line — the lamp lights only if both are closed. Break either one and the circuit is dead.

Why the topic needs it: AND is one of the two combining operations you will meet everywhere, e.g. the piece of an expression.
6. OR — the plus
The picture: two switches wired in parallel — two separate paths to the lamp. Close either path and current flows.

Now that NOT, AND and OR are all defined, we can finally read the parent's headline expression : "output = (A AND B) OR (NOT C)" — but which piece groups with which still needs a rule, and that rule is precedence, coming in Section 8.
7. XOR — the ringed plus
| 0 | 0 | 0 |
| 0 | 1 | 1 |
| 1 | 0 | 1 |
| 1 | 1 | 0 |
Why the topic needs it: the parent's Forecast-then-Verify exercise asks you to predict the XOR column (). You must recognise the symbol to attempt it.
8. Precedence and parentheses: NOT → AND → OR
Worked read of :
- (AND) binds tighter than (OR), so this means , not .
- Check with : default gives ; the bracketed version — here they agree, so try : default gives , but too. The difference shows with : default , forced . Brackets changed the answer.
Why the topic needs it: the entire "intermediate columns" trick exists to respect this order (and any brackets) so you don't mis-evaluate.
9. Powers: what means
Why the topic needs it: is the formula for the row count — the parent's single most-used fact.
10. Counting in binary
For : → the four input rows, in the standard order.
Why the topic needs it: this is the parent's "checksum" method — it stops you skipping or repeating any row. Full treatment in Binary Number System.
How these feed the topic
Every arrow points toward the two things a truth table needs: how many rows (from and binary counting) and what each output is (from the operators and precedence applied to the named inputs).
Equipment checklist
Cover the right-hand side and test yourself. If any answer is fuzzy, re-read that section before touching the parent note.
What are the only two values a bit can hold?
What does a Boolean function do?
Why use letters like , for wires?
What does the bar do?
When is equal to ?
When is equal to ?
Does in Boolean algebra?
When is equal to ?
State the operator precedence.
What do parentheses do?
How many rows does an -input table have, and why?
What guarantees you list every input combination once?
Connections
- 3.1.05 Truth tables construction (Hinglish) — the parent topic this page prepares you for.
- Logic Gates AND OR NOT — each symbol here is a physical gate.
- Boolean Algebra Laws — why and obey their own rules.
- Binary Number System — the counting that generates the rows.
- Sum of Products (SOP) — reads combinations straight off the rows.
- Karnaugh Maps — the table redrawn as a grid.
- Combinational Logic Circuits — the hardware a truth table describes.