pyAlgebra-v
performs integral and differentiable operations on string expressions using sympy
Motivation
The motivation behind it came from the purpose and realisation to help others understand it in a much better. In other words, to push others and become a better version of ourselves.
Tech/framework used
Ex. - latest version of sympy(or 1.8), matplotlib(or 3.1.3)
Built with
Code Example
#For example :-
import matplotlib.pyplot as plt
from sympy import sympify
from sympy import Poly,Symbol,summation,pprint,solve,Integral,Derivative
from sympy import solve_poly_inequality,solve_rational_inequalities,solve_univariate_inequality,sin
expr='-x**2 + 4 < 0'
pprint(inequality_solver(expr))
expr='((x-1)/(x+2)) > 0'
pprint(inequality_solver(expr))
expr='sin(x)-0.6>0'
pprint(inequality_solver(expr))
r1,r2=roots(1,1,1)
print(r1,r2)
x_values=list(range(-1000,1000))
expr='x*x*x*x+5*x*x*x+10*x*x+12*x+1'
plot_general_equation(expr,x_values)
x=Symbol('x')
y=Symbol('y')
z=Symbol('z')
expr1=2*x+2*y+2*z
expr2=4*x+4*y+4*z
expr3=3*x+3*y+3*z
expressions=(expr1,expr2,expr3)
print(solve_n_equations(expressions))
expr = a*n+d
upto = 10000
s=seriesSummation(expr,upto)
pprint(s)
St='5*u*t**2+2*t+8'
Stt=find_derivative(St,'t')
pprint(Stt)
Sttt=find_derivative(Stt,'t')
pprint(Sttt)
Release files for pyAlgebra 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyAlgebra-0.1.tar.gz | 3.5 kB | Details |
Release files / pyAlgebra-0.1.tar.gz
| Download URL | pyAlgebra-0.1.tar.gz |
|---|---|
| Size | 3.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
642cfb0f8093d80f9b705776c8918bdd909a2c11b6b1045219b10c217fdce35a
|
|
BLAKE2b-256 checksum How to use checksums |
e2edaf397d3138b81177ca1390440a689121ee44f5cd30dc004ccdf573b8c5f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.6.2
|