martes, 11 de mayo de 2010

Tercer Ejercicio de Números Complejos

Este ejercicio lo vi muy pero muy difícil, no trae gráficos pero si tuve que usar un artificio ingenioso para hallar las variables x,y en términos u,v sobre todo porque manejaba ecuaciones que incluían expresiones algebraicas racionales fraccionarias. Finalmente con maple se pudo hacer el tedioso trabajo de la manipulación simbólica u operaciones algebraicas. Aqui esta el link de la pagina original por si no les carga los símbolos.


1/(x+iy)+1/(u+iv) = 1
>   LI := expand(1*(x-I*y))/expand((x+I*y)*(x-I*y))

LI := (x-I*y)/(x^2+y^2)
>   LD := simplify(1-1/(u+I*v))

LD := (u+v*I-1)/(u+v*I)
>   LD := expand((u+I*v-1)*(u-I*v))/expand((u+I*v)*(u-I*v))

LD := (u^2+v^2-u+v*I)/(u^2+v^2)
>   LI=LD;

(x-I*y)/(x^2+y^2) = (u^2+v^2-u+v*I)/(u^2+v^2)
>   (x/(x^2+y^2)-y*I/(x^2+y^2))=(u^2+v^2-u)/(u^2+v^2)+(v*I)/(u^2+v^2);

x/(x^2+y^2)-I*y/(x^2+y^2) = (u^2+v^2-u)/(u^2+v^2)+v/(u^2+v^2)*I
>   x/(x^2+y^2)=(u^2+v^2-u)/(u^2+v^2);

x/(x^2+y^2) = (u^2+v^2-u)/(u^2+v^2)
>   -y/(x^2+y^2) = v/(u^2+v^2);

-y/(x^2+y^2) = v/(u^2+v^2)
>   x/y=(u^2+v^2-u)/v;

x/y = (u^2+v^2-u)/v
>   x = y*(u^2+v^2-u)/v;

x = y*(u^2+v^2-u)/v
>   -y/((y*(u^2+v^2-u)/v)^2+y^2) = v/(u^2+v^2);

-y/(y^2*(u^2+v^2-u)^2/v^2+y^2) = v/(u^2+v^2)
>   simplify(%);

-v^2/y/(u^4+2*u^2*v^2-2*u^3+v^4-2*v^2*u+u^2+v^2) = v/(u^2+v^2)
>   y=solve(%,y);

y = -v/(u^2-2*u+v^2+1)
>   y := -v/(u^2-2*u+v^2+1): # asignamos a y su valor
x = y*(u^2+v^2-u)/v; # y la reemplazamos en (3)

x = -(u^2+v^2-u)/(u^2-2*u+v^2+1)

No hay comentarios:

Publicar un comentario