caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "David McClain" <dmcclain1@mindspring.com>
To: <caml-list@inria.fr>
Subject: [Caml-list] Complex Arithmetic
Date: Wed, 28 Mar 2001 00:21:17 -0700	[thread overview]
Message-ID: <002701c0b757$aefbcff0$210148bf@dylan> (raw)

... now that my memory has been jogged...

I believe Kahan actually stated "The language of pairs is insufficient in
the complex domain." (Cryptic enough for you?)

His demonstration was called "Borda's Mouthpiece" and was a simple conformal
mapping problem from linear rays in the right half complex plain to the
streamlines associated with a fluid flow at hypersonic speeds in a tube.

Specifically, the problem in other languges is the following:

Borda's Mouthpiece requires taking the square root of the square of values
along the negative imaginary axis. When you square (0 - 1i) you get (-1).
...but actually you get (-1 + 0-). Most languages simply accept the square
as (-1) = (-1 + 0+).

Taking the subsequent square root when you have made this incorrect
assumption gives the value sqrt(-1) -> (0+1i). And so the stream line mapped
from the negative imaginary axis ends up cutting across all the other stream
lines when this condition is encountered. An obvious error!

The correct answer is obtained by noting that (0 - 1i)^2 -> (-1 + 0-) and
sqrt(-1 + 0-) -> (0 -1i) again. Only by properly considering the nature of
floating point zero (i.e., which of the two you really have) can you perform
this computation correctly.

Whew! That was a bloody difficult two weeks to go from the cryptography of
Kahan to a correctly working implementation... And BTW, you DON'T want to
use polar representation -- that eats away seriously at your arithmetic
precision, dropping from 15 digits to something like 6-8 digits in double
precision math. You have to stay in the rectangular representation to
preserve arithmetic precision -- and that requires a full understanding of
the nature of 0+ and 0-.

- DM


-------------------
To unsubscribe, mail caml-list-request@inria.fr.  Archives: http://caml.inria.fr


             reply	other threads:[~2001-03-28  7:21 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-03-28  7:21 David McClain [this message]
2001-03-28  7:47 ` Bruce Hoult
2001-03-28  8:16   ` David McClain
2001-03-28  7:37 David McClain
2001-03-28 16:14 David McClain

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='002701c0b757$aefbcff0$210148bf@dylan' \
    --to=dmcclain1@mindspring.com \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).