You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
This lesson covers two essential building blocks of digital systems: adder circuits (used for binary arithmetic) and flip-flops (used for memory and sequential logic). At A-Level you must be able to draw, analyse, and explain both.
A half adder adds two single-bit binary numbers and produces a sum (S) and a carry (C).
| A | B | Sum (S) | Carry (C) |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 0 | 1 | 1 | 0 |
| 1 | 0 | 1 | 0 |
| 1 | 1 | 0 | 1 |
A ──┬──→ [XOR] ──→ S (Sum)
│ ↑
B ──┼──────┘
│
└──→ [AND] ──→ C (Carry)
↑
B ───────┘
The half adder is called "half" because it has no carry input — it cannot handle a carry from a previous stage.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.