Mathematica Troubleshooting SumConverge in Mathematica

AI Thread Summary
In Mathematica, the user encountered an issue with the function SumConverge, which only echoed back the input without providing a result. The problem was identified as a misuse of the function name; the correct function is SumConvergence. It was noted that when the input involves Sin[n x], Mathematica can determine convergence criteria only if x is a rational multiple of pi. For arbitrary x, it cannot provide a conclusion, leading to the echo response. A suggested solution involved using the Assuming function with FullSimplify to clarify the conditions for convergence. Despite following these steps, the user continued to receive an echo response. Further troubleshooting included verifying the functionality of examples from the help pages for SumConvergence to identify potential issues.
member 428835
Hi PF!

So in mathematica I am trying to see if a function converges so I type: SumConverge[2/(n*Pi) Exp[-n^2*t] Sin[n x], n]

All mathematica does here is echo back what I typed in. Is something I'm doing wrong?

Thanks!
 
Physics news on Phys.org
For the record, there seems to be a problem with the n^2 in the Exp
 
The function you want is SumConvergence, not SumConverge. Usually, when a Mathematica function simply echoes your input that means that it cannot determine the answer.

In this case, the problem isn't the n^2, the problem is the Sin[n x]. If x is some rational multiple of pi then Mathematica can correctly determine that the convergence criteria is Re[t]>0. However, for an arbitrary x or for an x which is not a rational multiple of pi then Mathematica doesn't know, so it returns the input.
 
Last edited:
  • Like
Likes member 428835
Thanks!
 
It just needs a little hint

In[1]:= Assuming[t > 0,
FullSimplify[SumConvergence[2/(n*Pi) Exp[-n^2*t] Sin[n x], n]]]

Out[1]= True
 
I copied what you have and all i received out was an echo... :(
 
Hummm. I reboot the machine. Win7 64, MMA 9 64. Open MMA. Scrape

Assuming[t > 0, FullSimplify[SumConvergence[2/(n*Pi) Exp[-n^2*t] Sin[n x], n]]]

off the screen, paste it into the notebook, <shift><enter> and a few seconds later it replies True.

The result is the same even if you remove the 2/(n*Pi).

If you could reply with your having done exactly those steps, nothing more, and you still get echo then we can try to figure out where to go next.

Unfortunately all the work is done internally and Trace tells us nothing about where it might be going wrong.

You might try all the examples in the help pages for SumConvergence and verify that they work for you.
 

Similar threads

Replies
2
Views
2K
Replies
5
Views
3K
Replies
1
Views
2K
Replies
4
Views
3K
Replies
4
Views
1K
Back
Top