Where do the numbers come from, to calculate pi?

326 Views Asked by At

As we all know, $\pi$ is the ratio of a circle's circumference to its diameter. When you divide the circumference by the diameter, the result is $\pi$. But, here's my question:

When you enter the numbers into a PC, main frame, or whatever, what numbers do you use? It seems to me if you do not get them PRECISELY correct, the calculated value of $\pi$ will be incorrect?

Please explain.

2

There are 2 best solutions below

0
On

Speaking as a computer scientist, it is more standard to use an infinite series to approximate pi. That way, you can control the precision to an arbitrary number of digits (or bits). For applications that do not require high mathematical precision (the majority of computer science), the underlying programming language (e.g. Java) already comes with packages that contain these pre-defined constants. Note that the same holds for any irrational number. To guarantee arbitrary precision in a computational application, you have to use some kind of 'generator', the most common of which is an infinite series, but also computing square roots etc.

0
On

I think the thought behind the question might be the notion that if $\pi$ is the ratio of circumference to diameter, then why can't I measure the circumference of a circular object and its diameter, throw these numbers into a computer, and get $\pi$? If we could somehow precisely measure these two attributes, then perhaps we could get precisely $\pi$.

The first issue with this line of thinking is the idea that a perfect circle actually exists somewhere in nature. I don't believe this is the case -- the best one could ever do is construct/find some polygon with a very very large number of sides. Perhaps even an arbitrary number of sides.

The second issue with this line of thinking is the idea that it is possible to precisely measure something. Even with a perfect circle at the ready, the best one could ever do is measure its circumference and diameter to some arbitrary level of precision. One could only ever say that its circumference or diameter is at least this, and at most that.