I. Compare the folloiwng functions:
| > | f:=x->3^(-x); |
| > | g:=x->3^(-0.5*x); |
| > | plot({f,g},-3..4,-10..10,thickness=2); |
![[Plot]](images/exp_3.gif)
| > | evalf(f(1)); |
| > | evalf(g(1)); |
Do you know which one is which?
II. Compare the following functions:
| > | f1:=x->exp(-x); |
| > | g1:=x->10*exp(-x); |
| > | plot({f1,g1},-3..5,0..20); |
![[Plot]](images/exp_8.gif)
| > |
Do you know which one is which?
Exercises: page 63, from number 3 to number 13.