https://github.com/devonfulcher/calculusapproximations
A few algorithms to calculate calculus concepts using SymPy. Euler's method, approximating alternating series, Simpson's rule.
https://github.com/devonfulcher/calculusapproximations
Last synced: 6 days ago
JSON representation
A few algorithms to calculate calculus concepts using SymPy. Euler's method, approximating alternating series, Simpson's rule.
- Host: GitHub
- URL: https://github.com/devonfulcher/calculusapproximations
- Owner: DevonFulcher
- License: unlicense
- Created: 2018-12-03T06:26:54.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2021-01-27T21:10:14.000Z (over 5 years ago)
- Last Synced: 2025-02-28T19:00:26.903Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CalculusApproximations
A few algorithms to calculate calculus concepts using SymPy. Euler's method, approximating alternating series, Simpson's rule
pip install sympy
## Euler's Method
Approximates the y value of a differential equation at a x value given a y value at a separate x.
## Approximate Alternating Series
Approximates the value of a convergent alternating series to an arbitrary precision.
## Simpson's Rule
Approximates the value of a definite integral.