Processing math: 0%

logfactorial

logfactorial returns the logarithm of the factorial

Syntax

Description

Factorials grow very quickly and results exceed the limits of computer floating point arithmetic already for 200! It is therefore more convenient to work with the logarithms of factorials. would do the work but it is too slow to iterate the various log computations. There are alternatives to this naive approach. The first is to express the factorial in terms of the gamma function: n! = \Gamma(n+1). The second is to use Stirling's approximation: log \Gamma(n) \approx (n – 1/2) \log(n) – n + (1/2) log(2 \pi) + 1/(12 n) – 1/(360 n^3) + 1/(1260 n^5) – \ldots which uses Bernoulli's numbers.

example

logfn =logfactorial(n) logfactorial with default method: result is OK.

example

logfn =logfactorial(n, method) A test to check the relative accuracy between the methods.

Examples

expand all

  • logfactorial with default method: result is OK.
  • lf250   = logfactorial(250)
    % logfactorial forced with the naive log(factorial(n)): result is inf.
    lf250m1 = logfactorial(250,1)

  • A test to check the relative accuracy between the methods.
  • The naive one is clearly Ok only for n<170.

    i=0;
    for n=10:1000
    i=i+1;
    o1(i) = logfactorial(n,1);
    o2(i) = logfactorial(n,2);
    o3(i) = logfactorial(n,3);
    o4(i) = logfactorial(n,4);
    end
    o1(o1==inf) = -1;
    subplot(3,1,1)
    plot(o1-o4,'+')
    title('m1 - m4 -- log(factorial(n)) accurate till n~170');
    subplot(3,1,2)
    plot(o2-o4,'o')
    title('m2 - m4');
    subplot(3,1,3)
    plot(o3-o4,'*')
    title('m3 - m4');

    Input Arguments

    expand all

    n — nonnegative (integer) value. Scalar.

    It doesn't have to be necessarily an integer.

    Data Types: single|double

    Optional Arguments

    method — calculation method. Integer.

    Example: 'method',3

    Data Types: single | double

    Output Arguments

    expand all

    logfn —the logarithm value of n!. Scalar

    Data Types - single|double

    References

    Li, Y.C. (2006), A note on an identity of the gamma function and Stirling formula, "Real Analysis Exchange", Vol. 32 (1), pp.267–271.

    Andy Huang (2024). Log Factorial of Large Positive Numbers (https://www.mathworks.com/matlabcentral/fileexchange 33687-log-factorial-of-large-positive-numbers), MATLAB Central File Exchange. Retrieved April 3, 2024.

    See Also

    This page has been automatically generated by our routine publishFS


    The developers of the toolbox The forward search group Terms of Use Acknowledgments