Are you talking about floating point numbers? The wikipedia page on them is pretty good.
If you're talking about numbers like
1.0011
that's
1*2^0 + 0*2^(-1) + 0*2^(-2) + 1*2^(-3) + 1*2^(-4)
=1+1/8+1/16
=1.125 + .0625
=1.125+0.0625
=1.1875
I'm not sure really how to help you with that. Look at how I evaluated it and then go over your notes. Also, if you go to the wiki page (
http://en.wikipedia.org/wiki/Binary_numeral_system) and search "fractional binary" (ctrl+f search), then there's an explanation of it.
[edit]
and if it's not that, you have a harder topic on your hands. go to the floating point wiki
http://en.wikipedia.org/wiki/Floating_point and learn about the mantissa, exponent, and sign of a floating point number.