A few hints on the first homework set

sm311o_hmk1.mws,wdj,1-14-98

> f:=sum((I*x)^k/k!,k=0..10);

[Maple Math]

> series(cos(x), x=0,12);

[Maple Math]

> series(I*sin(x), x=0,10);

[Maple Math]

>

>

> f1:=exp(alpha*x)*cos(beta*x);
f2:=exp(alpha*x)*sin(beta*x);

[Maple Math]

[Maple Math]

> with(linalg):

> W:=matrix([[f1,f2],[diff(f1,x),diff(f2,x)]]);

[Maple Math]

> Wron:=det(W);

[Maple Math]

> simplify(Wron);

[Maple Math]

>

> plot([-2*cos(2*t),3*sin(3*t),-2*cos(2*t)+3*sin(3*t)],t=0..12);

[Maple Plot]

> plot(-2*cos(2*t)+3*sin(3*t),t=0..12);

[Maple Plot]

> plot([-2*cos(2*t)],t=0..12);

[Maple Plot]

>

>