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

https://github.com/adeelh/symbolic-differentiator

Python based symbolic differentiation program (class assignment for Numerical Analysis, Fall 2014)
https://github.com/adeelh/symbolic-differentiator

math python symbolic-math

Last synced: 7 months ago
JSON representation

Python based symbolic differentiation program (class assignment for Numerical Analysis, Fall 2014)

Awesome Lists containing this project

README

          

# symbolic-differentiator
Given f(x), computes df(x)/dx and algebraically simplifies the result as much as possible. (class assignment for Numerical Analysis, Fall 2014)

## Usage
```
$ python differentiation.py
f(x) = sin(2*x)
Differentiating...
f'(x) = 2.0*(cos(2.0*x))
```
Enter the function, f(x), at the prompt and hit enter.