Questions tagged [pi]

The number $\pi$ is the ratio of a circle's circumference to its diameter. Understanding its various properties and computing its numerical value drove the study of much mathematics throughout history. Questions regarding this special number and its properties fit in here.

$\pi$ is the ratio of a circle's circumference to its diameter. Its definition is modern analysis is (by Karl Weierstrass) $$ \pi = \int_{-1}^1 \frac{dx}{\sqrt{1-x^2}}. $$ An alternative definition, popularised by Landau is: Define $\frac{\pi}{2}$ as the smallest positive root of the cosine function.

It can also be given by the Gregory-Leibniz series (exhibits sublinear convergence) $$ \pi = 4 \sum_{j=0}^\infty \frac{(-1)^j}{2j+1}. $$ $\pi$ has the approximate numerical value $3.14159265358979323846\dots$, can be approximated by fractions, for example, $\frac{22}{7}, \frac{333}{106}, \frac{355}{113},\dots$, and is both irrational and transcendental.

It is part of Euler's famous identity:

$$e^{i\pi}+1=0.$$

1624 questions
2
votes
3 answers

Number system and $\pi$

Ok, we all use the decimal system with numbers from 0 to 9. And we have $\pi$ with an infinite number of decimals. We also have a boolean system or hexadecimal. Is there any decimal system where $\pi$ has an ending number of numbers?
2
votes
2 answers

Where do the numbers come from, to calculate pi?

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…
2
votes
1 answer

Is $\pi$ approximately algebraic?

As we know, $\pi$ is transcendental, meaning that there is no rational numbers $a_0,\ldots,a_n\in\mathbb{Q}$ such that $$a_0+a_1\pi+\cdots+a_n\pi^n=0.$$ But I was wondering if we can get this as a limiting process: Is there a sequence of polynomials…
Will
  • 23
2
votes
2 answers

what are some of the oldest and most accurate approximations of pi?

I read that there is a tradition in the Jewish literature of an approximation of pi given in the prophets was very accurate ($\frac{3\times111}{106} \approx 3.14150\ldots$ - difference of about $.0026\%$) I'm curious what is the next ancient (>1000…
Yehosef
  • 159
1
vote
4 answers

Is 1/113 a rational number?

Before two days , one of my physics si told me if one wants to use value of pi more accurately 355/113 can be considered as value of pi to get more accurate result. I want to know is 1/113 a rational number. My view I have tried dividing till 22…
user136567
1
vote
0 answers

How do I calculate the digit number n of pi?

I want to create a pi calculator with no limit to precision, but I cannot find a formula for finding only the digit number n of pi. Here is what I mean: Let's say I want to find the 4th digit of pi. Since $\pi\approx3.14159...$ then the digit number…
Rchat42
  • 33
1
vote
1 answer

A square with the side length of pi.

I want to cut out a square with the side length pi. What is the most accurate method to do so? P.S. you cannot use the already known fact that pi is approximately 3.14159…
1
vote
4 answers

How did they figure out that the $\pi$ will result in an non repeating infinite decimal value?

Why can't π be expressed as a fraction? Going by the above question, if it is not possible to accurately determine the circumference or diameter of a circle, how did they figure out that the ratio will result in an infinite non repeating value?
bobbyalex
  • 111
1
vote
1 answer

William Shanks incomplete algorithm for computing $\pi$ with different initial angle

These days, I'd watched some youtube movies regarding manual computation of $\pi$ and find out about 239, 1/5 and their inverse tangent functions ($arctan$/$arctg$/$\tan^{-1}$) and so on. Today, I've done a search on these things, being curious…
radui
  • 113
1
vote
1 answer

Digits of pi using rudimentary math and tools

I'm a novice here, with little better than an average high school student's knowledge in mathematics. That said, I'm an eager learner and don't shy away from difficult tasks. I could use a nod in the right direction. For some reason, this week I…
1
vote
0 answers

Does pi have every possible string of combinations?

I was wondering if Pi has every single possible string of combinations because of its infinite possibilities.
1
vote
3 answers

Is this proof that $\pi$ does not contain all possible combination correct?

I came across this meme today: The counterproof is very trivial, but I see no one disproves it. Some even say that the meme might be true. Well, $\pi$ cannot contain itself. Well, everything means $\pi$ might contain $\pi$ somewhere in it. Say it…
Kim Dong
  • 715
1
vote
2 answers

Specific strings that cannot be found in PI

Considering that the decimals of PI aren't like prime numbers (random), they are pseudo-random (can be calculated through a formula or an infinite series, yet it is calculable). Keeping this in mind, I've been seeing a lot lately, these pictures…
1
vote
0 answers

How to perform binary splitting on the Chudnovsky formula?

I implemented a binary splitting algorithm for calculating the digits of pi by following the algorithm on page 2 here: binsplit.pdf On page 4, the formula for calculating $\frac{1}{\pi}$ is given: $$ \frac{1}{\pi} = \frac{12}{C^{3/2}}…
1
vote
2 answers

Calculating of PI from sin() function in Java

Ok... So I'm trying to finish my school project with processing and I'm wondering if there is a way to calculate PI from sin() like this. But I don't know how to use sin() function with degrees in Java or how to write my own. The problem with…
1 2 3
8 9