Comment #8 on issue 4133 by gre...@gmail.com: Suggestion: implement classical orthogonal polynomials
http://code.google.com/p/sympy/issues/detail?id=4133

I would be happy to contribute in any way I can, although my Python development acumen is pretty weak compared to anyone else here.

I did not mean to suggest that chebyshevt(2,x)**2 should automatically become chebyshevt(4,x)/2+chebyshevt(0,x)/2, but rather that it would be a nice feature to be able to make such a conversion.

The distinction between chebyshevt(n,x) and chebyshevt_poly(n,x) is lost on me:

from sympy.abc import x
from sympy import chebyshevt

a = chebyshevt(4,x)
b = chebyshevt_poly(4,x)

# All of these yield the same output
print(a)
print(b)
print(a.rewrite('polynomial'))
print(a.rewrite('chebyshevt'))
print(b.rewrite('polynomial'))
print(b.rewrite('chebyshevt'))








--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sympy-issues+unsubscr...@googlegroups.com.
To post to this group, send email to sympy-issues@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy-issues.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to