https://github.com/danuaemx/math-algorithm
https://github.com/danuaemx/math-algorithm
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danuaemx/math-algorithm
- Owner: danuaemx
- License: gpl-3.0
- Created: 2024-06-27T20:05:53.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-11-16T04:02:23.000Z (6 months ago)
- Last Synced: 2025-01-15T23:30:11.119Z (4 months ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.