Metadata-Version: 2.4
Name: rmextensions
Version: 0.0.4
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
# Constants
PI: Constant set to 3.14159265

# Misc Functions
fact(): Method for getting factorials<br>
mean(x: list): Method for getting mean of list of numbers

# 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>
linequ_get_y(z: string, x): Will return Y value of given equation and x value<br>
linequ_get_b(z: str, y, x): Will return b value of given equation with y and x
## Examples
linequ_get_a("2x+3", 11) will return 4.0<br>
linequ_get_a("2x-1", 9) will return 5.0<br>
