Está en la página 1de 4

Integrales de linea de campos vectoriales.

wxm 1 / 4

INTEGRALES DE LINEA
DE CAMPOS VECTORIALES
Calcula la integral de linea del campo
2*atan(y/x)* i+ln(x^2+y^2)* j donde
C (4+2*cos(t))*i+(4+sin(t))*j

(%i1) depends([x,y],t);
(%o1) [ x( t ), y( t )]

(%i9) 2*atan(y/x)* diff(x,t)+log(x^2+y^2)*diff(y,t);


d d y
(%o9) y log( y 2 + x 2 )+ 2 x atan
d t d t x

(%i10) ev(%),x=4+2*cos(t),y=4+sin(t),diff,expand;
(%o10) cos( t ) log( sin( t )2 + 8 sin( t )+ 4 cos( t )2 + 16 cos( t )+ 32 )- 4 sin( t )
sin( t ) 4
atan +
2 cos( t )+ 4 2 cos( t )+ 4

(%i11) trigsimp(%);
sin( t )+ 4
(%o11) cos( t ) log( 8 sin( t )+ 3 cos( t )2 + 16 cos( t )+ 33 )- 4 sin( t ) atan
2 cos( t )+ 4

(%i12) integrate(%, t, 0, 2*%pi);


(%o12)
2
cos( t ) log( 8 sin( t )+ 3 cos( t )2 + 16 cos( t )+ 33 )- 4 sin( t ) atan
sin( t )+ 4
2 cos( t )+ 4 d t
0

Aplico el th. de Green

(%i13) diff(log(x^2+y^2),x)-diff(2*atan(y/x),y);
2x 2
(%o13) -
2
y +x 2 y 2
x + 1
x2

(%i14) radcan(%);
(%o14) 0

Hallar a para que F=15 x^2y^2 i+ a x^3*y j sea conservativo y


calcular la integral de F a lo largo de C:sqrt(t^2+9) i+ sqrt(t) j
desde t=0 a t=4

(%i16) diff(15*x^2*y^2,y)=diff(a*x^3*y,x);
(%o16) 30 x 2 y = 3 a x 2 y
Integrales de linea de campos vectoriales.wxm 2 / 4

(%i17) solve(%,a);
(%o17) [ a = 10 ]

(%i18) 15*x^2*y^2;
(%o18) 15 x 2 y 2

(%i19) integrate(%, x);


(%o19) 5 x 3 y 2

(%i20) depends(g,y);
(%o20) [ g( y )]

(%i21) %o19+g;
(%o21) 5 x 3 y 2 + g

(%i22) diff(%,y)=10*x^3*y;
d
(%o22) 10 x 3 y + g = 10 x 3 y
dy

(%i25) solve(%o22,diff(g,y));
d
(%o25) [ g =0]
dy

(%i34) f(x,y):=5*x^3*y^2;
(%o34) f( x , y ):= 5 x 3 y 2

(%i27) [sqrt(t^2+9),sqrt(t)],t=0;
(%o27) [ 3 , 0 ]

(%i28) [sqrt(t^2+9),sqrt(t)],t=4;
(%o28) [ 5 , 2 ]

(%i36) f(5,2)-f(3,0);
(%o36) 2500

Calcula la integral del campo x i+y^2 j-z^3 k a travs de una


curva que une los puntos (1,1,1) y (2,3,-4)

Vemos si es conservativo, para ello calculamos el vector rotacional


con la orden curl del paquete vect, seguida luego de express y diff

(%i37) load(vect);
(%o37)
C:/ARCHIV~1/MAXIMA~1.1/share/maxima/5.22.1/share/vector/vect.mac

(%i38) curl([x,y^2,-z^3]);
(%o38) curl( [ x , y 2 , - z 3 ] )
Integrales de linea de campos vectoriales.wxm 3 / 4

(%i39) express(%),diff;
(%o39) [ 0 , 0 , 0 ]

Buscamos la funcin potencial

(%i40) depends(g,[y,z],h,z);
(%o40) [ g( y , z ), h( z )]

-->

(%i41) integrate(x, x);


x2
(%o41)
2

(%i42) %+g;
x2
(%o42) +g
2

(%i43) diff(%,y)=y^2;
d
(%o43) g = y2
dy

-->

(%i44) integrate(y^2, y);


y3
(%o44)
3

(%i45) %o41+%o44+h;
y 3 x2
(%o45) + +h
3 2

(%i46) diff(%,z);
d
(%o46) h
dz

(%i47) integrate(-z^3, z);


z4
(%o47) -
4

(%i48) %o41+%o44+%o47+K;
z4 y 3 x2
(%o48) K - + +
4 3 2

(%i51) f(x,y,z):= x^2/2+y^3/3-z^4/4;


x2 y 3 - z4
(%o51) f( x , y , z ):= + +
2 3 4
Integrales de linea de campos vectoriales.wxm 4 / 4

(%i53) f(2,-3,4)-f(1,1,1);
859
(%o53) -
12

Otras rdenes interesantes del paquete vect pueden ser:


[a,b,c]~[d,e,f] producto vectorial (ALTGR + 4= ~)
grad(F) gradiente
potential(F) funcin potencial
div(F) Divergencia
jacobian([x,y,z],[t,u,v])

(%i54) potential([x,y^2,-z^3]);
3 z4 - 4 y 3 - 6 x2
(%o54) -
12

(%i55) %,x=2,y=-3,z=4;
(%o55) - 71

(%i56) %o54,x=1,y=1,z=1;
7
(%o56)
12

(%i57) %o55-%;
859
(%o57) -
12

También podría gustarte