Você está na página 1de 16

UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

TRABAJO DE ANÁLISIS MATEMÁTICO III

1.- CALCULAR 5 INTEGRALES Y RESOLVERLAS POR SU DEFINICIÓN

 Ejercicio numero 1

∫ (e 2 x senx)dx
0

b−a
Sea f(x) =e 2 x senx continua en el intervalo [0; π], donde ∆Xi = , siendo a=0 y b=π
n
así tenemos:

π −0 π
∆Xi = =
n n

Entonces: Xi = a +i. (∆Xi)

π
Xi = 0+i. ( ), donde i = 0,…, n
n

Luego: f (Xi)= e 2 ¿¿

Formamos la sumatoria:
n n

∑ f ( X i).∆X =∑ ¿¿]
i
i=0 i=0

Llevamos al límite la sumatoria:


n n
lim ∑ f (X i) . ∆ X i=lim ∑ ¿ ¿ ¿
n → ∞ i=0 n →∞ i=0

Haciendo uso del programa Matlab hallamos la integral.

>> syms i n

>> symsum((exp(2*(pi*i/n))*sin(pi*i/n))*pi/n,i,0,n)

1
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

ans =

-(pi*(((exp((pi*(n + 1)*sqrt(-1))/n)*exp((2*pi*(n + 1))/n) - 1)*sqrt(-1))/(2*(exp((pi*sqrt(-


1))/n)*exp((2*pi)/n) - 1)) - (exp(-(pi*(n + 1)*sqrt(-1))/n)*exp((pi*sqrt(-1))/n)*(exp((pi*(n
+ 1)*sqrt(-1))/n) - exp((2*pi*(n + 1))/n))*sqrt(-1))/(2*(exp((pi*sqrt(-1))/n) -
exp((2*pi)/n)))))/n

>> limit(ans,n,inf)

ans =

exp(2*pi)/5 + 1/5

 Ejercicio numero 2

π /2

∫ sin( 5 x )cos (3 x) dx
0

b−a
Sea f(x) = sin(5 x )cos (3 x) continua en el intervalo [0; π/2], donde ∆X i = , siendo a=0
n
y b=π/2, así tenemos:

π /2−0 π
∆Xi = = : una partición regular.
n 2n

Entonces: Xi = a +i. (∆Xi)

π
Xi = 0+i. ( ); donde i = 0,…, n
2n

π π
(
Luego: f (Xi) ¿ sin(5(i .
2n
))cos (3(i . ))
2n )
Formamos la sumatoria:

2
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

n n

∑ f ( X i).∆Xi =∑ ¿¿]
i=0 i=0

Llevamos al límite la sumatoria:


n n
π π π
n → ∞ i=0 n →∞ i=0
(
lim ∑ f (X i) . ∆ X i=lim ∑ [ sin(5(i .
2n 2n )
))cos(3(i . )) .
2n
¿ ]¿

Haciendo uso del programa Matlab hallamos la integral.

>> syms i n

>> symsum((sin(5*pi*i/(2*n)))*cos(3*pi*i/(2*n))*pi/(2*n),i,0,n)

ans =

piecewise([2/n in Z_ and 1/(2*n) in Z_, 0], [not 2/n in Z_ and 1/(2*n) in Z_, -
(pi*(((exp((pi*(n + 1)*4*sqrt(-1))/n) - 1)*sqrt(-1))/(4*(exp((pi*4*sqrt(-1))/n) - 1)) - (exp(-
(pi*(n + 1)*4*sqrt(-1))/n)*exp((pi*4*sqrt(-1))/n)*(exp((pi*(n + 1)*4*sqrt(-1))/n) -
1)*sqrt(-1))/(4*(exp((pi*4*sqrt(-1))/n) - 1))))/(2*n)], [2/n in Z_ and not 1/(2*n) in Z_, -
(pi*(((exp((pi*(n + 1)*sqrt(-1))/n) - 1)*sqrt(-1))/(4*(exp((pi*sqrt(-1))/n) - 1)) - (exp(-(pi*(n
+ 1)*sqrt(-1))/n)*exp((pi*sqrt(-1))/n)*(exp((pi*(n + 1)*sqrt(-1))/n) -
1)*sqrt(-1))/(4*(exp((pi*sqrt(-1))/n) - 1))))/(2*n)], [not 2/n in Z_ and not 1/(2*n) in Z_, -
(pi*(((exp((pi*(n + 1)*sqrt(-1))/n) - 1)*sqrt(-1))/(4*(exp((pi*sqrt(-1))/n) - 1)) +
((exp((pi*(n + 1)*4*sqrt(-1))/n) - 1)*sqrt(-1))/(4*(exp((pi*4*sqrt(-1))/n) - 1)) - (exp(-(pi*(n
+ 1)*sqrt(-1))/n)*exp((pi*sqrt(-1))/n)*(exp((pi*(n + 1)*sqrt(-1))/n) -
1)*sqrt(-1))/(4*(exp((pi*sqrt(-1))/n) - 1)) - (exp(-(pi*(n + 1)*4*sqrt(-
1))/n)*exp((pi*4*sqrt(-1))/n)*(exp((pi*(n + 1)*4*sqrt(-1))/n) -
1)*sqrt(-1))/(4*(exp((pi*4*sqrt(-1))/n) - 1))))/(2*n)])

