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)
- Host: GitHub
- URL: https://github.com/adeelh/symbolic-differentiator
- Owner: AdeelH
- Created: 2015-11-30T07:10:51.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-07-05T09:53:47.000Z (over 8 years ago)
- Last Synced: 2025-01-30T14:34:47.547Z (8 months ago)
- Topics: math, python, symbolic-math
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.