First time here? Check out the FAQ!

Ask Your Question
2

gen_lengendre_p bug

asked 5 years ago

bso gravatar image

Hi, wonder if someone here familiar with associated Legendre function can verify:

sage: gen_legendre_P(2, 2, x)
3*x^2 - 3

I think it should be

3 - 3*x^2

In Sage 8.9

Thanks

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
3

answered 5 years ago

eric_g gravatar image

updated 3 years ago

You are unfortunately facing a known issue, which is not solved yet:

https://trac.sagemath.org/ticket/25034

Associated Legendre functions and spherical harmonics in Sage require someone to work of them. Would you volunteer to do it?

EDIT (17 May 2021): the bug has been fixed in SageMath 9.3 (released a week ago):

sage:  gen_legendre_P(2, 2, x)                                                                      
-3*x^2 + 3
Preview: (hide)
link
0

answered 5 years ago

bso gravatar image

Thanks, Eric_G. I am interested to help out. Is there a page with Sage volunteering process? I will sign up. I have computer science degrees but new to math (but seriously interested to learn).

Correct definition:

def legendre_function(l, m, f):
    return ((-1)^m * (1 - x^2)^(m/2) * diff(legendre_P(l, x), x, m)).subs(x = f)

sage: legendre_function(2, 2, x)
-3*x^2 + 3

sage: legendre_function(2, 2, cos(x))
-3*cos(x)^2 + 3
Preview: (hide)
link

Comments

Thanks for signing up! The standard starting point for Sage development is the Developer's guide. You may find some summary here (it's focused on manifolds, but most of the content is valid for any project).

eric_g gravatar imageeric_g ( 5 years ago )

Like. Thanks.

bso gravatar imagebso ( 5 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 5 years ago

Seen: 415 times

Last updated: May 17 '21