Metadata-Version: 2.4
Name: advancedmath-natcar2000
Version: 1.0.0
Summary: A mathematical library for Python.
Author: Natanael Rodrigues
License: MIT
Keywords: math,mathematics,library,python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# mathlib

A mathematical library for Python focused on providing simple, independent, and reusable mathematical tools.

## Authors

- Natanael Rodrigues

## Usage/Examples

```python
from probability import probability

result = probability(3, 10)

print(result)

Output: 0.3


from combinatorics import factorial

result = factorial(5)

print(result)

Output: 120
```

## 🔗 Links

https://github.com/natcar2000

## Acknowledgements

 - Mathematic
 - Programation
 - Project structure

