如何在C ++中获得大数的第n个根?

时间:2010-04-08 05:32:23

标签: c++ math biginteger

是否有一个C ++库可以接受大数字的第n个根(数字超过unsigned long long不能容纳的数字)?

6 个答案:

答案 0 :(得分:10)

您可以使用GMP,一个流行的开源任意精度数学库。它有C++ bindings

答案 1 :(得分:3)

如果您想自己编写代码,请查看第n个根目录上的Wikipedia页面:

http://en.wikipedia.org/wiki/Nth_root

迭代算法非常简单:

数字A的第n个根可以通过第n个根算法计算,这是牛顿方法的一个特例。从初始猜测x(0)开始,然后使用递归关系

进行迭代
x(k+1) = [(n - 1) * x(k) + A / x(k)^(n - 1)] / n

一旦你收敛到所需的准确度就停止。

答案 2 :(得分:2)

我想,这取决于你想要去的大于2 ^ 64的数量。只使用双打对于10 ^ 9中的大约1个部分是好的。我用C编写了一个测试程序:

#include <stdio.h>
#include <math.h>

int main(int argc, char **argv)
{
    unsigned long long x;
    double dx;
    int i;

    //make x the max possible value
    x = ~0ULL;
    dx = (double)x;
    printf("Starting with dx = %f\n", dx);
    //print the 2th to 20th roots
    for (i = 2; i < 21; i++)
    {
        printf("%dth root %.15f\n", i, pow(dx, 1.0/i));
    }
    return 0;
}

产生以下输出:

Starting with dx = 18446744073709551616.000000
2th root 4294967296.000000000000000
3th root 2642245.949629130773246
4th root 65536.000000000000000
5th root 7131.550214521852467
6th root 1625.498677215435691
7th root 565.293831000991759
8th root 256.000000000000000
9th root 138.247646578215154
10th root 84.448506289465257
11th root 56.421840319745364
12th root 40.317473596635935
13th root 30.338480458853493
14th root 23.775908626191171
15th root 19.248400577313866
16th root 16.000000000000000
17th root 13.592188707483222
18th root 11.757875938204789
19th root 10.327513583579238
20th root 9.189586839976281

然后我与每个根的Wolfram Alpha进行比较,得到我上面引用的错误。

根据您的应用程序,这可能已经足够了。

答案 3 :(得分:0)

另请尝试MAPMqd

MAPM是用C语言编写的,但也有一个C ++ API。 qd是用C ++编写的,但也有一个C API。

答案 4 :(得分:0)

这里有一个完美的循环。我每次都会得到确切的答案。

    // n1 = <input>, n2 = <base limit>, nmrk = <number of cycles>
    long double n3 = 0, n2 = 0, n1 = input_number, n4 = 0;
    long double mk = 0, tptm = 0, mnk = 0, dad = 0;
    for (n3 = 0; tptm != n1 || mnk > 65535 ; nmrk++) {
        n4 += 0.19625;
        n2 += 0.15625;
        n3 += 0.015625;
        mk += 0.0073125;
        dad += 0.00390625;
        mnk = pow(n1, 1.0/(n4+n2+mk+n3+dad));
        tptm = pow((mnk), (n4+n2+mk+n3+dad));
    }
    if (tptm - n1 < 1)
    {
        uint64_t y = (tptm);
        return make_tuple(nmrk, (n1 - y), mnk);
    }

我发现这快了几分钟

答案 5 :(得分:-1)

长除法是计算任何正实数的第n个根的最佳方法。它给出了计算的每个数字的最佳精度。没有初始猜测,也不需要迭代近似。