I'm looking for a effective way to multiply Hexadecimal
For instance, i have to find value of the quadruple of 0.FEDC
0.FEDC * 4 = ???
Normally, i will have to change the hex to binary :
0.FEDC = 0000.11111110110111
Then convert the binary to decimal :
0000.11111110110111 = 0.99554443359375
And multiply the decimal :
0.99554443359375 * 4 = 3.982177734375
Then again, convert the multiplied value to binary :
3.982177734375 = 11.1111101101110000000000
And ... again, convert the binary
11.1111101101110000000000 = 3.FB7
Is there any other quicker ways than this ? Because when i take the exam i'm not allowed to use calculator or any kind of computer, and doing this manually is such a nightmare and time consuming
Any help is greatly appreciated !