Sequential Binary Multiplier
Last Updated :
11 Sep, 2024
In this article, we are going to learn how a sequential binary multiplier works with examples. So for that, we also need to learn a few concepts related to the sequential circuit, binary multipliers, etc. Finally solving the examples using a sequential binary multiplier method.
Sequential Circuit
A sequential circuit is a combinational circuit with memory. The output of the sequential circuit depends on present inputs and present state [past outputs]. The information stored in the sequential circuit represents the present state. The present state and present input will define the output of the next state.
Binary Multiplier
A binary multiplier is used to multiply two binary numbers. It is a basic electronic circuit in digital electronics, such as a computer. The binary multiplier is also called an add-shift adder.
A digital multiplier can be implemented using a variety of computer arithmetic techniques. The majority of techniques involve computing a set of partial products, which are then summed using binary adders.
Adder: An adder, also known as summer, is a digital circuit that performs number addition. Adders are used in the arithmetic logic units of many computers and other types of processors (ALUs).
Types of Multipliers
- Bit Multiplier 2×2: This multiplier can multiply two numbers with bit size = 2, which means that both the multiplier and the multiplicand can be of 2 bits.
- Bit Multiplier 3×3: This multiplier has a maximum bit size of 3 bits and can multiply two numbers. The product’s bit size will be 6.
- Bit Multiplier 4×4: This multiplier can multiply a 4-bit binary number and produce an 8-bit product because the bit size of the product equals the sum of the bit sizes of the multiplier and multiplicand.
Before going to sequential binary multiplication first let’s see how normal binary multiplication works:
Binary Multiplication
Consider two binary numbers num1 and num2
num1=12 ⇢ which equivalent to binary value as 1100 ⇢ multiplier
num2=13 ⇢ which equivalent to binary value as 1101 ⇢ multiplicand
Example 1:
1 1 0 0
x 1 1 0 1
----------------------
1 1 0 0
0 0 0 0
1 1 0 0
1 1 0 0
--------------------
1 0 0 1 1 1 0 0
The above multiplication is performed by a sequential binary multiplier as below:
Operation:
Consider two binary numbers num1 and num2
Step 1:
num1=12 ⇢ which equivalent to a binary value as 1100
num2=13 ⇢ which equivalent to binary value as 1101
Assume multiplier as M and multiplicand as Q
Step 2:
Here we also need the other two parameters accumulator and carry and
initially the values of both accumulator and carry will be zero.
Let,
Accumulator a = 0000
Carry c = 0
Step 3:
Q = 1 1 0 1
q3 q2 q1 q0
if q0=0 then perform an only right shift operation
if q0=1 then perform add (A+M) and right shift operation
Here we have to perform up to 4 steps because the number of bits in the multiplier is 4
Steps |
M (Multiplier) |
C (Carry) |
A(Accumulator) |
Q (Multiplicand) |
Operation |
|
1100 |
0 |
0000 |
1 1 0 1
q3q2q1q0
|
initialization
q0=1 then perform the next step as add and shift right operation
|
Step 1 |
1100 |
0 |
0000+
1100
——
1100
0110
|
1101
0 1 1 0
q3q2q1q0
|
A+M
right shift operation of carry, accumulator, and quotient and discard
last value i.e. q0 after shifting
q0=0 perform next step only right shift operation
|
Step 2 |
1100 |
0 |
0110
0011
|
0110
0011
|
right shift operation
q0=1 perform next step add (A+M) and shift right operation
|
Step 3 |
1100 |
0 |
0011
1100
——-
1111
0111
|
0011
1001
|
A+M
right shift operation of carry, accumulator, and quotient and discard
last value i.e. q0 after shifting
q0=1 perform add (A+M) and shift right operation
|
Step 4 |
1100 |
1
—-
|
0111
1100
——-
0011
——
1001
|
1001
——–
1100
|
A+M
right shift operation of carry, accumulator, and quotient and discard
last value i.e. q0 after shifting
Here is the final result of multiplication because we have to perform
only 4 steps as number bits is 4 in multiplier
|
Step 4:
Result = Combination of accumulator value(A) and Q =>10011100
the equivalent value is 156 obtained from the formula
.........+23+22+21+20
1 0 0 1 1 1 0 0
27+0+0+24+23+22+0+0 =156
Flow chart
The flow chart explains the whole operation of the sequential binary multiplier in a simple manner. First, assign 0 to the accumulator and carry values. then check the LSB of Q i.e., Q0, if q0 is 0 then perform only the right shift operation and if q0 is 1 then perform the addition of the accumulator and multiplicand, store the result in the accumulator then perform the right shift operation. We have to continue this process based on the number of bits in the multiplier.

