Math::GrahamFunction - Calculate the Graham's Function of a Natural Number.


NAME

Math::GrahamFunction - Calculate the Graham's Function of a Natural Number.

Back to Top


VERSION

Version 0.01

Back to Top


SYNOPSIS

    use Math::GrahamFunction;
    my $calc = Math::GrahamFunction->new({ 'n' => 500 });
    my $results = $calc->solve();
    print "The Graham Function of 500 is ", 
        $results->{'factors'}->[-1],
        "\n";

Back to Top


DESCRIPTION

The Graham Function of a natural number n, which we will denote by G(n), is the minimal number for which there's an increasing series of integers that starts at n and ends at G(n) whose product is a perfect square.

This module calculates the Graham Function of a natural number, along with the entire associated series.

BACKGROUND

On 11 December 2002, Mark Jason Dominus gave a Perl Quiz-of-the-week challenge to write a Perl program to calculate the Graham Function. I came up with a solution for it, whose complexity was polynomial (as opposed to brute force solutions, which are exponential complexity.). This module is derived from my original code, after it was heavily refactored.

More information about the algorithm and the original code can be found here:

http://www.shlomifish.org/lecture/Perl/Graham-Function/

Back to Top


FUNCTIONS

my $calc = Math::GrahamFunction->new({'n' => $n});

Initializes a new object for solving the Graham's Function of the number $n. Call solve() next.

my $results = $calc->solve();

Calculates the Graham's Function series for the number (could be time consuming), and returns a hash ref of results. The only field of interest there is 'factors', which points to an array reference of the series. The series is increasing so $results-{factors}->[0]> is $n and $results-{factors}->[-1]} is the Graham's Function.

$self->_get_num_facts($number)

Get the Square factors of the number $number.

Back to Top


AUTHOR

Shlomi Fish, <shlomif at cpan.org>

Back to Top


KNOWN BUGS

The module may yield different sequences with its "factor in between" optimization than without it. The last number (= the Graham function) is the same, but the numbers in between are different. A future release will provide a flag to disable that optimization.

Back to Top


BUGS

Please report any bugs or feature requests to bug-math-grahamfunction at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

Back to Top


SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Math::GrahamFunction

You can also look for information at:

Back to Top


SOURCE AVAILABILITY

The latest source for this module is available from its subversion repository:

http://svn.berlios.de/svnroot/repos/web-cpan/Math-GrahamFunction/trunk

Back to Top


ACKNOWLEDGEMENTS

Mark Jason Dominus ( http://perl.plover.com/ ) for the original Graham Function Quiz-of-the-Week.

imacat (http://www.imacat.idv.tw/) and David Golden for helping me debug a CPAN smoking failure with installing this module on imacat's computer.

Back to Top


COPYRIGHT & LICENSE

Copyright 2007 Shlomi Fish, all rights reserved.

This program is released under the following license: MIT X11.

Note: the module meta-data says this module is released under the BSD license. However, MIT X11 is the more accurate license, and "bsd" is the closest option for the CPAN meta-data.

Back to Top

 Math::GrahamFunction - Calculate the Graham's Function of a Natural Number.