
Kamal D.
asked 10/14/16Convert the numeral to a numeral in base ten. 5336 16
Convert the numeral to a numeral in base ten.
5336 16
5336 16
More
2 Answers By Expert Tutors

David W. answered 10/14/16
Tutor
4.7
(90)
Experienced Prof
Both decimal and hexadecimal are positional number systems. That means each digit has a place value that is a power of the number base.
So,
abc (decimal) is a*102 + b*101 + c*100
and
abc (hexadecimal ) is a*161 + b*161 + c*160 [numbers listed as decimal]
522616 is
5*163 + 3*162 + 3*161 + 6*160
20480 + 768 + 48 + 6
21302 (in decimal)
You may also loop through the calculations:
(5*16 * 3)*16 + 3)*16 + 6
5*16=80
80+3=83
83*16=1328
1328+3=1331
1331*16=21296
21296+6=21302
The most interesting method uses recursion:
5336 (hexadecimal)
(somethingA)*16 + 6 [recursive case]
((somethingB]*16+3)*16 + 6 [recursive case]
(((somethingD)*16+3)*16+3)*16 + 6 [recursive case]
(((somethingE)*16+3)*16+3)*16 + 6 [recursive case]
((((5)*16+3)*16+3)*16 + 6 [base case]
(((83)*16+3)*16 + 6
(1331)*16 + 6
21302 (decimal)

Andrew M. answered 10/14/16
Tutor
New to Wyzant
Mathematics - Algebra a Specialty / F.I.T. Grad - B.S. w/Honors
Our normal counting is in base 10.
That is 1's + 10's+100's+1000's .... + a10n
6549=9(100)+4(101)+5(102)+6(103)
Apply the same logic to base 16
533616
=6(160)+3(161)+3(162)+5(163)
Plug those into your calculator.
Note : take a lok at the following site:
http://gwydir.demon.co.uk/jo/numbers/binary/bases.htm
Still looking for help? Get the right answer, fast.
Ask a question for free
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Find an Online Tutor Now
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Andrew M.
10/14/16