So let's say I have a function:
$f(x) = {e^x}$
How do I use Chebyshev polynomials up to order 4, to find the corresponding coefficients? how do I make an approximation equation using these 4 coefficients?
I am sorry if this question is basic part, I just don't know how Chebyshev works and how to use it.
I have done taylor/maclaurin expansion before but i cant find any simple material to follow for chebyshev to get an answer.
Hint
To make it simple, remember that Chebyshev polynomials are just ... polynomials $$T_0=1 \qquad T_1=x \qquad T_2=-1+2x^2 \qquad T_3=-3x+4x^3 \qquad T_4=1-8x^2+8x^4$$ So, write $$e^x=\sum_{i=0}^4 a_i Ti$$ Replace the lhs by the usual Taylor expansion and identify the $a_i$.