Chebyshev polynomials - Wikipedia
https://en.wikipedia.org/wiki/Chebyshev_polynomialsThe Chebyshev polynomials are two sequences of polynomials related to the cosine and sine functions, notated as and . They can be defined several ways that have the same end result; in this article the polynomials are defined by starting with trigonometric functions: The Chebyshev polynomials of the first kind are given by Similarly, define the Chebyshev polynomials of the second kind as
Convert polynomial to Chebyshev - Mathematica Stack Exchange
mathematica.stackexchange.com › questions › 59089I want to convert a polynomial in "standard form" to Chebyshev form. Here's one way to do it: (* My polynomial *) pa = Sum [a [i]*t^i, {i, 0, 5}] (* "standard form" coefficients of Chebyshev polynomial of same degree *) pb = CoefficientList [Sum [b [i]*ChebyshevT [i, t], {i, 0, 5}], t] (* helper variable *) bs = Table [b [i], {i, 0, 5}] Solve [Table [a [i - 1] == pb [ [i]], {i, 1, 6}], bs]