| > | Exercice 7 |
| > | F:=u->int(cos(x)/x,x=u..2*u); |
| > | Limit(F(u),u=0,right)=limit(F(u),u=0,right); |
| > |
| > |
| > |
| > | Exercice 8 |
| > | F:=x->int(ln(t),t=x..x^2); |
| > | Diff('F'(x),x)=D(F)(x); |
| > | 'F(x)'=eval(F(x)); |
| > | plot(rhs(%),x=0..infinity); |
![[Plot]](images/ex7-8-9_6.gif)
| > |
| > |
| > | Exercice 9 |
| > | F:=x->int(sqrt(1-t^8),t=x^2/6..3*x^3); |
| > | Diff('F'(x),x)=D(F)(x); |
| > | Limit(F(x),x=0)=limit(F(x),x=0); |
| > | plot(F); |
Warning, unable to evaluate the function to numeric values in the region; see the plotting command's help page to ensure the calling sequence is correct
Error, empty plot
| > |