Amathproblem22
- 12
- 0
I don't need help with a problem just help with easy ways of tackling the problems. Below are my current methods. (Hopefully, all is correct I was in a rush).
Binary to Decimal:
I already know $$128+64+32= 224$$ so then $$ 16+1=17$$, meaning $$224+17=241$$
Decimal to Binary:
$$79$$
So I do this by basically figuring what adds up to 79 or by figuring if the number can fit into any (hopefully that makes sense).
Binary to Hexadecimal:
I break it up into two sets of 8-4-2-1 and add up the 1's below it accordingly. $$10=A$$ in the first column, and $$5$$ in the scond column so $$A5$$
Hexadecimal to Binary:
$$B4$$
$$B=11,4=4$$ so I but ones in the columns above so it adds up to the desired numbers leaving me 10110100.
Hexadecimal to Decimal
Using B4 from above = 11, then times that by 16 which in this case is easy and = 176 then adding 4 = 180
Binary to Decimal:
128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
1 | 1 | 1 | 1 | 0 | 0 | 0 | 1 |
I already know $$128+64+32= 224$$ so then $$ 16+1=17$$, meaning $$224+17=241$$
Decimal to Binary:
$$79$$
128 | 64 | 32 | 16 | 8 | 4 | 2 | 1 |
0 | 1 | 0 | 0 | 1 | 1 | 1 | 1 |
Binary to Hexadecimal:
8 | 4 | 2 | 1 | 8 | 4 | 2 | 1 |
1 | 0 | 1 | 0 | 0 | 1 | 0 | 1 |
I break it up into two sets of 8-4-2-1 and add up the 1's below it accordingly. $$10=A$$ in the first column, and $$5$$ in the scond column so $$A5$$
Hexadecimal to Binary:
$$B4$$
$$B=11,4=4$$ so I but ones in the columns above so it adds up to the desired numbers leaving me 10110100.
Hexadecimal to Decimal
Using B4 from above = 11, then times that by 16 which in this case is easy and = 176 then adding 4 = 180