Reverse factorial

前端 未结 17 1408
南笙
南笙 2020-12-05 03:12

Well, we all know that if N is given it\'s easy to calculate N!. But what about the inverse?

N! is given and you are about to find N - Is that possible ? I\'m curio

相关标签:
17条回答
  • 2020-12-05 03:29

    Most numbers are not in the range of outputs of the factorial function. If that is what you want to test, it's easy to get an approximation using Stirling's formula or the number of digits of the target number, as others have mentioned, then perform a binary search to determine factorials above and below the given number.

    What is more interesting is constructing the inverse of the Gamma function, which extends the factorial function to positive real numbers (and to most complex numbers, too). It turns out construction of an inverse is a difficult problem. However, it was solved explicitly for most positive real numbers in 2012 in the following paper: http://www.ams.org/journals/proc/2012-140-04/S0002-9939-2011-11023-2/S0002-9939-2011-11023-2.pdf . The explicit formula is given in Corollary 6 at the end of the paper.

    Note that it involves an integral on an infinite domain, but with a careful analysis I believe a reasonable implementation could be constructed. Whether that is better than a simple successive approximation scheme in practice, I don't know.

    0 讨论(0)
  • 2020-12-05 03:32
    inverse_factorial( X )
    {
       X_LOCAL = X;
       ANSWER = 1;
       while(1){
          if(X_LOCAL / ANSWER == 1)
            return ANSWER;
           X_LOCAL = X_LOCAL / ANSWER;
           ANSWER = ANSWER + 1;
        }
    }
    
    0 讨论(0)
  • 2020-12-05 03:36

    This function is based on successive approximations! I created it and implemented it in Advanced Trigonometry Calculator 1.7.0

    double arcfact(double f){
     double result=0,precision=1000;
     int i=0;
     if(f>0){
       while(precision>1E-309){
         while(f>fact(result+precision)&&i<10){
     result=result+precision;
     i++;
       }
       precision=precision/10;
       i=0;
      }
      }
      else{
    result=0;
       }
       return result;
     }
    
    0 讨论(0)
  • 2020-12-05 03:37

    Well, if you know that M is really the factorial of some integer, then you can use

    n! = Gamma(n+1) = sqrt(2*PI) * exp(-n) * n^(n+1/2) + O(n^(-1/2))
    

    You can solve this (or, really, solve ln(n!) = ln Gamma(n+1)) and find the nearest integer. It is still nonlinear, but you can get an approximate solution by iteration easily (in fact, I expect the n^(n+1/2) factor is enough).

    0 讨论(0)
  • 2020-12-05 03:39

    Multiple ways. Use lookup tables, use binary search, use a linear search...

    Lookup tables is an obvious one:

    for (i = 0; i < MAX; ++i)
        Lookup[i!] = i; // you can calculate i! incrementally in O(1)
    

    You could implement this using hash tables for example, or if you use C++/C#/Java, they have their own hash table-like containers.

    This is useful if you have to do this a lot of times and each time it has to be fast, but you can afford to spend some time building this table.

    Binary search: assume the number is m = (1 + N!) / 2. Is m! larger than N!? If yes, reduce the search between 1 and m!, otherwise reduce it between m! + 1 and N!. Recursively apply this logic.

    Of course, these numbers might be very big and you might end up doing a lot of unwanted operations. A better idea is to search between 1 and sqrt(N!) using binary search, or try to find even better approximations, though this might not be easy. Consider studying the gamma function.

    Linear search: Probably the best in this case. Calculate 1*2*3*...*k until the product is equal to N! and output k.

    0 讨论(0)
  • 2020-12-05 03:41

    In C from my app Advanced Trigonometry Calculator v1.6.8

        double arcfact(double f) {
            double i=1,result=f;
            while((result/(i+1))>=1) {
                result=result/i;
                i++;
            }
            return result;
        }
    

    What you think about that? Works correctly for factorials integers.

    0 讨论(0)
提交回复
热议问题