Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Is the Champernowne constant actually useful

Writer Sophia Terry
$\begingroup$

Has the aforementioned constant ever been used in any major proofs? Can it be expressed in terms of $e$, $\pi$, or both? Does it appear in any sort of geometric sense like $\pi$ does? Or is it just a kind of pretty number somebody thought would be nice to experiment with?

$\endgroup$ 3

2 Answers

$\begingroup$

Or is it just a kind of pretty number somebody thought would be nice to experiment with?

This.


More specifically, it is constructed in such a way that its (decimal) digits are easy to investigate. This allows to establish fairly easily that it is normal in its base. One might go as far saying it is a number constructed so that this works.

$\endgroup$ $\begingroup$

For what it's worth I'm a software engineer and have ended up using Champernowne's constant (expressed in base 2) as a cheap stand-in for a random binary sequence.

For instance, to simulate grass growing on the floor of a dungeon, we can initialize the floor cells with Champernowne and then apply game of life. This has the advantage of being entirely deterministic. In functional programming contexts, you have to be really explicit when you want randomness since it consumes entropy and this counts as a side-effect.

Alternatively you end up having to weave a seed through everything, and when most of the methods don't need it it's a lot of extra bookkeeping. So computationally-simple methods to construct random "looking" binary sequences can prove quite helpful especially in a context where access to entropy is limited. It "looks" quite random but isn't nearly as expensive as a PRNG. Recall that the golden law of computer graphics states:

If it looks right, it is right.

$\endgroup$

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy