We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
According to this sage-devel post
y(x) = function('y')(x); y eq = x^2*diff(y,x,2)-x*diff(y,x,1)+y==0; eq h = desolve(eq, dvar=y, ivar=x,ics=[1,1,e,2*e]); h
gives an error but Maxima can nonetheless solve it.
CC: @nbruin
Component: calculus
Issue created by migration from https://trac.sagemath.org/ticket/21789
The text was updated successfully, but these errors were encountered:
strangely enough, it works if you use e^1, as in:
e^1
sage: y(x) = function('y')(x); y x |--> y(x) sage: eq = x^2*diff(y,x,2)-x*diff(y,x,1)+y==0; eq x |--> x^2*diff(y(x), x, x) - x*diff(y(x), x) + y(x) == 0 sage: h = desolve(eq, dvar=y, ivar=x,ics=[1,1,e^1,2*e^1]); h x*(log(x) + 1)
Sorry, something went wrong.
May be related to #24102 (see this comment...)
No branches or pull requests
According to this sage-devel post
gives an error but Maxima can nonetheless solve it.
CC: @nbruin
Component: calculus
Issue created by migration from https://trac.sagemath.org/ticket/21789
The text was updated successfully, but these errors were encountered: