Explanation
Solution
To solve this, we first perform the hexadecimal addition and then convert the result into a decimal number.
Step 1: Hexadecimal Addition
We add the numbers column by column. Remember that in Hexadecimal:
A=10 and B=11.
\begin{array}{r@{\quad}c@{\quad}c@{\quad}c} & A & 1 & 0 \\ + & B & 2 & 1 \\ \hline 1 & 5 & 3 & 1 \end{array}
So, (A10)16+(B21)16=(1531)16.
Step 2: Conversion to Decimal
Now, convert (1531)16 to its decimal equivalent using powers of 16:
(1531)16=(1×163)+(5×162)+(3×161)+(1×160)
Calculate the values:
-
1×4096=4096
-
5×256=1280
-
3×16=48
-
1×1=1
Summing them up:
Conclusion:
The decimal equivalent of the operation is 5425.