https://github.com/graylikeblackandwhite/adhoccas
A basic library for Calculus with derivatives, Riemann sums, partial derivatives, line integrals, and more.
https://github.com/graylikeblackandwhite/adhoccas
analysis calculus integration math numerical
Last synced: 12 months ago
JSON representation
A basic library for Calculus with derivatives, Riemann sums, partial derivatives, line integrals, and more.
- Host: GitHub
- URL: https://github.com/graylikeblackandwhite/adhoccas
- Owner: graylikeblackandwhite
- Created: 2024-09-07T03:37:56.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T16:38:35.000Z (almost 2 years ago)
- Last Synced: 2025-07-15T11:48:09.544Z (12 months ago)
- Topics: analysis, calculus, integration, math, numerical
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# adhocCAS
A basic library for Calculus with derivatives, Riemann sums, partial derivatives, line integrals, and more.
## Demo
```python
# Suppose we wanted to find the partial derivative of z = x^2 + y^2 at (2,2), with respect to y.
partialDerivative(lambda x: x[0]**2 + x[1]**2,[2,2],2)
```