An open API service indexing awesome lists of open source software.

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.

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.