x in ]-inf ; + inf[ or x in ]-1 ; +1[ ??
Hi Integral,
Integral said:
It is not clear to me that if you move outside of the region [-1,1] that you are still dealing with a Chebyshev polynomial. The definition: T_k(Cos \Theta ) = Cos k \Theta results in properties used to prove bounds on the resulting errors. If you do not have the cosine then all bets are off on the errors of the resulting function.
Yes, this is a good question ! My mathematical dictionary also defines Cebyshev polynomials by means of x=Cos \Theta . So, can we still talk of Chebyshev polynomials when x is any real ?
My goal is to understand the relationships between the Chebyshev polynomials and the Lucas Sequences: V_n = P V_{n-1} - Q V_{n-2} . I'm reading the book of Mr H. C. Williams : "Edouard Lucas and primality testing". Page 77, Mr Williams introduces the Chebyshev polynomials (C_n and S_n, not the T_n ! ) as a tool for building properties of the Lucas Sequences (U_n and V_n). He does not say what are the values of x ...
(It appears that Chebyshev polynomials and Lucas Sequence share several properties. As an example: V_{kn} = V_n V_{(k-1)n} - Q^n V_{(k-2)n} produces relationships very close (with k=2,3,...) to the ones of Chebyshev polynomials:V_{2n}=V_n^2-2Q^n ...)
The interesting part is that C_2(x) = x^2-2 appears in the Lucas Lehmer test and that C_3(x) = x^3-3x enables to find other valid values of S_0 than 4 . (Example, C_3(4)=52\equiv -10\pmod{M_5} . And, with L_0=-10, L_3=0 proving M_5 is prime.).
Reminder: The Lucas Lehmer Test (LLT) for Mersenne numbers is:
L_0=4 , L_i = L_{i-1}^2 - 2=C_2(L_{i-1}) ; M_q=2^q-1 is prime iff L_{q-2} \equiv 0\pmod{M_q} .
My questions are: 1) why C_3 produces numbers A (like 4) such that 2+A is a quadratic non residue used as L_0 ? 2) What are the properties of C_n polynomials about Lucas Sequences when n is a prime ?
Tony
I think what I call here as C_n is what I called as S_n in the previous posts ... C_n is the name used by Mr Williams.
C_0(x) = 2 ,<br />
C_1(x) = x ,<br />
C_i(x) = x C_{i-1}(x) - C_{i-2}(x) .