Sorry, bad example. I mean an infinite series and by roots I mean like roots of a polynomial (zeroes)
So:
Sigma (n=0 to infinity) 1/n^k. where k is some constant.
And is there a way I can insert math operators into these posts so its not so cryptic?
Ah, okay. Well, in that case, in general, finding the zeroes of an infinite series is something that can be fairly easily or extremely difficult. Some series lend themselves easier to the task than others. First, determine if the series converges or not. Obviously if the series diverges for every value of the non-indexed variable, it cannot have any zeroes. Some series may conditionally converge for some values of the non-indexed variable, but not others. And some series may converge for all values of the non-indexed variable. The example you gave only conditionally converges. For n = 1, the series diverges, for n = 2 the series converges to \(\displaystyle \dfrac{\pi^2}{6}\), for n = 3, the series converges to \(\displaystyle \zeta(3) \approx 1.2021\), etc. Unless I'm mistaken, I believe it converges for all real n > 1. An example of a series that converges for all values is \(\displaystyle \displaystyle \sum_{n=1}^{\infty} \frac{(x-n)^6}{n^n}\). A (trivial) example of a series that always diverges is \(\displaystyle \displaystyle \sum_{n=1}^{\infty} 1^x\).
Finding if a series converges or diverges can sometimes be difficult in and of itself.
Here is a page from Paul's Online Calculus Notes explaining some techniques for determining the radius of convergence of a series. And
here is another page that has some other techniques you might find useful for determining if a series converges or diverges.
Now once you know if a series converges or diverges, you can then begin to find any zeroes. This is easiest if the series has a nice closed form, which you can just use standard techniques to find the zeroes of. For example, the series \(\displaystyle \displaystyle \sum_{n=1}^{\infty} \dfrac{52^n}{n} \cdot (38x - 21)^n\) converges to \(\displaystyle -ln(1093-1976x)\) when \(\displaystyle |38x - 21| < \dfrac{1}{52}\). This function, then, has only one zero, namely when \(\displaystyle 1093 - 1976x = 1 \implies x = \dfrac{21}{38}\). The example you gave, \(\displaystyle \displaystyle \sum_{n=1}^{\infty} \dfrac{1}{n^k} = \zeta(k)\) for all real \(\displaystyle k > 1\). But finding the zeroes of the Riemann Zeta function is...
not an easy task.
As for "inserting math," the forum has a built-in LaTeX parser, which makes writing math stuff quite easy. For instance, if you write
Code:
[tex]\displaystyle \sum_{n=1}^{\infty} (summand)[/tex]
, it will render as \(\displaystyle \displaystyle \sum_{n=1}^{\infty} (summand)\). Some other basic functions you'll find handy: To write a fraction, use
Code:
[tex]\dfrac{numerator}{denominator}[/tex]
to display \(\displaystyle \dfrac{numerator}{denominator}\). Most Greek letters can be represented by simply typing a slash and then the name of the letter. So, \alpha gives \(\displaystyle \alpha\), \omega gives \(\displaystyle \omega\), \Omega (note the capital O, this definitely matters) gives \(\displaystyle \Omega\), and so on.