Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nahrens007/mathalgorithms
Some simple math algorithms implemented using Python.
https://github.com/nahrens007/mathalgorithms
Last synced: 3 days ago
JSON representation
Some simple math algorithms implemented using Python.
- Host: GitHub
- URL: https://github.com/nahrens007/mathalgorithms
- Owner: nahrens007
- Created: 2017-03-11T17:11:32.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-11T17:14:27.000Z (almost 8 years ago)
- Last Synced: 2024-11-16T17:05:30.268Z (2 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MathAlgorithms
Some simple math algorithms implemented using Python.# use_math.py
Author: Nathan Ahrens, 11/21/2015
As an Ashland University student in Math 223 (Discrete Mathematics),
I learned intermediate algorithms to finding the prime factorizations,
greatest common divisors, and least common multiples and thought it
would be useful to implement these algorithms into a program.
In this program, I make use of my own custom Mathematics module to allow the
user to easily find GCD's, LCM's, prime factorizations, and convert
a binary number (base 2) to a numeric number (base 10).