loader image

Full Subtractor

A full subtractor is a combinational circuit that performs subtraction of three bits. This circuit has three inputs the minuend A, subtrahend B, and borrow in Bin. Bin is the borrow of the previous adjacent lower minuend bit. This Bin is also subtracted from A-B. A full subtractor has two outputs, D and Bout, represents Difference and Borrow Out respectively.

full substractor 1

Truth table of a full subtractor is,

A B Bin D Bout
00000
00111
01011
01101
10010
10100
11000
11111

The logic expression for full subtractor can be derived from the truth table using the K-Map technique.

full subtractor kmap 1
{D=(A \oplus B) \oplus B_{in}}

Expression for Bout can be again simplified as follows

{B_{out}=\overline{A} B}+(\overline{A \oplus B})B_{in}

These expressions can be implemented using two XOR gates, two AND gates and one OR gate as follows

full subtractor circuit

Further Reading

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments