Sunteți pe pagina 1din 6

UNIVERSIDAD DON BOSCO

DPTO. DE CIENCIAS BSICAS


MATEMTICA AVANZADA.

TRABAJO COOPERATIVO No. 2: TEOREMA DE GREEN

PRESENTADO POR:

ASCENCIO TREJO, HENRY ERNESTO AT151879

HERNNDEZ RIVAS, JESS SALOMN HR151394

MEJA RODRGUEZ, GUISEPED VLADIMIR MR100714

URRUTIA HERNANDEZ, SANTIAGO ALEXANDER UH160607

VILLALTA QUINTANILLA, WENDY BEATRIZ VQ160507

CATEDRTICO:

LIC. ADN MAGAA.

SOYAPANGO, 27 DE SEPTIEMBRE DE 2017.


PRIMERA PARTE: PROBLEMAS PROPUESTOS TEOREMA DE GREEN

Indicaciones: Usando MATLAB, utilice el Teorema de Green para evaluar la Integral de


lnea en cada uno de los problemas siguientes:

0
i. 4 + 3, en donde C es el cuadrado cuyos vrtices son:
(0,0), (1,0), (1,1) (0,1)

Cdigo Grafico

>> syms x y
>> M=4*y;
>> N=3*x;
>> f=diff(N,x)-diff(M,y);
>> q=int(int(f,x,0,1),y,0,1)

q = -1
6
ii. 2 2 , en donde C es la circunferencia 2 + 2 = 1

Cdigo Grafica
>> syms x y r t
>> M=x^2*y;
>> N=-y^2*x;
>> f=diff(N,x)-diff(M,y);
>> f

f =- x^2 - y^2

>> 'Sabemos que x^2 + y^2 =


r^2, por lo tanto, el valor de f
ahora es r^2';
>> f=-r^2;
>> 'Hallamos el valor de la
integral por medio de la integral
doble, los lmites de r van de 0 a
1, y los de t de 0 a 2pi';
>> q=int(int(f*r,r,0,1),t,0,2*pi)
q=
-pi/2

>>
q=double(int(int(f*r,r,0,1),t,0,2*pi))
q=
-1.5708
25
iii. ( ) + (2 ), en donde C es la frontera de la regin comprendida
entre = and = 2

Cdigo Grafica

>> syms x y
>> M = y - x;
>> N = (2 * x) - y;
>> f = diff(N,x) - diff(M,y);
>> vpa(int(int(f,y,(x^2-x),x),x,0,2))

ans =

1.333333

32
iv. 2 + , en donde C es la regin comprendida entre = 0, = , and
=4

Cdigo Grafica

>> syms x y
>> M = y^2;
>> N = x * y;
>> f = diff(N,x) - diff(M,y);
>> vpa(int(int(f,y,0,sqrt(x)),x,0,4))

ans =

-4.0
1 2
v. 2 +1
1 (), en donde C es la elipse 4 2 + 25 2 = 100

Cdigo Grafica

syms x y
M=((x^2)*y)/(x^2+1);
N=-(atan(x));
f=diff(N,x)-diff(M,y);
vpa(int(int(f,y,-sqrt(4-
(4/25)*x^2),sqrt(4-(4/25)*x^2)),x,-5,5))

ans =
-31.4

62
vi. (4 + 2 ) + ( 3 ), en donde C es la curva 4 + 4 = 16

Cdigo Grafica

syms x y
>> M=(sin(x))^4+exp(2*x);
>> N=(cos(y))^3-exp(y);
>> F=diff(N,x)-diff(M,y);
>> F

F=0

>> double(int(int(F,y,-(16-
x^4)^(1/4),(16-x^4)^(1/4)),x,-2,2))

ans = 0
BIBLIOGRAFA

Rodrguez, R. (2005). Grficas con Matlab. Espaa: Universidad Complutense de


Madrid, Departamento de Matemtica Aplicada.

Cruz, C. (2007). Gua Bsica de Matlab. Santiago de Chile: Universidad de Chile,


Facultad de Ciencias Fsicas y Matemticas.

Larson, R. y Edwards, B. Clculo II: 9 Edicin. Captulo 15, seccin 15.4, Teorema
de Green.

MathWorks Documentation; Integral Doble en Matlab, consultado: 24 de septiembre


de 2017. Disponible en: http://www.mathworks.com/help/matlab/ref/integral2.html

S-ar putea să vă placă și