Recreating chebychev coefficient from an article

  • Context: Graduate 
  • Thread starter Thread starter dan_smith
  • Start date Start date
  • Tags Tags
    article Coefficient
Click For Summary

Discussion Overview

The discussion revolves around recreating Chebyshev coefficients based on an initial value provided in an article. Participants are attempting to understand discrepancies between their calculations and those presented in the article, focusing on iterative algorithms and polynomial evaluations.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant seeks assistance in recreating Chebyshev coefficients starting from an initial value of X_0=1.853, expressing confusion about their iterative algorithm.
  • Another participant questions the correctness of their calculations, noting that their results differ from those in the article.
  • It is pointed out that the numbers calculated are not coefficients of polynomials but rather values of polynomial functions at the given x value.
  • A participant mentions uncertainty regarding the source of the article's numbers and their subsequent application, referencing a specific page for context.
  • There is a discussion about discrepancies in calculations using WolframAlpha, particularly regarding the use of degrees versus radians.
  • One participant shares their attempts to use MATLAB commands for Chebyshev polynomials of the first and second kind, asking for clarification on which coefficients to use.

Areas of Agreement / Disagreement

Participants express uncertainty and confusion regarding the calculations and the article's content. There is no consensus on the correctness of the numbers or the methods used.

Contextual Notes

Participants note potential issues with the definitions and assumptions used in their calculations, as well as the context provided in the article, which may not be fully understood.

dan_smith
Messages
5
Reaction score
0
Hello i need to recreate these chebychev coefficents given the initial value of X_0=1.853 as shown in the photo bellow.
i have tried to follow the iterrative algorithm shown in the photo bellow.
please help me understand where did i go wrong?

thanks

25fpq2x.jpg


2qwexbc.jpg
 
Mathematics news on Phys.org
dan_smith said:
please help me understand where did i go wrong?
What exactly went wrong?
 
mfb said:
What exactly went wrong?
if x_0=1.853 then
T_0=1
T_1=1.853
T_2=2*1.853*1.853-1
its not the same numbers that they get in the article

Thanks
 
What you calculate are not coefficients of polynomials, these numbers are the values of the polynomial functions at this value of x.

I don't understand where their numbers come from, but I also don't understand where they are used afterwards. I found the context here, page 19 ("206").

I also don't understand the value of x they got - WolframAlpha disagrees (using 180 instead of pi doesn't work either, but I guess the 180 comes from working in degrees).
 
Hello, Yes this is the article from which the example came from.
you are correct regarding the wolfram alfa calculation.assuming that their numbers are wrong
i tried to use matlabs commands for
g=chebyshevT([1 ,2, 3 ,4] , x) %first kind
[ x, 2*x^2 - 1, 4*x^3 - 3*x, 8*x^4 - 8*x^2 + 1]

g=chebyshevU([1 ,2, 3 ,4],x) %second kind
[ 2*x, 4*x^2 - 1, 8*x^3 - 4*x, 16*x^4 - 12*x^2 + 1]

what coefficients should i take for this step?

Thanks
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
1K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 16 ·
Replies
16
Views
4K
  • · Replies 15 ·
Replies
15
Views
3K
  • · Replies 17 ·
Replies
17
Views
3K
  • · Replies 3 ·
Replies
3
Views
9K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
3
Views
2K
  • · Replies 19 ·
Replies
19
Views
2K