Flow chart of sequential binary multiplier
Hardware Circuit Diagram
The below diagram describes the hardware circuit of the sequential binary multiplier.

Hardware circuit diagram
Example 2: Here we have to perform up to 4 steps because the number of bits in the multiplier is 4.
Steps |
M (Multiplier) |
C (Carry) |
A(Accumulator) |
Q (Multiplicand) |
Operation |
|
0110 |
0 |
0000 |
1 1 1 0
q3q2q1q0
|
initialization
q0=0 perform next step only right shift operation
|
Step1 |
|
0 |
0000 |
0111 |
q0=1 then perform the next step as add and shift right operation |
Step2 |
0110 |
0
0
|
0000+
0110
——-
0110
0011
|
0111
0011
|
A+M
right shift operation of, accumulator and quotient and discard
last value i.e. q0 after shifting
q0=1 then perform the next step as add and shift right operation
|
Step3 |
0110 |
0
0
|
0011
0110
——
1001
0100
|
0011
1001
|
A+M
right shift operation of carry, accumulator, and quotient and discard
last value i.e. q0 after shifting
q0=1 then perform the next step as add and shift right operation
|
Step4 |
0110 |
0
0
|
0100
0110
——
1010
0101
|
1001
0100
|
A+M
right shift operation of carry, accumulator, and quotient and discard
last value i.e. q0 after shifting
Here is the final result of multiplication because we have to perform
only 4 steps as number bits are 4 in multiplier
|
Result:
Combination of accumulator value(A) and Q =>01010100
the equivalent value is 84 obtained from the formula
.........+23+22+21+20
0 1 0 1 0 1 0 0
0+64+0+16+0+8+0+0 ⇢ 84
Right Shift Operation
Another procedure involved in binary multiplication when using a sequential binary multiplier is the right shift procedure; it is useful in the correct alignment of the binary numbers to allow subsequent operations. Here’s how the right shift operation is carried out and what it means in this context:
Concept of Right Shift
- Logical Shift: This entails moving all the bits to the right most side of the bar and placing a value of ‘0’ on the extreme left side of the bar. This is normally employed where an unsigned number is being worked on.
- Arithmetic Shift: This involves a shifting of all bits to the right while the sign of the bit which is usually the left most in a signed number remains intact. For unsigned numbers this is essentially the same as a logical shift.
Since, we are dealing with unsigned binary numbers in the case of sequential binary multipliers, we generally perform a logical shift.
How it works in Sequential Multiplication
Initial Setup: In multiplication you have two major components involved.
- Accumulator (A): Contains the intermediate sum outputs or the afterthoughts.
- Multiplier (Q): This one is actually holding the shifting format of the multiplicand in a binary format.
Right Shift Operation
Shift Right All Bits
- Every bit of the Accumulator (A) and the Multiplier (Q) is shifted one position in the right.
- The last bit of the Accumulator and the Multiplier is removed; the first bit of it is replaced by ‘0’.
Update Carry
- The term carry out that was shifted from the Accumulator or Multiplier often forms the new carry. It is utilized in the subsequent addition function.
Effect on Binary Numbers
- For the Multiplier (Q): In such a way, changing the place of the multiplier to the right contributes to preparation for the further work of the next LSB. When the LSB of the Q, that is, Q0 is 1, then the current value of the Accumulator is added to the partial product accumulation. Finally after increment the whole binary number is shifted right.
- For the Accumulator (A): The Accumulator is shifted right with reference to its new position of the multiplier bits. This makes it ready for the next addition operation to take place.
Example
To explain it methodically, let’s go through the step by step example, of a 4-bit sequence binary multiplier.
Initial Values:
- Multiplier (Q): 1101
- Multiplier (M): 1100
- Accumulator (A): 0000
- Carry (C): 0
Step-by-Step Right Shift Operation
1. Before Shift:
Exercise the operation on the LSB of Q (Q0). If Q0 is 1, add (A + M), or (A + 0M depending on the proper treatment of the final carry during addition) to the accumulator and then shift.
Perform Addition
- Add (A + M): To sum 0000 and 1100 one gets 1100.
- Update Accumulator (A): 1100
Shift Right
- Right Shift Accumulator (A): 1100 becomes 0110
- Right Shift Multiplier (Q): 1101 is equal to 0110
- Carry (C): 0 (remains the same unless there was an overflow in addition)
Result After Shift
- A: 0110
- Q: 0110
- Carry (C): 0
This is done for the number of bits in the multiplier, thus, the number of bits in the product will be determined by the number of times this operation is done. In which for each bit in the multiplier, if the current is equal to one, performs the addition and store it in the accumulator along with shifting right.
Advantages of Sequential Binary Multiplier
- Simplicity: Sequential binary multipliers are not so complex and thus can easily be designed and implemented. They utilize elementary operations such as addition and shifting operation which are easily understandable and can also easily implemented in either in hardware or software.
- Reduced Hardware Complexity: There are a number of types of multipliers, but out of all of them sequential binary multipliers are notable for the fact that they use considerably fewer components as compared, for example, to parallel multipliers. They use fewer adders and logic gates because the operations are done one by one instead of all the operations at the same time.
- Flexible Precision: The sequential binary multipliers are designed in such a way that they can accommodate a change in the bit size. By changing the amount of steps, they are able to perform multiplication of numbers which have different length of bits, thus being able to handle a vast number of computations.
- Ease of Integration: In these multipliers, one can easily interface them to other bigger digital systems since they are comparatively simple. It integrates nicely with systems that already uses sequential logic for other processes.
Disadvantages of Sequential Binary Multiplier
- Speed: Sequential binary multipliers are considered to be slower than parallel multipliers mainly because the former operates on the bits serial-wise. So it takes many clock cycles to compute each bit of the result and the entire multiplication may turn to be slow.
- Sequential Nature: Sequential operations mean that one has to wait for another to be carried out which is not efficient in high speed, applications that prefer parallel processing.
- Complexity with Larger Bit Sizes: It means that the more digits there are in the numbers which are to be multiplied, the more steps will be needed for the completion of the calculation. This can result in increased computation time as well a complicated control logic in the monitoring process.
- Intermediate Storage Requirements: An additional complication is introduced by use of an accumulator and carry registers which increases storage needs. There is unique an operational demand for additional storage space In case of large bit sizes, such needs may turn out to be substantial .
- Educational Tools: Sequential binary multipliers are simple and they are often employed in teaching on basic principles of Digital arithmetic and the design of Sequential Logic.
Applications of Sequential Binary Multiplier
- Embedded Systems: Sequential binary multipliers are typically used in embedded systems resulting in both these benefits of less utilization of resources and simplicity. It is more versatile in the usage that is in microcontrollers and in digital signal processors where it can be used to multiply the small to medium-sized binary numbers.
- Digital Signal Processing (DSP): In DSP applications such as in the processing of signals, the operations that are usually done include multiplications and these are performed using sequential binary multipliers in algorithms like filtering and Fourier transforms.
- Arithmetic Logic Units (ALUs): Sequential binary multipliers can be used for multiplication purposes in the ALU’s of the processors. They are particularly effective for processors in which multiplication occurs fewer times than addition.
- Educational Tools: This is due to their simple structure and they can be used often in learning environment to teach basic arithmetic logic and sequential logic circuits.
Conclusion
Sequential binary multipliers are important building blocks for the digital arithmetic and can be regarded as efficient solution for binary multiplication used in various digital circuits. Their design is anchored on simple operations such as addition and shifting and therefore easy to master. Nevertheless, their factored structure makes them slower than advanced parallel multipliers due to their sequential operation. Nevertheless, due to their simplicity and fewer demands towards the hardware these nets might be applied in number of ways, particularly in conditions when the amount of resources is limited.
Frequently Asked Questions on Sequential Binary Multiplier-FAQs
What is the main difference between sequential and parallel binary multipliers?
Sequential binary multipliers perform one bit at a time in stages and are thus less complex but slower. On the other hand, parallel Binary multipliers work in parallel and carry out all the bit operations at the same time are faster than the serial ones but are implemented with complicated hardware.
How does the right shift operation affect the multiplication process?
The right shift operation moves the cursor and places the binary numbers in the right position for multiplication. This forces a division by two on the multiplier and accumulator ‘registers’ in each step meaning that it frees up space for the next operation or addition.
Can sequential Binary Multipliers handle floating-point numbers?
Sequential binary multipliers are employed for integer multiplication most of the time. Manipulation of floating-point numbers would necessitate specific features to address the parts of the numbers as well as their exponents, which adds to the complication of the design.
Are sequential binary multipliers suitable for high-performance computing?
Though there is simplicity and low cost in the sequential binary multipliers it has the disadvantage of slow speed which may not be desirable for high-speed applications. Parallel multipliers or any other high level multiplication computations are more desirable in such a case.
Similar Reads
Digital Electronics and Logic Design Tutorials
Digital Electronics and Logic Design are key concepts in both electronics and computer science. Digital systems are at the core of everything from basic devices like calculators to advanced computing systems. Digital systems use binary numbers (0s and 1s) to represent and process information.Logic g
4 min read
Boolean Algebra and Logic Gates
Logic Gates - Definition, Types, Uses
Logic Gates are the fundamental building blocks in digital electronics. There are basically seven main types of logic gates which are used to perform various logical operations in digital systems. By combining different logic gates complex operations are performed and circuits like flip-flop, counte
9 min read
Basic Conversion of Logic Gates
In the Digital System, logic gates are the basic building blocks. Â In these logic gates, we can find the gates having more than one input, but will have only one output. The connection between the input and the output of a gate is based on some logic. Based on this logic, different gates are develop
6 min read
Realization of Logic Gate Using Universal gates
In Boolean Algebra, the NAND and NOR gates are called universal gates because any digital circuit can be implemented by using any one of these two i.e. any logic gate can be created using NAND or NOR gates only. Every logic gate has a representation symbol. The below image shows a graphical represen
8 min read
Canonical and Standard Form
Canonical Form - In Boolean algebra, the Boolean function can be expressed as Canonical Disjunctive Normal Form known as minterm and some are expressed as Canonical Conjunctive Normal Form known as maxterm. In Minterm, we look for the functions where the output results in "1" while in Maxterm we loo
6 min read
Types of Integrated Circuits
In this article, we will go through the Types of Integrated Circuits, we will start our article with the introductions of the ICs, then we will go through different types of ICs one by one, At last, we will conclude our article will their applications, advantages, disadvantages and some FAQs. Table
7 min read
Minimization Techniques
Minimization of Boolean Functions
As discussed in the "Representation of Boolean Functions" every boolean function can be expressed as a sum of minterms or a product of maxterms. Since the number of literals in such an expression is usually high, and the complexity of the digital logic gates that implement a Boolean function is dire
3 min read
Introduction of K-Map (Karnaugh Map)
In many digital circuits and practical problems, we need to find expressions with minimum variables. We can minimize Boolean expressions of 3, 4 variables very easily using K-map without using any Boolean algebra theorems. It is a tool which is used in digital logic to simplify boolean expression. I
5 min read
5 variable K-Map in Digital Logic
Prerequisite - Implicant in K-Map Karnaugh Map or K-Map is an alternative way to write a truth table and is used for the simplification of Boolean Expressions. So far we are familiar with 3 variable K-Map & 4 variable K-Map. Now, let us discuss the 5-variable K-Map in detail. Any Boolean Express
5 min read
Various Implicants in K-Map
Implicant is a product/minterm term in Sum of Products (SOP) or sum/maxterm term in Product of Sums (POS) of a Boolean function. For example, consider a Boolean function, F = AB + ABC + BC. Implicants are AB, ABC, and BC. In this article, we will explore various implicants in K-Map with examples for
6 min read
Don't Care (X) Conditions in K-Maps
One of the most important concepts in simplifying output expressions using Karnaugh Maps (K-Maps) is the 'Don't Care' condition. The 'Don't Care' conditions allow us to treat certain cells in a K-Map as either 0, 1, or to ignore them altogether, which can help in forming larger and more efficient gr
4 min read
Quine McCluskey Method
Boolean function simplification is one of the basics of Digital Electronics. The quine-McCluskey method also called the tabulation method is a very useful and convenient method for simplification of the Boolean functions for a large number of variables (greater than 4). This method is useful over K-
8 min read
Two Level Implementation of Logic Gates
The term "two-level logic" refers to a logic design that uses no more than two logic gates between input and output. This does not mean that the entire design will only have two logic gates, but it does mean that the single path from input to output will only have two logic gates. In two-level logic
10 min read
Combinational Circuits
Half Adder in Digital Logic
A half adder is a digital logic circuit that performs binary addition of two single-bit binary numbers. It has two inputs, A and B, and two outputs, SUM and CARRY. The SUM output is the least significant bit (LSB) of the result, while the CARRY output is the most significant bit (MSB) of the result,
5 min read
Full Adder in Digital Logic
Full Adder is the adder that adds three inputs and produces two outputs. The first two inputs are A and B and the third input is an input carry as C-IN. The output carry is designated as C-OUT and the normal output is designated as S which is SUM. The C-OUT is also known as the majority 1's detector
4 min read
Half Subtractor in Digital Logic
A half subtractor is a digital logic circuit that performs binary subtraction of two single-bit binary numbers. It has two inputs, A and B, and two outputs, DIFFERENCE and BORROW. The DIFFERENCE output is the difference between the two input bits, while the BORROW output indicates whether borrowing
3 min read
Full Subtractor in Digital Logic
A full subtractor is a combinational circuit that performs subtraction of two bits, one is minuend and other is subtrahend, taking into account borrow of the previous adjacent lower minuend bit. This circuit has three inputs and two outputs. The three inputs A, B and Bin, denote the minuend, subtrah
3 min read
Parallel Adder and Parallel Subtractor
Adding and Subtracting numbers is very simple in digital electronics. To do this for quickly and efficiently, Most of the for binary numbers (numbers made of 1 and 0), we use circuits like the Parallel Adder and Parallel Subtractor. These types of circuits can handle more than one bit at a time, mak
6 min read
Sequential Binary Multiplier
In this article, we are going to learn how a sequential binary multiplier works with examples. So for that, we also need to learn a few concepts related to the sequential circuit, binary multipliers, etc. Finally solving the examples using a sequential binary multiplier method. Sequential CircuitA s
12 min read
Multiplexers in Digital Logic
In this article we will go through the multiplexer, we will first define what is a multiplexer then we will go through its types which are 2x1 and 4x1, then we will go through the Implementation of the 2x1 mux and higher mux with lower order mux, at last we will conclude our article with some applic
10 min read
Event Demultiplexer in Node.js
Node.js is designed to handle multiple tasks efficiently using asynchronous, non-blocking I/O operations. But how does it manage multiple operations without slowing down or blocking execution? The answer lies in the Event Demultiplexer. The Event Demultiplexer is a key component of Node.js's event-d
3 min read
Binary Decoder in Digital Logic
A binary decoder is a digital circuit that converts a binary code into a set of outputs. The binary code represents the position of the desired output and is used to select the specific output that is active. Binary decoders are the inverse of encoders and are commonly used in digital systems to con
7 min read
Encoder in Digital Logic
An encoder is a digital circuit that converts a set of binary inputs into a unique binary code. The binary code represents the position of the input and is used to identify the specific input that is active. Encoders are commonly used in digital systems to convert a parallel set of inputs into a ser
7 min read
Code Converters - Binary to/from Gray Code
In this article, we will go through Code Converters - Binary to/from Gray Code,we will start our article by defining Code converters, Binary code and Gray code, and then we will go through the conversion of binary code to gray code and vice versa. At last, we will conclude our article with some faqs
9 min read
Magnitude Comparator in Digital Logic
A magnitude digital Comparator is a combinational circuit that compares two digital or binary numbers in order to find out whether one binary number is equal, less than, or greater than the other binary number. We logically design a circuit for which we will have two inputs one for A and the other f
7 min read
Sequential Circuits
Introduction of Sequential Circuits
Sequential circuits are digital circuits that store and use the previous state information to determine their next state. Unlike combinational circuits, which only depend on the current input values to produce outputs, sequential circuits depend on both the current inputs and the previous state stor
7 min read
Difference between Combinational and Sequential Circuit
In digital electronics, circuits are classified into two primary categories: The combinational circuits and the sequential circuits. Where the outputs depend on the current inputs are called combination circuit, combinational circuits are simple and effective for functions like addition, subtraction
4 min read
Latches in Digital Logic
Latch is a digital circuit which converts its output according to its inputs instantly. To implement latches, we use different logic gates. In this article, we will see the definition of latches, latch types like SR, gated SR, D, gated D, JK and T with its truth table and diagrams and advantages and
7 min read
Flip-Flop types, their Conversion and Applications
In this article, we will go through the Flip-Flop types, their Conversion and their Applications, First, we will go through the definition of the flip-flop with its types in brief, and then we will go through the conversion of the flip-flop with its applications, At last, we will conclude our articl
7 min read
Register, Counter, and Memory Unit
Counters in Digital Logic
A Counter is a device which stores (and sometimes displays) the number of times a particular event or process has occurred, often in relationship to a clock signal. Counters are used in digital electronics for counting purpose, they can count specific event happening in the circuit. For example, in
4 min read
Ripple Counter in Digital Logic
Counters play a crucial role in digital logic circuits, enabling tasks such as clock frequency division and sequencing. This article explores the concept of ripple counters, a type of asynchronous counter, their operation, advantages, and disadvantages in digital logic design. What is a Counter?Coun
5 min read
Ring Counter in Digital Logic
A ring counter is a typical application of the Shift register. The ring counter is almost the same as the shift counter. The only change is that the output of the last flip-flop is connected to the input of the first flip-flop in the case of the ring counter but in the case of the shift register it
3 min read
General Purpose Registers
A register is a collection of flip-flops. Single bit digital data is stored using flip-flops. By combining many flip-flops, the storage capacity can be extended to accommodate a huge number of bits. We must utilize an n-bit register with n flip flops if we wish to store an n-bit word. General Purpos
8 min read
Shift Registers in Digital Logic
Pre-Requisite: Flip-Flops Flip flops can be used to store a single bit of binary data (1 or 0). However, in order to store multiple bits of data, we need multiple flip-flops. N flip flops are to be connected in order to store n bits of data. A Register is a device that is used to store such informat
8 min read
Computer Memory
Computer memory is just like the human brain. It is used to store data/information and instructions. It is a data storage unit or a data storage device where data is to be processed and instructions required for processing are stored. It can store both the input and output can be stored here. It's f
8 min read
Random Access Memory (RAM)
Random Access Memory (RAM) is a type of computer memory that stores data temporarily. When you turn off your computer, the data in RAM disappears, unlike the data on your hard drive, which stays saved. RAM helps your computer run programs and process information faster. This is similar to how the br
11 min read
Read Only Memory (ROM)
Memory plays a crucial role in how devices operate, and one of the most important types is Read-Only Memory (ROM). Unlike RAM (Random Access Memory), which loses its data when the power is turned off, ROM is designed to store essential information permanently. Here, weâll explore what ROM is, how it
8 min read
Practice Questions - Digital Logic & Design