An open API service indexing awesome lists of open source software.

https://github.com/danuaemx/math-algorithm


https://github.com/danuaemx/math-algorithm

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

MATH-ALGORITHM.

This repository contains a collection of mathematical algorithms implemented in python.
These algorithms are about complex problems and offer insights into heir practical applications.

Contents.

1. Partitions of n.
2. Iterated functions.

PARTITIONS OF N.

The partition of a positive integer n is a way of writing n as a sum of positive integers.
The order of addends does not matter, so 4 can be written as 4, 3+1, 2+2, 2+1+1, and 1+1+1+1.