Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: differentiation of function using other functions in its member #61

Open
vanilla-extracts opened this issue Dec 1, 2024 · 0 comments · May be fixed by #62
Open

bug: differentiation of function using other functions in its member #61

vanilla-extracts opened this issue Dec 1, 2024 · 0 comments · May be fixed by #62
Assignees
Labels
bug Something isn't working documentation Improvements or additions to documentation priority-high

Comments

@vanilla-extracts
Copy link
Owner

Expected behaviour

> v(x) = x*x + 1
[...]
> diff(v)
var: 2*x
> h(x) = v(x) + x*x*x
[...]
> diff(h)
op: 3*x²+2*x

Behaviour

> v(x) = x*x + 1
[...]
> diff(v)
var: 2*x
> h(x) = v(x) + x*x*x
[...]
> diff(h)
op: 3*x²+1
@vanilla-extracts vanilla-extracts added bug Something isn't working documentation Improvements or additions to documentation labels Dec 1, 2024
@vanilla-extracts vanilla-extracts self-assigned this Dec 1, 2024
@vanilla-extracts vanilla-extracts moved this to In Progress in Calc 🚀 Dec 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working documentation Improvements or additions to documentation priority-high
Projects
Status: In Progress
Development

Successfully merging a pull request may close this issue.

1 participant