Polynomial sequences generated by two‑term recurrences appear throughout the HSC Extension 1 and 2 courses, and the Chebyshev family is one of the richest examples. By working through this problem you will see how a simple definition blossoms into a trigonometric identity, pinpoints the exact roots of a family of polynomials, and lets you analyse a numeric sequence using characteristic equations. The techniques here—induction with sum‑to‑product identities, bounding roots with hyperbolic functions, and solving a constant‑coefficient recurrence—are all examinable and deeply connected.
Problem Statement
Let a sequence of functions (Tn(x)) be defined for n≥0 by the recurrence relation
Tn+1(x)=2xTn(x)−Tn−1(x),
with initial terms T0(x)=1 and T1(x)=x.
Calculate the explicit polynomial expressions for T2(x) and T3(x).
Using the identity
cos(A+B)+cos(A−B)=2cosAcosB,
prove by mathematical induction that for all n≥0,
Tn(cosθ)=cos(nθ).
Let x0 be a root of Tn(x). Show that ∣x0∣≤1. Hence, determine the exact values of the n distinct roots of Tn(x) in terms of n.
Consider the sequence of values vn=Tn(1.5). Show that (vn) satisfies a linear recurrence relation with constant coefficients. Find a closed-form expression for vn and determine the value of the limit
n→∞limvnvn+1.
Hints
For (i): Substitute the previous two polynomials into the recurrence formula.
For (ii): Use the sum-to-product identity with A=kθ and B=θ.
For (iii): Solve cos(nθ)=0 for θ, then use x=cosθ.
For (iv): Solve the characteristic equation for the recurrence vn+1=3vn−vn−1.
Solutions
(i) Directly from the recurrence, we feed T0 and T1 in to build the next polynomial:
T2(x)=2x2−1,T3(x)=2x(2x2−1)−x=4x3−3x.
(ii) We prove the identity by induction on n. The base cases n=0,1 give 1=cos0 and T1(cosθ)=cosθ, so the statement is true for n=0,1. Assume it holds for k and k−1:
using cos((k+1)θ)+cos((k−1)θ)=2cos(kθ)cosθ. Hence Tn(cosθ)=cos(nθ) for all n≥0.
(iii) First we show that any real root must lie in [−1,1]. If x>1, we write x=coshu; then Tn(x)=cosh(nu)>0, so x cannot be a root. If x<−1, write x=−coshu; then Tn(x)=(−1)ncosh(nu)=0, again no root. Thus every real root satisfies ∣x0∣≤1.
With this bound we can safely set x=cosθ. The roots satisfy
Tn(cosθ)=0⟺cos(nθ)=0⟺nθ=2(2k−1)π.
So the n distinct roots are
xk=cos(2n(2k−1)π),k=1,2,…,n.
(iv) To analyse the numeric sequence we substitute x=1.5 into the definition of the recurrence, giving a constant‑coefficient recurrence for vn=Tn(1.5):
vn+1=3vn−vn−1,v0=1,v1=23.
We solve this with the characteristic equation λ2−3λ+1=0, which has roots
α=23+5,β=23−5.
Hence vn=Aαn+Bβn. Using v0=1 and v1=23, we find A=B=21, so
vn=21αn+21βn.
Since ∣β∣<α, the dominant term is αn, and therefore
n→∞limvnvn+1=α=23+5.
Takeaways
The recurrence produces the Chebyshev polynomials one term at a time.
The identity Tn(cosθ)=cos(nθ) turns polynomial roots into trigonometric roots.
Evaluating a polynomial recurrence at a fixed value gives an ordinary numerical recurrence.