Metadata-Version: 2.4
Name: raum_math_extensions
Version: 0.0.2.1
Summary: Random extensions
Author-email: Anar <willowzed@proton.me>
License-Expression: MIT
Project-URL: Homepage, https://github.com/anarkitty2/math-extenstions
Project-URL: Issues, https://github.com/anarkitty2/math-extenstions/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Math Extensions

PI: Constant set to 3.14159265

fact(): Method for getting factorials<br>

# Circles and Spheres
circumference(r): Method for getting the circumference of a circle<br>

c_area(r): Method for getting area of a circle<br>
s_area(r): Method for getting area of a sphere<br>

# Linear Equations
linequ_get_a(z: string, y): Will return x value required to get y in a linear equation as a float<br>
## Examples
linequ_get_a("2x+3", 11) will return 4.0
