Questions tagged [chebyshev-polynomials]

In mathematics the Chebyshev polynomials, named after Pafnuty Chebyshev, are two sequences of orthogonal polynomials which are related to de Moivre's formula. These polynomials are also known for their elegant Trigonometric properties, and can also be defined recursively. They are very helpful in Trigonometry, Complex Analysis, and other branches of Algebra.

The Chebyshev polynomials, named after Pafnuty Chebyshev, are a sequence of orthogonal polynomials which are related to de Moivre's formula.

There are two kinds of these polynomials. The first kind $T_n$ is defined by the recurrence $$\begin{align} T_0(x)&=1\\ T_1(x)&=x\\ T_{n+1}(x)&=2xT_n(x)-T_{n-1}(x) \end{align}$$ The second kind $U_n$ is defined by the same recurrence, but with $U_1(x)=2x$.

These polynomials also satisfy the trigonometric identities $$T_n(\cos\theta)=\cos(n\theta)\qquad U_n(\cos\theta)\sin\theta=\sin(n+1)\theta.$$

369 questions
1
vote
1 answer

Chenge weight function in shifted orthogonality

We know that in Chebyshev orthogonal polynomial the weight function is $$\frac{1}{\sqrt{1-x^2}}$$ in interval $[-1,1]$. Do in shifted chebyshev orthogonal as example for interval $[0,1]$ the weight function changed?
1
vote
1 answer

relation between first kind Chebyshev poly and second kind Chebyshev poly

How do you prove following relation between Chebyshev poly of first kind and Chebyshev poly of second kind: $$dT_n(x)/dx=nU_{n-1}(x)$$
jfcjohn
  • 337
1
vote
0 answers

dividing a chebyshev polynomial by another polynomial

If I took a Chebyshev polynomial, is it possible to divide it completely by something that isn't a chebyshev polynomial? edit - the question was answered but people were not sure about what I was asking. I would delete it but I think it's a good…
0
votes
0 answers

Chebyshev Coefficients

I want to show that aj in this photo, but I am unsure of how to get there I know it is a minimum so it takes differentiation to get there but I am unsure how, any help would be appreciated, thanks enter image description…
0
votes
0 answers

Is it possible to solve tridiagonal Toeplitz matrix whose center element is different, using Chebyshev polynomial of the second kind?

I have a tridiagonal Toeplitz matrix whose first diagonal below main diagonal, and the first diagonal above the main diagonal have elements equal to $-1$ and the main diagonal elements are same constants except at the middle element. Can I solve…
0
votes
0 answers

What are $\cos(\omega_k), -\sin(\omega_k)$ in Chebyshev filter design in matrix form?

What are $\cos(\omega_k), -\sin(\omega_k)$ in Chebyshev filter design in matrix form? The Chebyshev filter design problem "via SOCP" (https://en.wikipedia.org/wiki/Second-order_cone_programming) is formulated: $$\min_x \| A^{(k)}h -b^{(k)}\|,…
mavavilj
  • 7,270
0
votes
0 answers

Chebyshev's polynomial approximation

Please help me with this question. I want to run a system that will give me answer using MATLAB but I am struggling. Write a function Cheb(n,x) for evaluating $T_n(x)$. Use the recursive formula satisfied by the Chebyshev's polynomials. Test the…
Tomas
  • 3
0
votes
2 answers

Generalisation of Chebyshev minimax property

$\DeclareMathOperator*{\argmin}{arg\,min}$ The Chebyshev polynomials $$T_n(x) := \cosh(n \, \cosh^{-1}(x))$$ (with potentially complex $\cosh^{-1}(x)$) are well known to satisfy $$ \frac{T_n\left(\tfrac{x - m}{b-a}\right)}{\left|T_n\left(\tfrac{-…
gTcV
  • 671
0
votes
1 answer

Differentiation using Chebyshev polynomials

I have task - find derivative (degree N) using Chebyshev polynomials. My issue is I can't find related theory. Give me a hint (book name, article, example), please. I'm very appreciative.
-1
votes
1 answer

On the parity of the first kind Chebyshev polynomial over the positive integers

Let us consider the first kind Chebyshev polynomial over the positive integers $T_{n+1}(x) = 2xT_n(x) - T_{n-1}(x)$ with $n>2$ is an odd number. We have $$T_0(x) = 1$$ $$T_1(x) = x $$ $$T_3(x) = 4x^3 − 3x $$ My question is: (1) How one can determine…
Safwane
  • 3,840
-2
votes
3 answers

Chebychev polynomial of $ (-x)$

I know that the Chebyshev polynomials are defined as $T_n(x)=\cos(nx)$ How can I proove the following result: $T_n(-x)= (-1)^n T_n(x)$
Anne
  • 35
1
2