>> limit(ans,n,inf)

ans =

3
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

1/2

 Ejercicio 3
1
x3
∫ x+ 2 dx
0

x3 b−a
Sea f(x) = continua en el intervalo [0; 1], donde ∆Xi = , siendo a=0 y b=1,
x+2 n
tenemos:

1−0 1
∆Xi = = : una partición
n n

Entonces: Xi = a +i. (∆Xi)

1
Xi = 0+i. ( ); donde i = 0,…, n
n

1 3
Luego: f (Xi) ¿
( )
i .( )
1
n
i .( )+2
n

Formamos la sumatoria:
n n

∑ f ( X i).∆X =∑ ¿¿]
i
i=0 i=0

Llevamos al límite la sumatoria:

1 3
n
lim ∑ f (X i) . ∆ X i=lim ∑ [
n → ∞ i=0
n

n →∞ i=0
( )
i .( )
1
n
i .( )+2
n
1
. ¿]¿
n

Haciendo uso del programa Matlab hallamos la integral.

>> syms i n

4
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

>> symsum(((i/n)^3/(i/n+2))*1/n,i,0,n)

ans =

((n^2*(21*n - 48*n^2*psi(3*n + 1) + 20*n^2 + 1))/6 + 8*n^4*psi(2*n))/n^4

>> limit(ans,n,inf)

ans =

8*log(2) - 8*log(3) + 10/3

 Ejercicio 4

∫ ( e x ( x 5+1)) dx
0

b−a
Sea f(x) = ( e x ( x 5 +1) )continua en el intervalo [0; 1], donde ∆X i = , siendo a=0 y b=1,
n
así tenemos:

1−0 1
∆Xi = = : una partición regular.
n n

Entonces: Xi = a +i. (∆Xi)

1
Xi = 0+i. ( ); i = 0,…, n
n

1
1 5
Luego: f (Xi) ¿ e (( i .( )
n
))
(i.( ) +1)
n

Formamos la sumatoria:

5
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

n n

∑ f ( X i).∆Xi =∑ ¿¿]
i=0 i=0

Llevamos al límite la sumatoria:

n n 1
1 5
lim ∑ f (X i) . ∆ X i=lim ∑ [ e
n → ∞ i=0 n →∞ i=0
(( i .( )
n
)) 1
(i.( ) +1) . ¿ ]¿
n n

Haciendo uso del programa Matlab hallamos la integral.

>> syms i n

>> symsum((exp(i/n))*((i/n)^5+1)*1/n,i,0,n)

ans =

((exp(1/n) + 26*exp(2/n) + 66*exp(3/n) + 26*exp(4/n) + exp(5/n) - 5*n^5*exp(1/n) +


10*n^5*exp(2/n) - 10*n^5*exp(3/n) + 5*n^5*exp(4/n) - n^5*exp(5/n) +
n^5)/(n^5*(exp(1/n) - 1)^6) - (exp((n + 1)/n)*(5*n + 26*exp(1/n) + 66*exp(2/n) +
26*exp(3/n) + exp(4/n) + 50*n*exp(1/n) - 50*n*exp(3/n) - 5*n*exp(4/n) +
20*n^2*exp(1/n) - 20*n^3*exp(1/n) - 20*n^4*exp(1/n) - 10*n^5*exp(1/n) -
60*n^2*exp(2/n) + 20*n^2*exp(3/n) + 10*n^2*exp(4/n) + 20*n^3*exp(3/n) +
30*n^4*exp(2/n) - 10*n^3*exp(4/n) - 20*n^4*exp(3/n) + 20*n^5*exp(2/n) +
5*n^4*exp(4/n) - 20*n^5*exp(3/n) + 10*n^5*exp(4/n) - 2*n^5*exp(5/n) + 10*n^2 +
10*n^3 + 5*n^4 + 2*n^5 + 1))/(n^5*(exp(1/n) - 1)^6))/n

>> limit(ans,n,inf)

ans =

119 - 43*exp(1)

6
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

 Ejercicio 5

∫ ( e x −x 3 ) dx
1

b−a
Sea f(x) = ( ( e x −x 3 ) )continua en el intervalo [1; 2], donde ∆X i = , siendo a=1y b=2, así
n
tenemos:

2−1 1
∆Xi = = : una partición regular.
n n

Entonces: Xi = a +i. (∆Xi)

1
Xi = 1+i. ( ); i = 0,…, n
n

( 1n ))−1+(i.( 1 ))3
Luego: f (Xi) ¿ e
(( (1 +i.

n ))
Formamos la sumatoria:
n n

∑ f ( X i).∆X =∑ ¿¿]i
i=0 i=0

Llevamos al límite la sumatoria:

