2 Bit Full Adder Truth Table

7 min read

2‑Bit Full Adder Truth Table

A 2‑bit full adder is the basic building block that allows us to add two binary numbers that are each two bits long. By chaining these adders, we can construct larger adders for multi‑bit arithmetic operations, which are essential in digital processors, calculators, and many embedded systems. This article walks through the truth table of a 2‑bit full adder, explains how it works, and shows how to use it in practice.

People argue about this. Here's where I land on it.


Introduction

Every time you add two binary numbers, each bit may produce a carry to the next more significant bit. On the flip side, a full adder handles this by taking three inputs—two bits to be added and a carry‑in from the previous stage—and producing two outputs: the sum bit and the carry‑out. For a 2‑bit addition, we need two full adders: one for the least significant bit (LSB) and another for the most significant bit (MSB). The carry‑out from the LSB becomes the carry‑in for the MSB Simple, but easy to overlook. Less friction, more output..

Short version: it depends. Long version — keep reading.

The truth table lists every possible combination of inputs and the corresponding outputs. Understanding this table is the first step toward designing and debugging digital circuits that perform binary addition And that's really what it comes down to..


2‑Bit Full Adder: Inputs and Outputs

Bit Position Inputs Outputs
Bit 0 (LSB) A₀, B₀, Cin Sum₀, Cout₀
Bit 1 (MSB) A₁, B₁, Cout₀ Sum₁, Cout₁
  • A₀, A₁ – bits of the first operand.
  • B₀, B₁ – bits of the second operand.
  • Cin – initial carry‑in (usually 0 for simple addition).
  • Sum₀, Sum₁ – resulting sum bits.
  • Cout₀ – carry from the LSB to the MSB.
  • Cout₁ – final carry‑out (overflow indicator).

The Truth Table

Below is the exhaustive truth table for a 2‑bit full adder. Still, each row represents a unique combination of the five input bits (A₁, A₀, B₁, B₀, Cin). The two output bits (Sum₁, Sum₀) and the final carry‑out (Cout₁) are shown at the end of each row.

A₁ A₀ B₁ B₀ Cin Sum₁ Sum₀ Cout₁
0 0 0 0 0 0 0 0
0 0 0 0 1 0 1 0
0 0 0 1 0 0 1 0
0 0 0 1 1 1 0 0
0 0 1 0 0 0 1 0
0 0 1 0 1 1 0 0
0 0 1 1 0 1 0 0
0 0 1 1 1 0 1 1
0 1 0 0 0 0 1 0
0 1 0 0 1 1 0 0
0 1 0 1 0 1 0 0
0 1 0 1 1 0 1 1
0 1 1 0 0 1 0 0
0 1 1 0 1 0 1 1
0 1 1 1 0 0 1 1
0 1 1 1 1 1 0 1
1 0 0 0 0 0 1 0
1 0 0 0 1 1 0 0
1 0 0 1 0 1 0 0
1 0 0 1 1 0 1 1
1 0 1 0 0 1 0 0
1 0 1 0 1 0 1 1
1 0 1 1 0 0 1 1
1 0 1 1 1 1 0 1
1 1 0 0 0 1 0 0
1 1 0 0 1 0 1 1
1 1 0 1 0 0 1 1
1 1 0 1 1 1 0 1
1 1 1 0 0 0 1 1
1 1 1 0 1 1 0 1
1 1 1 1 0 1 0 1
1 1 1 1 1 0 1 1

Key observations:

  • Sum bits behave exactly as binary addition would produce.
  • Cout₁ is 1 only when the addition overflows the 2‑bit width (i.e., when the result requires a third bit).

How the Full Adder Works (Step‑by‑Step)

  1. Add the two least significant bits (A₀ and B₀) together with the incoming carry (Cin).
    • This produces Sum₀ and a temporary carry (Cout₀).
  2. Add the two most significant bits (A₁ and B₁) together with the carry from the previous stage (Cout₀).
    • This yields Sum₁ and the final carry‑out (Cout₁).
  3. Interpret the outputs:
    • Sum₁ Sum₀ is the 2‑bit result.
    • Cout₁ indicates an overflow or a third‑bit result.

Mathematically:

Sum₀   = A₀ ⊕ B₀ ⊕ Cin
Cout₀  = (A₀ ∧ B₀) ∨ (Cin ∧ (A₀ ⊕ B₀))

Sum₁   = A₁ ⊕ B₁ ⊕ Cout₀
Cout₁  = (A₁ ∧ B₁) ∨ (Cout₀ ∧ (A₁ ⊕ B₁))

Here, denotes XOR, denotes AND, and denotes OR Less friction, more output..


Practical Example

Add the binary numbers 10₂ (2 in decimal) and 11₂ (3 in decimal):

  • A₁ A₀ = 1 0
  • B₁ B₀ = 1 1
  • Cin = 0

Step 1 – LSB addition

Sum₀ = 0 ⊕ 1 ⊕ 0 = 1
Cout₀ = (0∧1) ∨ (0∧(0⊕1)) = 0

Step 2 – MSB addition

Sum₁ = 1 ⊕ 1 ⊕ 0 = 0
Cout₁ = (1∧1) ∨ (0∧(1⊕1)) = 1

Result: Cout₁ Sum₁ Sum₀ = 1 0 1 → 5 in decimal, which matches the expected sum of 2 + 3 Worth keeping that in mind..


Using the Truth Table for Design Verification

When designing a digital circuit, the truth table serves as a reference:

  • Simulation: Verify that your gate-level implementation matches the table for all 32 input combinations.
  • Testing: Create test vectors that cover edge cases (e.g., all zeros, all ones, carry‑in = 1).
  • Debugging: If an output deviates, trace the corresponding row to identify the faulty logic.

FAQ

Question Answer
What happens if Cin is 1? The LSB addition includes an extra 1, potentially producing a carry to the MSB. So the truth table shows all possible outcomes. That's why
**What is the difference between a half adder and a full adder? In real terms, the carry‑out indicates overflow for signed addition. ** Use two instances of a full_adder module, wire the carry appropriately, and assign the final carry‑out. A full adder includes carry‑in, making it suitable for chaining. Think about it: **
**Is the truth table symmetrical?
How do I build a 2‑bit adder in Verilog? Yes, if you use two’s complement representation.
Can a 2‑bit full adder be used for signed numbers? Yes, swapping A and B inputs yields the same outputs because addition is commutative.

Conclusion

The 2‑bit full adder truth table encapsulates the essence of binary addition for two‑bit operands. By dissecting each row, we see how every possible input combination maps to a unique sum and carry‑out. Now, this foundational knowledge empowers engineers and hobbyists alike to design reliable arithmetic circuits, debug logic errors, and understand how more complex adders scale. Mastering the truth table is the first step toward mastering digital arithmetic and building the building blocks of modern computing.

This Week's New Stuff

Hot Right Now

Similar Ground

More Worth Exploring

Thank you for reading about 2 Bit Full Adder Truth Table. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home