This hexadecimal multiplication calculator is designed to perform multiplication operations specifically on hexadecimal numbers. Hexadecimal, often abbreviated as "hex," is a base-16 numbering system that uses sixteen distinct symbols: 0-9 followed by A-F, where A stands for 10, B for 11, and so on up to F for 15.
Note: Starting from the rightmost digit of the bottom number, multiply it by each digit of the top number, one at a time, and write the partial products down. Each partial product is shifted one position to the left for each subsequent digit. Use the Hexadecimal Multiplication Table to find the results of multiplying two hex digits by each other.
Multiply hex 3A by hex 5:
Multiply the hexadecimal digits directly: A * 5 = 32 3 * 5 = F0 (shifted one position to the left) Add the products together: 32 + F0 = 122
The product of multiplying hex 3A by hex 5 is hex 122
Multiply hex 4A3 by hex 7B3:
4A3 * 3 = 3 * 3 = 9 A * 3 = (shifted one position to the left)1E0 4 * 3 = (shifted two positions to the left) C00 Add the products together:
9 + 1E0 + C00 = DE9
4A3 * B = 3 * B = (shifted one position to the left) 210 A * B = (shifted two positions to the left) 6E00 4 * B = (shifted three positions to the left) 2C000 Add the products together:
210 + 6E00 + 2C000 = 33010
4A3 * 7 = 3 * 7 = (shifted two positions to the left) 1500 A * 7 = (shifted three positions to the left) 46000 4 * 7 = (shifted four positions to the left) 1C0000 Add the products together
1500 + 46000 + 1C0000 = 207500
Add the three sums of the products together: DE9 + 33010 + 207500 = 23B2F9
The product of multiplying hex 4A3 by hex 7B3 is hex 23B2F9.