A Recreating chebychev coefficient from an article

AI Thread Summary
The discussion focuses on recreating Chebyshev coefficients based on an initial value of X_0=1.853, but the calculations do not match those in the referenced article. Participants clarify that the numbers being calculated are not coefficients of polynomials but rather values of polynomial functions at the given x. There is confusion regarding the source of the article's numbers and their application, with some discrepancies noted when using WolframAlpha for calculations. MATLAB commands for Chebyshev polynomials of the first and second kind are mentioned, but there is uncertainty about which coefficients to use in the process. Overall, the thread seeks clarity on the correct approach to obtaining the desired coefficients.
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
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Back
Top