I am trying to calculate LaguerreL(n, a x)
in Maple but a problem is occurring.
It works for decimals and nor fractions, I think.
Meaning, it works for
LaguerreL(m,n,0.5)
and not forLaguerreL(m,n, 1/2)
.Should not it work for both?
Does not calculate value for negative
a
.LaguerreL(3.0, 2.0, 2.0) = -1.33333333333
But,
LaguerreL(3.0, -2.0, 2.0) = Float(undefined) + Float (undefined)
However, Laguerre with negative
a
has a value. It is not undefined.One needs to specify decimals?
LaguerreL(3,2,2) = LaguerreL(3,2,2)
But,
LaguerreL(3.0,2.0,2.0) = -1.33333333333
Is
LaguerreL()
in Maple any different thanLaguerreL[]
in Mathematica?
Question 1:
Is this the same as Question 3?
Question 2:
Here are a few ways to work around that:
Question 3:
Yes, that's how it works. See also Question 4.
Question 4:
Compare definitions on their respective online documentation.
https://reference.wolfram.com/language/ref/LaguerreL.html
https://www.maplesoft.com/support/help/maple/view.aspx?path=LaguerreL
On that Mathematica page you will see that the following conversion to elementary functions (in Maple) is done automatically.