Evaluate the following in base 10 :
1 0 0 2 + 1 0 0 8 + 1 0 0 1 0 + 1 0 0 1 6
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I calculated the same way, but I didn't multiply by 1. 😉
100(base 2) is 100 in binary form = 4
100(base 8) is 100 in octal form = 64
100(base 10) is 100 in decimal form = 100
100(base 16) is 100 in hexadecimal form = 256
4 + 64 + 100 + 256 = 424
Since we are playing around with bases, you might wanna mention which base you want the answer to be in.
Log in to reply
Exactly! Thats what I thought!
I appreciate your comment.
But I have already mentioned in the question that the desired value has to be in "base 10".
For any base x , 1 0 0 x = x 1 0 2 .
Then 2 2 + 8 2 + 1 0 2 + 1 6 2 = 4 2 4 .
100 2 ( x indicates base number) is in binary. So, decimal form of this number is : (1 * 2^2) + (0 * 2^1) + (0 * 2^0) = 4 + 0 +0 = 4
100_8 is in octal. So, decimal form of this number is: (1 * 8^2) + (0 * 8^1) + (0 * 8^0) = 64 + 0 + 0 = 64
100_10 is already in decimal. No conversion required here. So, the number is: = 100
100_16 is in hexadecimal. So, the decimal form of this number is: (1 * 16^2) + (0 * 16^1) + (0 * 16^0) = 256 + 0 + 0 = 256
Thus, the number is:
4 + 64 + 100 + 256 = 424
OR
1 2^2+1 8^2+1 10^2+1 16^2=424
AND
2²+8²+10²+16² = 4+64+100+256 = 424
1 0 0 2 + 1 0 0 8 + 1 0 0 1 0 + 1 0 0 1 6 = 2 2 + 8 2 + 1 0 2 + 1 6 2 = 4 + 6 4 + 1 0 0 + 2 5 6 = 4 2 4
2^2 + 8^2 + 10^2 + 16^2 = 4 + 64 + 100 + 256 = 424
Problem Loading...
Note Loading...
Set Loading...
1 0 0 2 + 1 0 0 8 + 1 0 0 1 0 + 1 0 0 1 6
= ( 2 2 × 1 ) + ( 8 2 × 1 ) + ( 1 0 2 × 1 ) + ( 1 6 2 × 1 )
= 4 1 0 + 6 4 1 0 + 1 0 0 1 0 + 2 5 6 1 0 = 4 2 4 1 0