A simple extension of the Python fractions
standard library for working with (finite, simple) continued fractions as Python objects.
Install from PyPI:
pip install -U continuedfractions
or the main
branch of this repo:
pip install -U git+https://github.com/sr-murthy/continuedfractions
See the project docs for more details, which includes the API reference.
Continued fractions are beautiful and interesting mathematical objects, with many connections in number theory and also very useful practical applications, including the rational approximation of real numbers.
The continuedfractions
package is designed for users interested in:
- learning about and working with (finite, simple) continued fractions as Python objects, in an intuitive object-oriented way
- exploring their key properties, such as elements/coefficients, convergents, semiconvergents, remainders, and others
- operating on them as rationals and instances of the standard library
fractions.Fraction
class - making approximations of and experimental computations for irrational numbers
- exploring other related objects, such as mediants, and special sequences of rational numbers such as Farey sequences
The project is licensed under the Mozilla Public License 2.0.