Hi guys,
Please help me understand why the output doesn't work as it should . What am I doing wrong ? thanks
How about taking the sum symmetrically and then plotting the limit superior and limit inferior:
$\displaystyle \mathop\text{lim inf}\limits_{N\to\infty} \left\{1+2\sum_{n=1}^{N} \cos(2\pi nt)\right\}$
$\displaystyle \mathop\text{lim sup}\limits_{N\to\infty} \left\{1+2\sum_{n=1}^{N} \cos(2\pi nt)\right\}$
Here's my code to plot (empirically) the limit superior based on the first 100 terms:
Is that close to what it would look like in the limit?Code:f[t_, kmax_] := 1 + 2*Sum[Cos[2*Pi*k*t], {k, 1, kmax}]; ListPlot[Table[{t, Max[Table[f[t, nval], {nval, 1, 100}]]}, {t, 0, 5, 0.011}]]
Okay thank you both, I understand my mistake now .
I have another question that troubles me , and I'll appreciate your advices.
Given Sum of : X_N(t) =Sum [ Exp(j2*Pi*k*t) ] with lower limit -N and upper limit +N , -2<= t <= 2
I need to calculate x(t) ,so I used Euler :
X_N(t) = Sum e^(j2*pi*k*t) = Sum [ cos(2pi*k*t) + j*sin (2pi*k*t) ].
Now ,if I'm mistaken the sinus part becom equal to zero , because the cycle
of sinus is PI . But I have a problem with the Cosinus part , how can I
simplify it ? the "t" parameter interrupts with the simplifying ......
maybe separating it to conditions ? N=2R ------> even , N=2R+1 --> odd ?
thanks in advance
Due to symetries:
$\displaystyle x_N(t)=\sum_{k=-N}^N e^{j 2 \pi k t}=1+\text{Re}\left[2\sum_{k=1}^N e^{j 2 \pi k t}\right]$
and the sum on the right is a finite geometric series and so you should know that it sums to:
$\displaystyle x_N(t)=\text{Re}\left[2\ \frac{1-e^{j2\pi t (N+1)} }{1-e^{j2\pi t}}\right]-1$
which you should be able to simplify further.
CB
thanks for the help .
Something is not clear to me , how did you make your first move with the :
1 + 2*Re(Sigma[....]) ? where did the "1" come from ?
Nonetheless , I need to see how X_N(t) "behaves" with a large "N" , and
assuming (with your solution) N---->infinity , the x(t) would be what exactly ?
X_n(t) = 1 + 2[ 1-cos(2pi*t*(N+1]) ] / 1-cos(2pi*t)
I tried to to something like what you said , using a geometric series . I'd like your opinion with my point of view . thanks again (:
Yes it should be from 1 to infinity, I think I have corrected the offending post (but check it)
It is an impropper sum, you only ever consider finite sums and then take the limit as the upper limit goes to infinity (and what you have in that limit is not a normal function as it is zero every where except at integer values of x where it is infinite - in a particulatly odd manner)
CB
I'm trying to develop the X_N(t) you mentioned above ,into a pulse train of deltas ,something like δ(t-nT) however came up empty handed . After
using Euler and taking the Real part out of XN(t) ,I can't see any way to get to delta pulse train . Are you sure that's the way ? thanks you for all the replies !
The results in a single plot are shown in the attachments. (note: the size of the overshoot or ringing is always the same size relative to the peak, this is Gibb's phenoemum (sp?))Code:> >.. define function to sum the finite series and plot the result > >function FTdelta(n) $ global I $ k=[-n:n]'; $ t=-0.5:0.001:0.5; $ ss=exp(2*pi*I*k*t); $ SS=sum(ss'); $ color(12);xplot(t,re(SS')); $ hold on;color(10);plot(t,im(SS'));hold off;color(1); $ return SS' $endfunction > >.. now look at a plot of the series sum > >N=30; >FTdelta(N); >xplot;title("k=30"); > >.. now compute and plot the series sum that we have deduced > >t=-0.5:0.001:0.5; >xx=re(2*(1-exp(2*pi*I*t*(N+1)))/(1-exp(2*pi*I*t)))-1; > > >color(1);xplot(t,re(xx)); >
CB
Don't get me wrong , I'm greatful for your marvelous help , but you got me
confused this time. First you showed me how to get to
XN(t)=1+2Re*sigma(e^(2pi*jkt)) , and mathematically that's fine of course .But now you're suggesting going back to to Sigma and extract the deltas for there ?
I'll tell you what, I've done a plot of the function with Mathematica and when the "N" is big enough (let us take for example N=200000) I can see
that this is indeed a train of deltas , but I'm very confused about the theoretical point of view . I've tried a few ways however got stucked with them .
As I said before , I'm a beginner in this area and would very much appreciate if you could explain .
I'm not suggesting anything of the sort, the code and plots showed that the finite series and the sum of that which I gave do indeed give that same result.
Approach this from the other direction, and ask what is the Fourier series of a comb of deltas?I'll tell you what, I've done a plot of the function with Mathematica and when the "N" is big enough (let us take for example N=200000) I can see
that this is indeed a train of deltas , but I'm very confused about the theoretical point of view . I've tried a few ways however got stucked with them .
As I said before , I'm a beginner in this area and would very much appreciate if you could explain .
CB