Skip to main content

MathSimplicity is a Python package providing essential tools for basic mathematical computations, including prime factorization, range prime generation, fraction-to-decimal conversion, and GCD/LCM calculation.

Project description

MathSimplicity

Description

MathSimplicity is a Python package that provides various utilities for mathematical computations, including:

  • Prime factorization of numbers.
  • Generation of prime numbers within a specified range.
  • Conversion of fractions to decimals and vice versa.
  • Calculation of Greatest Common Divisor (GCD) and Least Common Multiple (LCM).

Why mathsimplicity?

The main motivation behind mathsimplicity is to provide an accessible tool for those who are taking their first steps in programming and mathematics. By offering intuitive and easy-to-use tools, my goal is to support students and enthusiasts on their way to understanding and applying basic mathematical concepts. This project aims to simplify learning and facilitate the process of solving everyday mathematical problems.

Key Features

  • Ease of Use: Functions designed to be simple and straightforward.
  • Support for New Programmers: Clear documentation and practical examples to facilitate learning.
  • Essential Mathematical Functions: Fundamental tools for solving common mathematical problems.

Installation

You can install mathsimplicity via PyPI using pip. Simply run the following command:

pip install mathsimplicity

Usage

Here's a quick overview of how to use the functionalities provided by the package.

Prime Factorization

from mathsimplicity import primes

result = primes(30, 56)
print(result)

OUTPUT

The number 30 can be divided by the following prime numbers: 2 x 3 x 5
The number 56 can be divided by the following prime numbers: 2^3 x 7

Prime Numbers in Range

from mathsimplicity import primes_in_range

result = primes_in_range(10, 50)
print(result)

OUTPUT

[11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47]

Fraction to Decimal Conversion

from mathsimplicity import fraction_to_decimal

result = fraction_to_decimal("1/2", "3/4", "5 ÷ 10")
print(result)

OUTPUT

The result of '1/2' is 0.5
The result of '3/4' is 0.75
The result of '5 ÷ 10' is 0.5

Decimal to Fraction Conversion

from mathsimplicity import decimal_to_fraction

result = decimal_to_fraction("0.25", "0.5", "0.75")
print(result)

OUTPUT

The decimal '0.25' is approximately '1/4' as a fraction.
The decimal '0.5' is approximately '1/2' as a fraction.
The decimal '0.75' is approximately '3/4' as a fraction.

Greatest Common Divisor (GCD)

from mathsimplicity import greatest_common_divisor

result = greatest_common_divisor(54, 24, 18)
print(result)

OUTPUT

  • The greatest common divisor of the provided numbers is: 6

Least Common Multiple (LCM)

from your_package import least_common_multiple

result = least_common_multiple(4, 5, 6)
print(result)

OUTPUT

  • The least common multiple of the provided numbers is: 60

Contributing

Contributions are not welcome!

LICENSE

This project is licensed under the MIT License. See the LICENSE file for more details.

Contact

If you have any questions or feedback, feel free to contact me:

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mathsimplicity-1.0.0.tar.gz (5.9 kB view details)

Uploaded Source

Built Distributions

mathsimplicity-1.0.0-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

MathSimplicity-1.0.0-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file mathsimplicity-1.0.0.tar.gz.

File metadata

  • Download URL: mathsimplicity-1.0.0.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for mathsimplicity-1.0.0.tar.gz
Algorithm Hash digest
SHA256 f3784c7bca5176cda43fcbe298377a73db3244af34f67ac1f3853d11c1cd810a
MD5 8a2e32df1ceb1e9a17da92cf8e8c3ba8
BLAKE2b-256 abf6adc5f92b9b35209dbf58331edb4ecf9d850a64084435ac3c27908fd80981

See more details on using hashes here.

File details

Details for the file mathsimplicity-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mathsimplicity-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 da1ef84c5603629ac62b16574477d791ae66fee4693742228e35bc5da8039425
MD5 4d2d42b646664c9bf8957b958ff31b7a
BLAKE2b-256 60e3b6f7fad4f9ed7aaa70a233629bdd5a696de74c72e5b3923304e4068b6176

See more details on using hashes here.

File details

Details for the file MathSimplicity-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for MathSimplicity-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 afb4d2c66614409d32f5614f04b87ee681ebbee6aa444a5d4a8fc8e21a1051a1
MD5 6a541864215b91309851e75b922106c6
BLAKE2b-256 6b20eabadc203bb781a79f4df7f2c7cc22e39d70fe56b1a7a6a2ce002ad25c41

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page