Sorry for the poorly formated post of the same name. I'm still trying to figure out how to cut and paste from Maple to this forum. Is it possible?
Also the main question is: I have the results of a Fourier series and I wish to factor out a common coefficient:
Is there a command(s) to get the results:
Thank You
Larry Ciak
View 1600_11.2-6 Primes 1 Post.mw on MapleNet or Download 1600_11.2-6 Primes 1 Post.mw
View file details
Factor
You could do something like this:
S := collect(a0+sum(an*cos(n*x*Pi/L),n=1..8),1/Pi);
It is not exactly what you wanted , but I hope it helps.
Later edit.
On reflection, one can improve on the above thus:
Sn := sum(an*cos(n*x*Pi/L),n=1..8):
Sn := algsubs(4/Pi=a,Sn):
Sn := collect(Sn,a):
Sn := subs(a=(Pi/4),Sn):
S := a0 + Sn;
This is what you asked for, though not in quite the same order. Hope it will be adequate for your purpose.
J. Tarr