n n
(1n ))−1+(i.( 1 ))3
lim
n→∞
∑ f (X i) . ∆ X i=lim
i=0 n →∞
∑[
i=0
(( (1 +i .
e
n )) 1
. ¿ ]¿
n

7
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

Haciendo uso del programa Matlab hallamos la integral.

>> syms i n
>> symsum((exp(1+i/n)-(1+i/n)^3)*1/n,i,0,n)

ans =

(18*n - 3*exp(1/n) - 18*n*exp(1/n) - 4*n*exp(1) - 15*n^2*exp(1/n) + 15*n^2 +


4*n*exp(1)*exp((n + 1)/n) + 3)/(4*n^2*(exp(1/n) - 1))

>> limit(ans,n,inf)

ans =

exp(2) - exp(1) - 15/4

3. CALCULO DE VOLUMEN DE SOLIDOS

 Ejercicio 1

Calcular el volumen del solido limitado por

x 2+ z2 =9

y=2

Formulación de la integral

2 3

∫∫ 2 √ 9−x 2 dydx
0 0

8
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

>> [x,y]=meshgrid(-4:.1:4,-4:.1:4);

z1=sqrt(9-x.^2);

z2=-sqrt(9-x.^2);

plot3(x,y,z1,x,y,z2)

hold on

[x,y]=meshgrid(-4:.1:4,-4:.1:4);

[m,n]=size(x);

z3=2*ones(m,n);

plot3(x,y,z3,'g')

title('Cálculo del Volumen Generado por las Superficies');

xlabel('x');

ylabel('y');

zlabel('z');

9
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

Cálculo del Volumen Generado por las Superficies

0
z

-1

-2 -4
-2
-3
-4 0
-2
0 2
2
4 4 x
y

Llevando la integral anterior al matlab, tenemos:

>> syms x y

>> f=2*(9-x^2)^(1/2)

f=

2*(9 - x^2)^(1/2)

>> int(int(f,y,0,2),x,0,3)

ans =

9*pi

Pero el volumen que hemos calculado es solo la mitad del cilindro

Entonces el volumen total será:


10
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

V= 9*pi*2 → V = 18 pi u3

 Ejercicio 2

Calcular el volumen del solido limitado por

x 2+ y 2=z

x + y=1

Graficando en matlab:

>> [x,y]=meshgrid(-2:.1:2,-2:.1:2);

z1=x.^2+y.^2;

surf(x,y,z1)

hold on

[x,y]=meshgrid(-4:.1:4,-2:.1:2);

z2=(1-x+y);

plot3(x,y,z2)

title('Cálculo del Volumen Generado por las Superficies');

xlabel('x');

ylabel('y');

zlabel('z');

11
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

Cálculo del Volumen Generado por las Superficies


8

2
z

-2

-4

-6
0 -2
-4 -3 -2 -1 0 1 2 3 4
2
x y

Formulación de la integral

1 1− x

∫ ∫ ( x 2+ y 2 ) dydx
0 0

Llevando la integral anterior al matlab, tenemos:

>> syms x y z

>> f=(x^2+y^2)

f =x^2 + y^2

>> int(int(f,y,0,1),x,0,(1-x))

ans =-(x - 1)*((x - 1)^2/3 + 1/3)

>> syms x y z

12
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

f=(x^2+y^2)

f =x^2 + y^2

>> int(int(f,y,0,(1-x)),x,0,1)

ans =1/6 u3

 Ejercicio 3

Calcular el volumen del solido limitado por

y 2=z

x + z=1

z=0

Formulación de la integral

1 √x
∫ ∫ ( 1−x ) dydx
0 −√ x

Llevando la integral anterior al matlab, tenemos:

>> syms x y

>> f=1-x

f=

1-x

>> int(int(f,y,-x^(1/2),x^(1/2)),x,0,1)

ans =

13
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

8/15 u3

 Ejercicio 4

Calcular el volumen del solido limitado por

y 2 + y 2=22

x 2+ z2 =22

Formulación de la integral

2 √ 22−x 2
∫ ∫ ( √22−x 2 ) dydx
0 0

Llevando la integral anterior al matlab, tenemos:

>> syms x y z

>> f=(4-x^2)^(1/2)

f=

(4 - x^2)^(1/2)

>> int(int(f,y,0,(4 - x^2)^(1/2)),x,0,2)

ans =

14
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

16/3

Pero solo hemos calculado la octava parte, entonces el volumen total será:

V = 8*16/3 → V =128/3 u3

 Ejercicio 5

Calcular el volumen del solido limitado por los planos coordenados y los
planos

x=1

y=2

Y el paraboloide elíptico

x2 y2
z= +
4 6

Formulación de la integral

1 2
x2 y2
∫∫ ( 2 + 3 )dydx
0 0

Llevando la integral anterior al matlab, tenemos:

>> syms x y z

>> f=(x^2/3+y^2/3)

f=

15
UNIVERSIDAD NACIONAL DE CAJAMARCA INGENIERIA CIVIL

x^2/3 + y^2/3

>> int(int(f,y,0,2),x,0,1)

ans =

10/9

Luego el volumen del solido sera:

V =10/9*1/2 → V = 10/18u3

16

Você também pode gostar