The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Math-Fraction-Egyptian

An Egyptian fraction is the sum of distinct unit fractions, for example

    1/4 + 1/28

Each fraction in the expression meets these requirements:

    * the numerator is equal to 1
    * the denominator is a positive integer
    * none of the denominators in the expression are equal

This module implements a number of algorithms for converting common
fractions into "Egyptian" fractions.

INSTALLATION

To install this module, run the following commands:

   perl Makefile.PL
   make
   make test
   make install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

   perldoc Math::Fraction::Egyptian

You can also look for information at:

   Github, where the library is hosted
      http://github.com/trammell/math-fraction-egyptian/

   RT, CPAN's request tracker
      http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Fraction-Egyptian

   AnnoCPAN, Annotated CPAN documentation
      http://annocpan.org/dist/Math-Fraction-Egyptian

   CPAN Ratings
      http://cpanratings.perl.org/d/Math-Fraction-Egyptian

   Search CPAN
      http://search.cpan.org/dist/Math-Fraction-Egyptian/

COPYRIGHT AND LICENCE

Copyright (C) 2008 John Trammell

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.