Skip to content
黎想的博客黎想的博客
主页
友链
关于
博客主题open in new window

    野兽公式

    author icon黎想calendar icon2022年3月27日tag icon
    • 恶搞
    timer icon小于 1 分钟

    刚在知乎open in new window发现一条野兽公式,特此记录。

    e[(e+π)(e+e+π)]e+e(πe−e)(e+eπ−πe)≈114514.1919810e[(e+\pi)(e+e+\pi)]^e+\frac{e}{(\pi^e-e)(e+e^\pi-\pi^e)}\approx114514.1919810 e[(e+π)(e+e+π)]e+(πe−e)(e+eπ−πe)e​≈114514.1919810

    感兴趣的可以自行在浏览器控制台中输入如下代码验证:

    const e = Math.exp(1);
    const pi = Math.PI;
    const term1 = e * ((e + pi) * (e + e + pi)) ** e; // 114514.15147933988
    const term2 = e / ((pi ** e - e) * (e + Math.exp(pi) - pi ** e)); // 0.04050163499818259
    console.log((term1 + term2).toFixed(7)); // 114514.1919810
    
    1
    2
    3
    4
    5
    Copyleft © 黎想 Under CC BY-NC-ND 4.0