# Serial binary adder

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Serial_binary_adder
> Markdown URL: https://mediated.wiki/source/Serial_binary_adder.md
> Source: https://en.wikipedia.org/wiki/Serial_binary_adder
> Source revision: 1341436825
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

{{More citations needed|date=March 2026}} 
The '''serial binary adder''' or '''bit-serial adder''' is a synchronous [digital circuit](/source/digital_circuit) that performs [binary](/source/binary_numeral_system) [addition](/source/binary_adder) bit by bit.<ref>{{cite book
| last = Even
| first = Guy
| chapter = On teaching fast adder designs: Revisiting Ladner & Fischer
| title = Theoretical Computer Science: Essays in Memory of Shimon Even
| pages = 313–347
| publisher = Springer Berlin Heidelberg
| location = Berlin, Heidelberg
| year = 2006
| url = http://ndl.ethernet.edu.et/bitstream/123456789/25745/1/20.pdf#page=323
| isbn = 978-3-540-32880-3
}}</ref>
The serial [full adder](/source/full_adder) has three single-bit inputs for the numbers to be added and the carry in.
There are two single-bit outputs for the sum and carry out.
The carry-in signal is the previously calculated carry-out signal.
The addition is performed by adding each bit, lowest to highest, one per clock cycle.

==Serial binary addition==

Serial binary addition is done by a [flip-flop](/source/Flip-flop_(electronics)) and a [full adder](/source/full_adder).  The flip-flop takes the carry-out signal on each clock cycle and provides its value as the carry-in signal on the next clock cycle.  After all of the bits of the input operands have arrived, all of the bits of the sum have come out of the sum output.

==Serial binary subtractor==

The serial binary [subtractor](/source/subtractor_(electronics)) operates the same as the serial binary adder, except the subtracted number is converted to its [two's complement](/source/two's_complement) before being added.  Alternatively, the number to be subtracted is converted to its [ones' complement](/source/ones'_complement), by inverting its bits, and the carry flip-flop is initialized to a 1 instead of to 0 as in addition.  The ones' complement plus the 1 is the two's complement.

==Example of operation==

;Decimal: 5+9=14
:*X=5, Y=9, Sum=14
;Binary: 0101+1001=1110

;Addition of each step
{|class="wikitable"
|-
!colspan=3 |Inputs
!colspan=2 |Outputs
|-
!width=30|Cin
!width=30|X
!width=30|Y
!width=30|Sum
!width=30|Cout
|-
|0
|1
|1
|0
|1
|-
|1
|0
|0
|1
|0
|-
|0
|1
|0
|1
|0
|-
|0
|0
|1
|1
|0
|}
''*addition starts from [LSb](/source/Bit_numbering)''
;Result=1110 or 14

==See also==
* [Parallel binary adder](/source/Parallel_binary_adder)

==References==
{{reflist}}

==Further reading==
* http://www.quinapalus.com/wires8.html
* http://www.asic-world.com/digital/arithmetic3.html

==External links==
* [http://teahlab.com/finite_state_machine_Serial_Adder/ Interactive Serial Adder], Provides the visual logic of the Serial Adder circuit built with Teahlab's Simulator.

Category:Binary arithmetic
Category:Adders (electronics)

---
Adapted from the Wikipedia article [Serial binary adder](https://en.wikipedia.org/wiki/Serial_binary_adder) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Serial_binary_adder?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
