1001Ferramentas
🥧 Dev

τ (Tau) N decimals Generator

Show τ = 2π (6.2831853...) up to 1000 decimal places. Includes copy-to-clipboard.

Tau to a thousand decimal places

Tau is two pi, roughly 6.283185. The proposal to use this constant instead of pi comes from a simple observation: a full turn of the circle is tau radians, not two pi. A quarter turn is tau over 4, half a turn is tau over 2 — angles become direct fractions of a turn, without the factor of 2 turning up in nearly every trigonometric formula.

Choose how many places you want and the page delivers up to a thousand digits. They were computed with arbitrary-precision arithmetic using Machin's formula, which expresses pi through two fast-converging arctangents, and checked against published values before going in — a constant hardcoded in source is exactly the kind of thing nobody reviews and that stays wrong in silence.

The case for tau is pedagogical rather than mathematical: both constants describe the same thing, and no formula becomes right or wrong because of the choice. What changes is how many factors of 2 end up scattered through the text. Where pi stays more natural is the area of a circle, which is pi times r squared — with tau it becomes tau over 2 times r squared, which is slightly worse to write.

Frequently asked questions

Is tau actually used?
In teaching and popular writing, fairly often; in scientific publication, almost never. Several programming languages already ship the constant built in, which lowers the cost of using it in code. In practice, anyone writing for others to read tends to follow the audience's convention.
Where do these digits come from?
From arbitrary-precision computation using Machin's formula — pi over 4 equals four arctangents of one fifth minus one arctangent of one two hundred and thirty-ninth — with guard digits discarded at the end so rounding does not contaminate the last displayed place.
Why stop at a thousand places?
Because it is far more than any practical application needs and still fits comfortably on a page. Engineering calculations rarely go past fifteen places; NASA uses fifteen for interplanetary navigation. Beyond that, the interest is recreational or for testing an algorithm.

Related Tools