| > |
| > | Exercice 10 |
Question a)
| > | f:=x->sin(x)-x:f(x)=series(f(x),x=0,3); |
| > | Limit(f(x)/x^2,x=0)=limit(f(x)/x^2,x=0); |
| > | Question b) |
| > | f:=x->sin(x)-x:f(x)=series(f(x),x=0,4); |
| > | g:=x->x*ln(1-x^2):g(x)=series(g(x),x=0,4); |
| > | Limit(f(x)/g(x),x=0)=limit(f(x)/g(x),x=0); |
| > | Question c) |
| > | f:=x->ln(sin(x)/x):f(x)=series(f(x),x=0,5); |
| > | g:=x->1/f(x):g(x)=series(g(x),x=0,5); |
| > | Limit(1/x-g(x),x=0)=limit(1/x-g(x),x=0); |
| > | Question d) |
| > | f:=x->sqrt(sin(x)/x)-1:f(x)=series(f(x),x=0,4); |
| > | g:=x->sin(x)/x-1:g(sqrt(x))=subs(x=sqrt(x),series(g(x),x=0,3)); |
| > | Limit(f(x)/g(sqrt(x)),x=0)=limit(f(x)/g(x),x=0); |
| > |
| > | Exercice 11 |
| > |
| > | f:=x->arctan(x)-sin(x):f(x)=series(f(x),x=0,4); |
| > | g:=x->tan(x)-arcsin(x):g(x)=series(g(x),x=0,4); |
| > | Limit(f(x)/g(x),x=0)=limit(f(x)/g(x),x=0); |
| > |
| > | Exercice 12 |
| > | Question a) |
| > | f:=x->exp(x)-(cos(x)+x):f(x)=series(f(x),x=0,3); |
| > | Limit(f(x)/x^2,x=0)=limit(f(x)/x^2,x=0); |
| > | Question b) |
| > | f:=x->x^3*arctan(x)-x^4:f(x)=series(f(x),x=0,7); |
| > | g:=x->cos(x^2)-1:g(x)=series(g(x),x=0,5); |
| > | Limit(f(x)/g(x),x=0)=limit(f(x)/g(x),x=0); |
| > |