sagemath / sage

Main repository of SageMath
https://www.sagemath.org
Other
1.33k stars 453 forks source link

Symbolic orthogonal and some other holonomic polynomials #16670

Open rwst opened 10 years ago

rwst commented 10 years ago

At the moment just the Chebyshev polynomials are symbolic. Missing are hermite, laguerre, legendreP, legendreQ, ultraspherical (=gegenbauer), and, while the Stirling and Euler polynomials are not orthogonal, they are holonomic and belong to the standard repertoire, so we're including them here.

Component: symbolics

Keywords: orthogonal, holonomic

Issue created by migration from https://trac.sagemath.org/ticket/16670

rwst commented 10 years ago
comment:2

For the record, using FLINT's arith_chebyshev_t_polynomial for chebyshev_T in ZZ[] is twice as slow as the current Sage implementation.

fredrik-johansson commented 10 years ago
comment:3

Really? For me flint constructs T_10000 in 0.009 seconds while Sage's chebyshev_T takes 1 second.

But evaluating a Chebyshev polynomial is a completely different problem. You want to do that by recurrence relations, not by constructing the polynomial and evaluating it.

rwst commented 10 years ago
comment:4

Ah, that's true. I only tested at T_500.

rwst commented 10 years ago

Branch: u/rws/make_all_orthogonal_polynomials_symbolic

rwst commented 10 years ago

Description changed:

--- 
+++ 
@@ -1 +1,3 @@
 At the moment just the Chebyshev polynomials are symbolic. Missing are `hermite`, `laguerre`, `legendreP`, `legendreQ`, `ultraspherical` (=`gegenbauer`), and, while the Stirling and Euler polynomials are not orthogonal, they are holonomic and belong to the standard repertoire, so we're including them here.
+
+* symbolic Associated Legendre P(n,m,x) / Q(n,m,x) and P(n,x) / Q(n,x) polynomials / functions (#16813)
rwst commented 10 years ago

Changed branch from u/rws/make_all_orthogonal_polynomials_symbolic to none

rwst commented 10 years ago
comment:6

The speed issue is now #16812

I think the scope of the ticket is too broad. Let's make it a meta-ticket.

rwst commented 9 years ago

Description changed:

--- 
+++ 
@@ -1,3 +1,4 @@
 At the moment just the Chebyshev polynomials are symbolic. Missing are `hermite`, `laguerre`, `legendreP`, `legendreQ`, `ultraspherical` (=`gegenbauer`), and, while the Stirling and Euler polynomials are not orthogonal, they are holonomic and belong to the standard repertoire, so we're including them here.

 * symbolic Associated Legendre P(n,m,x) / Q(n,m,x) and P(n,x) / Q(n,x) polynomials / functions (#16813)
+* symbolic Laguerre / associated Laguerre polynomials (#17151)
rwst commented 7 years ago

Description changed:

--- 
+++ 
@@ -2,3 +2,8 @@

 * symbolic Associated Legendre P(n,m,x) / Q(n,m,x) and P(n,x) / Q(n,x) polynomials / functions (#16813)
 * symbolic Laguerre / associated Laguerre polynomials (#17151)
+* symbolic Gegenbauer polynomials (#20475)
+* symbolic Hermite polynomials (#20475)
+* symbolic Jacobi P polynomials (#22326)
+* symbolic Euler polynomials
+* symbolic Stirling polynomials