>
restart:
>
h:= x->
1 +
3*cos(x);
![h := proc (x) options operator, arrow; 1+3*cos(x) e...](xxx.files/C1-0622.gif)
>
D(h);
![proc (x) options operator, arrow; -3*sin(x) end pro...](xxx.files/C1-0623.gif)
>
dh:= x
->-3 *
sin(x);
![dh := proc (x) options operator, arrow; -3*sin(x) e...](xxx.files/C1-0624.gif)
>
h(Pi/6);
![1+3/2*sqrt(3)](xxx.files/C1-0625.gif)
>
evalf(%);
![3.598076212](xxx.files/C1-0626.gif)
>
dh(Pi/6);
![-3/2](xxx.files/C1-0627.gif)
Касательная
проведена
в точке
(
) и
имеет
угловой
коэффициент
.
>
tl:= x
-> 1 +
(3/2)*(sqrt(3))
-
(3/2)*(x
- Pi/6);
![tl := proc (x) options operator, arrow; 1+3/2*sqrt(...](xxx.files/C1-0630.gif)
>
plot({tl(x),h(x)},
x =
0..Pi,
color=[blue,brown]);
![[Maple Plot]](xxx.files/C1-0631.gif)