Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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).