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

Maxima can solve this bvp why not sage? #21789

Open
kcrisman opened this issue Nov 1, 2016 · 2 comments
Open

Maxima can solve this bvp why not sage? #21789

kcrisman opened this issue Nov 1, 2016 · 2 comments

Comments

@kcrisman
Copy link
Member

kcrisman commented Nov 1, 2016

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

@kcrisman kcrisman added this to the sage-7.5 milestone Nov 1, 2016
@mforets
Copy link
Mannequin

mforets mannequin commented May 3, 2017

comment:1

strangely enough, it works if you use e^1, as in:

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)

@EmmanuelCharpentier
Copy link
Mannequin

EmmanuelCharpentier mannequin commented Jun 9, 2020

comment:2

May be related to #24102 (see this comment...)

@mkoeppe mkoeppe removed this from the sage-7.5 milestone Dec 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants