Connect via MCP →

Enter Calculation

Formula

Advertisement

Results

U3(x) at x = -1
-4
Chebyshev polynomial of the second kind
Order n 3
Initial x -1
Increment 0.02
Sample points 101
x U3(x)
-1 -4
-0.98 -3.609536
-0.96 -3.237888
-0.94 -2.884672
-0.92 -2.549504
-0.9 -2.232
-0.88 -1.931776
-0.86 -1.648448
-0.84 -1.381632
-0.82 -1.130944
-0.8 -0.896
-0.78 -0.676416
-0.76 -0.471808
-0.74 -0.281792
-0.72 -0.105984
-0.7 0.056
-0.68 0.204544
-0.66 0.340032
-0.64 0.462848
-0.62 0.573376
-0.6 0.672
-0.58 0.759104
-0.56 0.835072
-0.54 0.900288
-0.52 0.955136
-0.5 1
-0.48 1.035264
-0.46 1.061312
-0.44 1.078528
-0.42 1.087296
-0.4 1.088
-0.38 1.081024
-0.36 1.066752
-0.34 1.045568
-0.32 1.017856
-0.3 0.984
-0.28 0.944384
-0.26 0.899392
-0.24 0.849408
-0.22 0.794816
-0.2 0.736
-0.18 0.673344
-0.16 0.607232
-0.14 0.538048
-0.12 0.466176
-0.1 0.392
-0.08 0.315904
-0.06 0.238272
-0.04 0.159488
-0.02 0.079936
0 -0
0.02 -0.079936
0.04 -0.159488
0.06 -0.238272
0.08 -0.315904
0.1 -0.392
0.12 -0.466176
0.14 -0.538048
0.16 -0.607232
0.18 -0.673344
0.2 -0.736
0.22 -0.794816
0.24 -0.849408
0.26 -0.899392
0.28 -0.944384
0.3 -0.984
0.32 -1.017856
0.34 -1.045568
0.36 -1.066752
0.38 -1.081024
0.4 -1.088
0.42 -1.087296
0.44 -1.078528
0.46 -1.061312
0.48 -1.035264
0.5 -1
0.52 -0.955136
0.54 -0.900288
0.56 -0.835072
0.58 -0.759104
0.6 -0.672
0.62 -0.573376
0.64 -0.462848
0.66 -0.340032
0.68 -0.204544
0.7 -0.056
0.72 0.105984
0.74 0.281792
0.76 0.471808
0.78 0.676416
0.8 0.896
0.82 1.130944
0.84 1.381632
0.86 1.648448
0.88 1.931776
0.9 2.232
0.92 2.549504
0.94 2.884672
0.96 3.237888
0.98 3.609536
1 4

What is the Chebyshev polynomial of the second kind?

The Chebyshev polynomials of the second kind, written \(U_n(x)\), are a family of orthogonal polynomials that appear throughout approximation theory, numerical analysis, and physics. This is a pure-mathematics tool: it works identically everywhere and is not tied to any country or jurisdiction. This calculator builds a table of values of \(U_n(x)\) over a chosen range of x and lets you visualize the resulting curve.

Curves of the first few Chebyshev polynomials of the second kind on the interval from minus one to one
Graphs of U_0 through U_4 on the interval [-1, 1].

How to use it

Enter the order n (a non-negative integer), the initial value of x, the increment (spacing between successive x values), and the repeat count (how many sample points to generate). The table is produced for \(x = \text{startX},\ \text{startX} + \text{stepX},\ \text{startX} + 2 \times \text{stepX}\), and so on. With the defaults (n = 3, start = -1, step = 0.02, 101 points), x runs from -1 to 1.00.

The formula explained

Rather than the trigonometric form $$U_n(\cos\theta) = \frac{\sin((n+1)\theta)}{\sin\theta}$$ (which divides by zero at \(x = \pm 1\)), this tool uses the stable three-term recurrence: \(U_0(x) = 1\), \(U_1(x) = 2x\), and $$U_k(x) = 2x \cdot U_{k-1}(x) - U_{k-2}(x).$$ The recurrence is exact for every real x and lets values grow naturally for \(|x| > 1\). The polynomials satisfy the ODE $$(1 - x^2)y'' - 3xy' + n(n+2)y = 0.$$

Diagram of the three-term recurrence relation linking successive Chebyshev U polynomials
The stable three-term recurrence builds U_k from the two previous terms.

Worked example

For n = 3, the closed form is \(U_3(x) = 8x^3 - 4x\). At \(x = 0.5\): \(U_0 = 1\), \(U_1 = 1\), \(U_2 = 2(0.5)(1) - 1 = 0\), \(U_3 = 2(0.5)(0) - 1 = -1\). The closed form gives $$8(0.125) - 4(0.5) = 1 - 2 = -1.$$ At the endpoints, \(U_n(1) = n+1\) so \(U_3(1) = 4\), and \(U_n(-1) = (-1)^n(n+1)\) so \(U_3(-1) = -4\).

FAQ

What are the first few polynomials? \(U_0 = 1\), \(U_1 = 2x\), \(U_2 = 4x^2 - 1\), \(U_3 = 8x^3 - 4x\), \(U_4 = 16x^4 - 12x^2 + 1\).

Can x be outside [-1, 1]? Yes. The polynomial is defined for all real x; the recurrence handles \(|x| > 1\) cleanly, though values grow rapidly.

What if n is not a whole number? The order is floored to a non-negative integer; negative values are clamped to 0.

Last updated: