You are on page 1of 4

Figueroa Ramírez Jessica Nohemí

Cálculo Tarea #16


1.- f(x)=x3+7x2-5x
f’(x)= 3x2+14x-5=(3 x-1) (x+5)
x=1/3 x=-5

Código
>> syms x
>> f=(3*x.^2)+14*x-5
f =3*x^2 + 14*x - 5
>> pretty(f)
3 x2 + 14 x - 5
>> ezplot(f)
>> grid on

2.- f(x)=2x3-2x2-16x+1
f’(x)=6x2-4x-16=2 (3 x+4) (x-2)
x=2 x=-4/3

Código

>> syms x
>> f=(6*x.^2)+4*x-16
f =6*x^2 + 4*x - 16
>> plot(f,'ko')
>> ezplot(f)
>> grid on
Figueroa Ramírez Jessica Nohemí
Cálculo Tarea #16

3.- f(x)=x6/5-12x1/5
6 12
f’(x)= x1/5- x-4/5
5 5
2 5 6
(3*( √𝑥)- 5 )=0
5 √𝑥 4
2 5 6 5
( (3 ∗ ( √𝑥 ) − 5 ) = 0) ∗ √𝑥 4
5 √𝑥 4
5
5 5 6 √𝑥 4
3* √ 𝑥 √𝑥 4 – 5 =0
√𝑥 4
5
3 √𝑥 5 -6=0
3x-6=0
X=6/3=2

Código
>> syms x
>> f=(6/5)*x.^(1/5)-(12/5)*x.^(-4/5)
f =(6*x^(1/5))/5 - 12/(5*x^(4/5))
>> ezplot(f)
>> grid on

4.- G(x)=(x-2)3*(x+1)2
G’(x)=3*(x-2)2 * (x+1)2 + (x-2)3 *2(x+1)
3*(x-2)2 * (x+1)2 + (x-2)3 *2(x+1)=0
3*(x-2)2 * (x+1)2 = (-1)*(x-2)3 *2(x+1)
3∗(x+1)2 (−1)∗(x−2)3
=
𝑥+1 (𝑥−2)2
3(x+1)=(-1)(x-2)
3x+3=-x+2
3x+x=-1
1
x=− 4

Código
>> syms x
>> G=(3*(x-2).^2)*((x+1).^2)+((x-2).^3)*(2*(x+1))
>> ezplot(G)

5.- f(x)=Sen(x)Cos(2x)=[1-2Sen2(x)](Senx)= Sen(x)-2Sen3(x)


Figueroa Ramírez Jessica Nohemí
Cálculo Tarea #16

f’(x)= Cosx-(6Sen2x)(Cosx)
(Cosx)(1-6Sen2x)=0
Cosx =0

x=
2
1-6Sen2x=0
Sen2x=1/6
1
X=Sen-1(√ 6 )
Código
>> syms x
>> f=cos(x)-(6*((sin(x)).^2))*(cos(x))
>> ezplot(f)
>> grid on

6.- f(x)=Sen(2x)+Cos(2x)=2(Sen(x)*Cos(x))+(1-2Sen2(x))
f’(x)=2(Cos(2x)-2Cos(x))
Cos(2x)=2Cos(x)
x=2*(0.97277)

Código
>> syms x
>> f=2*(cos(2*x)-(2*cos(x)))
f =2*cos(2*x) - 4*cos(x)
>> ezplot(f)
>> grid on

7.- f(θ)=Sec(3θ)
f’(θ)=3Sec(3 θ)*Tan(3 θ)
Figueroa Ramírez Jessica Nohemí
Cálculo Tarea #16

You might also like