Categories: Digital Electronics

Full-Subtractor

Full subtractor is a combinational circuit capable of performing subtraction on two bits namely minuend and subtrahend. It accepts three inputs: minuend, subtrahend and a borrow bit. It produces two outputs: difference and borrow. The borrow output tells whether the minuend bit needs to borrow a binary bit 1 from the next higher minuend bit or not.

Graphic symbol of full-subtractor

Inputs Outputs
A B Bin BD Bout
0 0 0 0 0
0 0 1 1 1
0 1 0 1 1
0 1 1 0 1
1 0 0 1 0
1 0 1 0 0
1 1 0 0 0
1 1 1 1 1
Truth table for full-subtractor

One bit full subtractor circuits can be cascaded to perform subtraction of tow multiple bit binary numbers.

Applications
Full subtractors are used in ALU to subtract.
These are used to do substraction in calculators and digital devices.
These are used in microcontrollers

Robin

Share
Published by
Robin

Recent Posts

Hard Computing

What is hard computing? Hard computing is a traditional computing. It requires a precisely stated…

5 years ago

Soft Computing

Soft computing is a problem solving technology. It tends to fuse synergically different aspects of…

5 years ago

Cluster Computing

Cluster computing is an approach to achieve high performance, reliability or high throughput computing by…

5 years ago

Magnitude Comparator

Magnitude Comparator is a combinational circuit capable of comparing the relative magnitude of two binary…

9 years ago

Half-Subtractor

Half-subtractor is a combinational circuit capable of subtracting a binary number from another binary number.…

9 years ago

Difference between latch and flip-flop

Latch is a flop-flop in its simplest form capable of storing binary bit 1 or…

9 years ago