Published on

Excess-3 to BCD Code Converter

Excess-3
BCD
Excess-3-to-BCD
Converter
Digital-Electronics
K-map
Truth-table
Authors
  • avatar
    Name
    admin
    Twitter

Quick Overview -

Excess -3 to BCD code Converter / Conversion using K-map.

Solved using K-map.

How to write/make truth table and find output expressions ?

Why first 4 and last 3 output rows are represented ' X ' (don't care conditions).

How to find don't care ? Output Dependencies?

Beginner's Guide to understand Conversion. 

Truth Table -

 

Expression For Solving K-map -

B3 = Σm(11, 12) + dm(0, 1, 2, 13, 14, 15)

B2 = Σm(7, 8, 9, 10) + dm(0, 1, 2, 13, 14, 15)

B1 = Σm(5, 6, 9, 10) + dm(0, 1, 2, 13, 14, 15)

B0 = Σm(4, 6, 8, 10, 12) + dm(0, 1, 2, 13, 14, 15)

 

K-map for B-

B3 = Σm(11, 12) + dm(0, 1, 2, 13, 14, 15)

B3 = E2E3 + E0E1E3

 

K-map for B2 -

B2 = Σm(7, 8, 9, 10) + dm(0, 1, 2, 13, 14, 15)

B2 = E0'E2' + E1'E2' + E0E1E2

 

K-map for B1 -

B1 = Σm(5, 6, 9, 10) + dm(0, 1, 2, 13, 14, 15)

B1 = E0E1' + E0'E1

 

K-map for B0 -

B0 = Σm(4, 6, 8, 10, 12) + dm(0, 1, 2, 13, 14, 15)

B0 = E0'

 

Output Boolean Expression -

B3 = E2E3 + E0E1E3

B2 = E0'E2' + E1'E2' + E0E1E2

B1 = E0E1' + E0'E1

B0 = E0'

 

Implementation using Basic Gates -