Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old October 11th, 2008, 12:05 AM
FAQ server
Guest
 
Posts: n/a
Default FAQ Topic - Why does simple decimal arithmetic give strange results? (2008-10-11)

-----------------------------------------------------------------------
FAQ Topic - Why does simple decimal arithmetic give strange
results?
-----------------------------------------------------------------------

For example, ` 5 * 1.015 ` does not give exactly
` 5.075 ` and ` 0.06+0.01 ` does
not give exactly ` 0.07 ` in javascript.

ECMAScript numbers are represented in binary as IEEE-754 (IEC 559)
Doubles, with a resolution of 53 bits, giving an accuracy of
15-16 decimal digits; integers up to about ` 9e15 ` are precise, but
few decimal fractions are. Given this, arithmetic is as exact
as possible, but no more. Operations on integers are exact if
the true result and all intermediates are integers within that
range.

In particular, non-integer results should not normally be
compared for equality; and non-integer computed results
commonly need rounding; see 4.6.

http://msdn2.microsoft.com/en-us/library/7wkd9z69.aspx

http://www.merlyn.demon.co.uk/js-misc0.htm#DW4

Otherwise, use ` Math.round ` on the results of expressions which
should be of integer value.


--
Postings such as this are automatically sent once a day. Their
goal is to answer repeated questions, and to offer the content to
the community for continuous evaluation/improvement. The complete
comp.lang.javascript FAQ is at http://jibbering.com/faq/index.html.
The FAQ workers are a group of volunteers. The sendings of these
daily posts are proficiently hosted by http://www.pair.com.

  #2  
Old October 11th, 2008, 11:55 PM
Dr J R Stockton
Guest
 
Posts: n/a
Default Re: FAQ Topic - Why does simple decimal arithmetic give strange results? (2008-10-11)

In comp.lang.javascript message <48efde78$0$90275$14726298@news.sunsite.
dk>, Fri, 10 Oct 2008 23:00:02, FAQ server <javascript@dotinternet.be>
posted:
Quote:
>ECMAScript numbers are represented in binary as IEEE-754 (IEC 559)
>Doubles, with a resolution of 53 bits, giving an accuracy of
>15-16 decimal digits; integers up to about ` 9e15 ` are precise, but
>few decimal fractions are. Given this, arithmetic is as exact
>as possible, but no more. Operations on integers are exact if
>the true result and all intermediates are integers within that
>range.
The last sentence is correct. However, the semi-literate may not
recognise the difference between the concepts expressed by "if" and
"only if".

One can say that "Operations on Numbers are exact if the true result
and all intermediates can be expressed exactly as binary fractions with
a 53-bit mantissa and an exponent in the range -X to +Y" which is also
(I think) exact and covers more, but not all, cases. One can say that
"Operations on Numbers are exact if the true result and all
intermediates can be expressed exactly as IEEE Doubles", but that won't
mean anything to the intended audience.

Can the wording be briefly improved so that naive readers will realise
that operations on numbers which are multiples of 0.5, 0,25, 0,125,
.... about 1.1102230246251565404236316680908e-16 are safe? Or is "few
decimal fractions" good enough?

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME.
Web <URL:http://www.merlyn.demon.co.uk/- FAQish topics, acronyms, & links.
Proper <= 4-line sig. separator as above, a line exactly "-- " (SonOfRFC1036)
Do not Mail News to me. Before a reply, quote with ">" or "" (SonOfRFC1036)
  #3  
Old October 12th, 2008, 10:45 PM
dhtml
Guest
 
Posts: n/a
Default Re: FAQ Topic - Why does simple decimal arithmetic give strange results?(2008-10-11)

Dr J R Stockton wrote:
Quote:
In comp.lang.javascript message <48efde78$0$90275$14726298@news.sunsite.
dk>, Fri, 10 Oct 2008 23:00:02, FAQ server <javascript@dotinternet.be>
posted:
>
Quote:
>ECMAScript numbers are represented in binary as IEEE-754 (IEC 559)
>Doubles, with a resolution of 53 bits, giving an accuracy of
>15-16 decimal digits; integers up to about ` 9e15 ` are precise, but
>few decimal fractions are. Given this, arithmetic is as exact
>as possible, but no more. Operations on integers are exact if
>the true result and all intermediates are integers within that
>range.
>
The last sentence is correct. However, the semi-literate may not
recognise the difference between the concepts expressed by "if" and
"only if".
>
One can say that "Operations on Numbers are exact if the true result
and all intermediates can be expressed exactly as binary fractions with
a 53-bit mantissa and an exponent in the range -X to +Y" which is also
(I think) exact and covers more, but not all, cases. One can say that
"Operations on Numbers are exact if the true result and all
intermediates can be expressed exactly as IEEE Doubles", but that won't
mean anything to the intended audience.
>
Can the wording be briefly improved so that naive readers will realise
that operations on numbers which are multiples of 0.5, 0,25, 0,125,
... about 1.1102230246251565404236316680908e-16 are safe? Or is "few
decimal fractions" good enough?
>
There could be an example, but then that might warrant more explanation
that cannot be quickly explained.

Garrett

--
comp.lang.javascript FAQ <URL: http://jibbering.com/faq/ >
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles