Hexadecimal addition
Solved
bolo
-
electroben -
electroben -
Hello,
I’d like to understand how to perform a hexadecimal addition
5 C 92
+ 6 A + 106
1 0 (carry)
0 C 6 198
F F 255
+ F F + 255
1 0 (carry)
1 F E 510
do I need to convert to binary to calculate
thank you
I’d like to understand how to perform a hexadecimal addition
5 C 92
+ 6 A + 106
1 0 (carry)
0 C 6 198
F F 255
+ F F + 255
1 0 (carry)
1 F E 510
do I need to convert to binary to calculate
thank you
7 answers
-
As in decimal, addition is performed digit by digit. If the result exceeds "F", we subtract "F" and propagate a carry of "1" to the next digit, toward the left.
See http://ardenneaparis.free.fr/mesScripts/calBas16.htm
where the "p+" button allows step-by-step addition.
(the form below is a converter)