A mathy Python package with utilities like LCM, triangle numbers, etc.
Project description
Pythagix
Pythagix is a lightweight and dependency-free Python library designed for number theory operations. It provides a clean, efficient interface to common mathematical utilities such as prime number checks, greatest common divisor computation, triangular numbers, and more.
Installation
Install Pythagix using pip:
pip install pythagix
Features
-
is_prime(number: int) -> boolDetermine whether a number is a prime number. -
filter_primes(numbers: List[int]) -> List[int]Return all prime numbers from a list of integers. -
nth_prime(position: int) -> intRetrieve the n-th prime number (1-based indexing). -
gcd(values: List[int]) -> intCompute the greatest common divisor (GCD) of a list of integers. -
is_perfect_square(number: int) -> boolCheck whether a number is a perfect square. -
count_factors(number: int) -> List[int]Return a sorted list of all positive factors of a number. -
triangle_number(index: int) -> intCompute the n-th triangular number.
Example Usage
from pythagix import is_prime, nth_prime, gcd, triangle_number
print(is_prime(13)) # Output: True
print(nth_prime(10)) # Output: 29
print(gcd([12, 18, 24])) # Output: 6
print(triangle_number(7)) # Output: 28
Use Cases
Pythagix is ideal for:
-
Educational platforms and math-related tools
-
Prototyping algorithms and number-theoretic computations
-
Teaching foundational concepts in discrete mathematics and number theory
-
Lightweight CLI utilities and academic scripting
License
Pythagix is released under the MIT License, making it free to use, modify, and distribute.
Contributing
Contributions are welcome! If you'd like to add features, report bugs, or improve documentation, please open an issue or submit a pull request on the GitHub repository.
If you want me to tailor this even more (e.g. add badges, GitHub Actions, versioning, or PyPI metadata snippets), I can assist with that too.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pythagix-0.1.8.tar.gz.
File metadata
- Download URL: pythagix-0.1.8.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1888e5762fd0efcbfaf0c4c7572184214150f8e157b643930f015983726e117e
|
|
| MD5 |
999c3ef110a3956545c311594ff11705
|
|
| BLAKE2b-256 |
c58fdbd6737403fbd4e77daac696e2459f5079b6b5a8cb2a14876cd9e76520b8
|
File details
Details for the file pythagix-0.1.8-py3-none-any.whl.
File metadata
- Download URL: pythagix-0.1.8-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51aca57dd313136b67294f40789183ac2a3b526c5200c0e6f6f73c64aa18991f
|
|
| MD5 |
cfef4931f13c69899dafb3defb3bb650
|
|
| BLAKE2b-256 |
32f3116af4726d713d75d82c0043f502ddc737d64b5c3e9db6ba99f80fda5ca1
|