SOLUTION: Convert the following hexadecimal numbers to both binary and decimal C521 base 16 3ADF base 16 Can you please explain to me this homework question step-by-step? Thanks!

Algebra ->  Logarithm Solvers, Trainers and Word Problems -> SOLUTION: Convert the following hexadecimal numbers to both binary and decimal C521 base 16 3ADF base 16 Can you please explain to me this homework question step-by-step? Thanks!       Log On


   



Question 1190195: Convert the following hexadecimal numbers to both binary and decimal
C521 base 16
3ADF base 16

Can you please explain to me this homework question step-by-step? Thanks!

Answer by Edwin McCravy(20064) About Me  (Show Source):
You can put this solution on YOUR website!
To convert from hexadecimal, replace each individual hex 
digit with its 4-digit binary equivalent. Print this chart:

0%5Bdecimal%5D%22%22=%22%220%5Bhex%5D%22%22=%22%220000%5Bbinary%5D
1%5Bdecimal%5D%22%22=%22%221%5Bhex%5D%22%22=%22%220001%5Bbinary%5D
2%5Bdecimal%5D%22%22=%22%222%5Bhex%5D%22%22=%22%220010%5Bbinary%5D
3%5Bdecimal%5D%22%22=%22%223%5Bhex%5D%22%22=%22%220011%5Bbinary%5D
4%5Bdecimal%5D%22%22=%22%224%5Bhex%5D%22%22=%22%220100%5Bbinary%5D
5%5Bdecimal%5D%22%22=%22%225%5Bhex%5D%22%22=%22%220101%5Bbinary%5D
6%5Bdecimal%5D%22%22=%22%226%5Bhex%5D%22%22=%22%220110%5Bbinary%5D
7%5Bdecimal%5D%22%22=%22%227%5Bhex%5D%22%22=%22%220111%5Bbinary%5D
8%5Bdecimal%5D%22%22=%22%228%5Bhex%5D%22%22=%22%221000%5Bbinary%5D
9%5Bdecimal%5D%22%22=%22%229%5Bhex%5D%22%22=%22%221001%5Bbinary%5D
10%5Bdecimal%5D%22%22=%22%22A%5Bhex%5D%22%22=%22%221010%5Bbinary%5D
11%5Bdecimal%5D%22%22=%22%22B%5Bhex%5D%22%22=%22%221011%5Bbinary%5D
12%5Bdecimal%5D%22%22=%22%22C%5Bhex%5D%22%22=%22%221100%5Bbinary%5D
13%5Bdecimal%5D%22%22=%22%22D%5Bhex%5D%22%22=%22%221101%5Bbinary%5D
14%5Bdecimal%5D%22%22=%22%22E%5Bhex%5D%22%22=%22%221110%5Bbinary%5D
15%5Bdecimal%5D%22%22=%22%22F%5Bhex%5D%22%22=%22%221111%5Bbinary%5D

C521 base 16 

To binary

  C    5    2    1
1100 0101 0010 0001

Answer: 1100010100100001

To decimal:

A=10, B=11, C=12, D=13, E=14, F=15

C%2A16%5E3%2B5%2A16%5E2%2B2%2A16%2B1
12%2A16%5E3%2B5%2A16%5E2%2B2%2A16%2B1
12%2A4096%2B5%2A256%2B2%2A16%2B1
49152%2B1280%2B32%2B1
50465

3ADF base 16

You do 3ADF base 16 yourself.

Edwin