Isn't 1.11010 negative? For example when we have 10010 signed, then it is equal to -14 not 16 (which is the sign and magnitude).
Main Topics
Browse All TopicsHello,
I want to convert a negative binary fraction to its equivalent in signed decimal fraction and signed hecadecimal fraction. I am not sure how I can do this. I know how to convert positive binary fractions to their equivalents in decimal and hexadecimal numbers.
For example 0.11010 can be converted to decimal number by finding the value of 11010, that is 26 and divide it by 2^5 because there are 5 digits after the point: 0.8125 (We could also find this by using 2^-1 2^-2...)
BUT how can we convert 1.11010 into signed decimal?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Yeah, in signed 2's complement format, you cannot simply add - at the beginning of a number. You have to identify it by adding 1 at the beginning of the number so you can interpret it as a negative number.
Anyway I've found my answer on a website. You can check it here:
http://www.swarthmore
(Ch
Not really, we can use them in many operations in the area of computer organization. For example Serial Communication Interface (UART), an RS232 transmission, can use signed bits to transfer negative numbers in practice. (We convert the hexadecimal values to binary values while the transfer is in process, this is where we need them).
Moreover any number we use and store in RAM is also stored with their signed conversion, the cost of adding "-" is very much and requires more place than the single sign bit. Thus, we can use them anywhere where we want to save space from memory and make the process faster.
Of course the use of a sign bit is very common. But I was referring to the signed binary fractions representation detailed on the page you linked to. It is not practical, to use that for representing a fraction in a computer. Floating point representation is usually used instead. The range it can represent is more useful, and it has a separate sign bit.
Note that I'm only discussing this because you might find it useful. If that's not the case, then please tell me ;)
I'm also enjoying the discussion. Yes, you're right, floating points are usually used for fractional numbers since they are more effective than usual binary coded fractions. Implementations may vary according to the need of the system that we are going to build. Floating point notation is preferred because it permits longer numbers to be stored in the memory, since the mantissa of the number is encoded by using the offset values.
Business Accounts
Answer for Membership
by: Infinity08Posted on 2009-01-22 at 08:56:13ID: 23441157
>> BUT how can we convert 1.11010 into signed decimal?
1.11010 == 1.8125 decimal
I'm not sure why you have a problem with signedness. It's just a sign, which is no different in binary or decimal (a negative binary value will still be negative when converted to decimal).