answersLogoWhite

0

Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.

Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.

Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.

Think of the floating-point number as a number in scientific notation, for example, 5.3 x 106 (i.e., 5.3 millions). In this example, 5.3 is the mantissa, whereas 6 is the exponent. The situation is slightly more complicated, in that floating-point numbers used in computers are stored internally in binary. Some precision can be lost when converting between decimal and binary.

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Engineering

How do you convert the binary value 11000001111111100000000000000000 from IEEE 754-1985 to its decimal equivalent?

To convert 11000001111111100000000000000000 from IEEE 754-1985 to its decimal equivalent, proceed as follows: The most significant bit, bit 31, represents the sign, where 0 denotes positive and 1 denotes negative. So this number is clearly negative. The next 8 bits, from bit 23 to bit 30, represent the exponent. Here we have the value 10000011 which is 131 decimal. However, exponents are biased by 127, thus 131 really means 131-127=3. Thus the exponent is 3. In scientific notation, the exponent tells us how many decimal places to move the decimal point and in what direction. This is no different in binary except we use a binary point instead of a decimal point. Thus an exponent of 3 tells us to move the binary point 3 positions to the right (if it were -3, we'd move three position to the left instead). The remaining 23 bits, from bit 0 to bit 22, represent the mantissa, the fractional component. Here we have 11111100000000000000000. However, a leading 1 bit is always implied so the mantissa is really 24 bits long, with a value of 111111100000000000000000. The binary point is placed to the right of the (implied) leading digit, thus this mantissa has a binary value of 1.11111100000000000000000. Note that the leading 1 bit can always be implied because the digit to the left of the binary point must always be non-zero and the only non-zero digit in binary is 1. The exponent, 3, tells us to move the binary point 3 positions to the right, so we now have 1111.11100000000000000000. We can ignore the trailing zeroes so we now have a binary fraction of 1111.111. Converting floating point binary values to decimal values is no different to converting integer values where every bit position represents some power of 2. Those to the left of the binary point represent increasing powers of 2 starting with 2^0, just as they do in integer conversions. Those to the right represent decreasing powers of 2, starting with 2^-1 (which is 0.5 in decimal). Thus, working from left to right we have: 1 x 2^3 = 8 1 x 2^2 = 4 1 x 2^1 = 2 1 x 2^0 = 1 binary point 1 x 2^-1 = 0.5 1 x 2^-2 = 0.25 1 x 2^-3 = 0.125 Adding these up we get the decimal value 15.857. However, the sign bit indicated the value was negative, so the value is -15.857. Thus 11000001111111100000000000000000 in IEEE 754-185 represents -15.857 in decimal.


How do you sort out problem based on programming?

To sort out a problem based on programming, start by clearly defining the problem and breaking it down into smaller, manageable components. Identify the requirements and constraints, then research existing solutions or algorithms that may apply. Next, develop a plan or pseudocode to outline your approach before implementing the solution in code. Finally, test and debug the program to ensure it functions as intended.


What do engineers do when they identify a need?

clearly define th problem they are trying to solve


Which class of immunoglobulin is not an immunoglobulin?

Immunoglobulin D (IgD) is often considered less well-defined compared to the other classes of immunoglobulins (IgA, IgG, IgM, and IgE). While it is indeed classified as an immunoglobulin, its functions are not as clearly understood, and it is present in much lower concentrations in the serum. IgD primarily plays a role in the activation of B cells and is found on their surface rather than being a prominent antibody in immune responses.


What is adult syntax?

Syntax usually utilized by professionals to clearly communicate information with little to no ambiguity.

Related Questions

When a n number is raised to a power the number that is used as a factor is?

the number is the BASE and the power is the EXPONENT. your question is not clearly formulated


What are the benefits of quality functions deployment?

It clearly says the needs of customer.


What are the lost exponent?

The "lost exponent" typically refers to a mathematical concept where certain exponent values are not explicitly mentioned or are overlooked in calculations or theoretical discussions. This can occur in various fields, such as number theory or algebra, where specific properties of exponents are assumed but not clearly stated. It may also relate to issues in computational algorithms that inadvertently ignore or miscalculate certain exponent terms, leading to inaccuracies. Understanding and addressing lost exponents is crucial for precise mathematical reasoning and problem-solving.


How come most of the characters in watchmen don't have superpowers but in one scene you can clearly see an umbrella floating unsupported behind silk spectre?

Because of Dr. Manhattan?


How can you prevent a floating quotation from occurring?

To prevent a floating quotation from occurring, make sure to properly introduce and integrate the quote into your writing, providing context and analysis to connect it to your own ideas. Additionally, always cite the source of the quote and use quotation marks to clearly indicate that it is someone else's words.


How do you change numbers into index notation?

To change numbers into index notation, express the number as a product of its prime factors. For each prime factor, write it in the form of a base raised to an exponent, where the exponent indicates how many times that prime factor is used. For example, the number 60 can be factored into primes as (2^2 \times 3^1 \times 5^1). This notation clearly shows the composition of the number using its prime factors.


How do you convert the binary value 11000001111111100000000000000000 from IEEE 754-1985 to its decimal equivalent?

To convert 11000001111111100000000000000000 from IEEE 754-1985 to its decimal equivalent, proceed as follows: The most significant bit, bit 31, represents the sign, where 0 denotes positive and 1 denotes negative. So this number is clearly negative. The next 8 bits, from bit 23 to bit 30, represent the exponent. Here we have the value 10000011 which is 131 decimal. However, exponents are biased by 127, thus 131 really means 131-127=3. Thus the exponent is 3. In scientific notation, the exponent tells us how many decimal places to move the decimal point and in what direction. This is no different in binary except we use a binary point instead of a decimal point. Thus an exponent of 3 tells us to move the binary point 3 positions to the right (if it were -3, we'd move three position to the left instead). The remaining 23 bits, from bit 0 to bit 22, represent the mantissa, the fractional component. Here we have 11111100000000000000000. However, a leading 1 bit is always implied so the mantissa is really 24 bits long, with a value of 111111100000000000000000. The binary point is placed to the right of the (implied) leading digit, thus this mantissa has a binary value of 1.11111100000000000000000. Note that the leading 1 bit can always be implied because the digit to the left of the binary point must always be non-zero and the only non-zero digit in binary is 1. The exponent, 3, tells us to move the binary point 3 positions to the right, so we now have 1111.11100000000000000000. We can ignore the trailing zeroes so we now have a binary fraction of 1111.111. Converting floating point binary values to decimal values is no different to converting integer values where every bit position represents some power of 2. Those to the left of the binary point represent increasing powers of 2 starting with 2^0, just as they do in integer conversions. Those to the right represent decreasing powers of 2, starting with 2^-1 (which is 0.5 in decimal). Thus, working from left to right we have: 1 x 2^3 = 8 1 x 2^2 = 4 1 x 2^1 = 2 1 x 2^0 = 1 binary point 1 x 2^-1 = 0.5 1 x 2^-2 = 0.25 1 x 2^-3 = 0.125 Adding these up we get the decimal value 15.857. However, the sign bit indicated the value was negative, so the value is -15.857. Thus 11000001111111100000000000000000 in IEEE 754-185 represents -15.857 in decimal.


What is the Comparative and superlative form of clearly?

more clearly, very clearly, the most clearly


What similarities and differences do you see between functions and linear equations studied in Chapter 3?

This is clearly a homework question and while we are here to help, we are not here to do your homework. If you have specific questions, please ask.


What is the surperlative of clearly?

The superlative of 'Clearly' is, "Most clear", or "Clearest".


What are the comparative and superlative of clearly?

More clearly and most clearly.


What is superlative and comparative of clearly?

more clearly, most clearly