Está en la página 1de 8

4.

4 Problem: Obtain the limits from the right and from the left for the function
sin(1/x) as x approaches 0.
Solucin: Como se puede observar la solucin al problema se describe en el la
imagen,observando que la funcin tiene un lmite debido a que los limites
laterales son iguales.

4.8 Problem: Evaluate the limit of the sequence {an} for


Solucin: La solucin se bas en la funcin limit de Matlab la cual nos arrogo
una respuesta de 0 infiriendo que el limite no existe.

4.9Find the limit for the sequence


Solucin: El limite la funcin es 0

4.12 Find out if the function

is continuous at x=1.

Solucin: Como se puede observar en la figura se muestra el algoritmo


utilizado para saber si la funcin es continua sin embargo la respuesta es que
dicha funcin es indeterminada.

4.14 Problem: Obtain the derivative of


Solucin: En este caso solo utilizamos la funcin diff directa ya que la funcin
solo contaba con una variable.

4.16 Problem: Obtain the first partial derivatives of the function


Solucin: Este caso de solucin es relativamente fcil debido a que solo se
aplic la funcin diff de la
derivada parcial.

de la forma

para encontrar la primera

4.19 Problem: Obtain the indefinite integral for the function


Solucin: Se cree que la integral diverge

4.20 Problem Obtain the indefinite integral for the function


Solucin: Como se puede ver en la Figura al tratar de hallar la integral
indefinida, se evalu la funcin de 0 a infinito y obtuvimos que la funcin no
converge.

4.24 Problem: Evaluate the integral


Solucin: Para hallar la solucin a dicho problema se realizaron los comandos
que se muestran a continuacin obteniendo como resultado de la tercera
integral 27/4

4.29 Evaluate the limit of the series

4.34 Find the characteristic polynomial and its roots for the differential
equation:

Solucin: Para hallar la solucin ha este problema se utiliz la funcin dsolve

5.4 In the same figure, plot: sin(x), x2 + 1, x3 3, in the rank -2 to 3.14.


Solucin: en el La figura se muestra los comandos utilizados en Matlab
(linspace, hold on y hold off) para hallar su solucin.

5.10 Plot in polar coordinates the plot for the function sin(x) in the rank from 0
to 8.
Solucion: Para obtener la grafica en cordenadas polares tecleamos lo siguiente
en la ventana de comandos:
x=linspace(0,8);
y=sin(x);
figure
polar(x,y,'--r')

y obtuvimos;

5.15 Plot in a subplot the following functions: x in the rank x = [0,5] and ln(x)
in the interval x = [0.1, 10].
Solucin:

5.20 Obtain a mesh plot for the function f(x, y) = x2 + y2. Choose an
appropriate range for the independent variables. Repeat for the function g(x, y)
= x2 y2.

5.25 Use the instruction contour3 to make a plot for z = sqrt|xy| in the grid [x,
y] = (1, 1).
[X,Y] = meshgrid(-1:0.001:1);
Z = sqrt(abs(X*Y));
[X, Y, Z] = peaks (30);
contour3(X,Y,Z,50)

5.30 Plot in three different figures the functions from Exercise 5.16. Make the
figures to be numbers 19, 51 and 57
x=[0:0.1:5*pi];y=sin(x);
a=[0:0.1:10];b=cosh(a);
f=[0.1:0.01:10];g=f.^2-3*log(f);
figure,plot(x,y),figure,plot(a,b),figure,plot(f,g)

También podría gustarte