8

Is there a formal definition for series? For example, cardinal sum has a formal definition such that $\sum a_i$ = $\bigcup a_i$. Is there any clear definition for series of real or complex number?

The definition on my book is the sum of $a_0 + ... + a_n$. This seems very intuitive to me so i don't like it..

I tried to define series such that $\gamma(0) = a_0$ and $\gamma(n+1) = f_n(\gamma(n))$ where $f_n(x) = x+ a_n$

Since $f_n ≠ f_{n+1}$, i can't apply finite recurssion theorem. However it seems obvious that $\gamma$ is a function and unique. How do i prove the existence and uniqueness of $\gamma$?


I have proved that "If A is a set, 'c' a fixed point in A and $f_n : A →A$ a function for every $n\in \mathbb{N}$, then there exists a unique function $\gamma : \mathbb{N} →A$ such that $\gamma(0) = c$ and $\gamma(n+1) = f_n(\gamma(n))$. This is a bit generalized form of original finite recursion theorem. Let $\alpha$ be a sequence. Let $f_n(x)=x+\alpha(n+1) : F→F$. (F denotes an arbitrary field here) Then by above theorem, we can construct $\gamma$. It can be easily checked that $\gamma(n)$ is a summation of $a_0,...,a_n$.

By the way, i've never said series is a 'finite summation'. Of course, series is a sequence..

Katlus
  • 6,593
  • 4
    Sure; look in any real analysis textbook. – Qiaochu Yuan Jun 24 '12 at 07:32
  • @Qiaochu given a sequence {$a_n$}, $\sum a_n$ denotes $a_0$ + ... $a_n$, p59. PMA -Rudin – Katlus Jun 24 '12 at 07:40
  • I think that definition is intuitively defined.. Is there any abstract one? – Katlus Jun 24 '12 at 07:41
  • There is nothing non-rigorous about what Rudin says on page 59. What do you find unsatisfactory about it? – Qiaochu Yuan Jun 24 '12 at 07:42
  • I rather want to define it by a recurssion theorem. Such as $\gamma (0) = a_0$ and $\gamma(n+1) = \gamma(n) + a_n+$ – Katlus Jun 24 '12 at 07:45
  • I don't know how to construct a function $f$ such that $f(\gamma(n)) = \gamma(n) + a_{n+1}$ – Katlus Jun 24 '12 at 07:49
  • 2
    Well, that's because there isn't such a function (consider what happens if $\gamma(n) = \gamma(m)$ but $a_{n+1} \neq a_{m+1}$). – Qiaochu Yuan Jun 24 '12 at 07:52
  • 1
    Once again: to accept an answer less than 45 minutes after the question was asked has some questionable consequences. – Did Jun 24 '12 at 08:21
  • 1
    @Katlus Please notice that $a_0+\ldots +a_n$ is not a series. You should probably write ${a_0+\ldots + a_n}_{n \geq 1}$ or something alike. – Siminore Jun 24 '12 at 08:30
  • @Siminore: ...Which would be a sequence, and not a series (as you are perfectly aware, I know...). – Did Jun 24 '12 at 08:38
  • Well, I was taught that a series is just the sequence built by summation of the first terms of a given sequence. – Siminore Jun 24 '12 at 09:44
  • @Siminore: Then every sequence would be a series. This might be the reason why one keeps in mind both sequences (the increments and the partial sums) to define a series. – Did Jun 24 '12 at 13:54
  • Yes, indeed $a_n = s_{n}-s_{n-1}$, and there is a one-to-one correspondence between sequences and series. – Siminore Jun 24 '12 at 17:26

3 Answers3

5

$$\sum_{i=1}^2a_i=a_1+a_2$$

$$\sum_{i=1}^{n+1}a_i=\sum_{i=1}^na_i+a_{n+1}$$

$$\sum_{i=1}^{\infty}a_i=\lim_{n\to\infty}\sum_{i=1}^na_i$$ if the limit exists.

Gerry Myerson
  • 179,216
2

Take any sequence $(a_0,a_0,\ldots)$ of real numbers. Define a function $r$ on finite sequences of real numbers such that if $s$ has length $n-1>0$, $r(s)$ is the last value of $s$ plus $a_n$. If the length of $s$ is $0$ (which we allow), then $r(s)=a_0$. The (countable) recursion theorem gives you a unique sequence $(b_0,b_1\ldots)$ such that $b_{n+1}=b_n+a_{n+1}$ and that defines your series. Note that the recursion is allowed to depend on all finite sequence of values.

There are two things you might think are not rigorous here: The "length" and the "last value". A finite sequence is a function with domain being a finite ordinal. This ordinal is the length, which is therefore well-defined. the elements of an ordinal are again ordinals and the value at the largest such ordinal in the domain is the "last value".

MJD
  • 65,394
  • 39
  • 298
  • 580
Michael Greinecker
  • 32,841
  • 6
  • 80
  • 137
  • Sorry that i changed my question while you were posting it .. Would you please tell me how do i define such $b$? The finite recurssion theorem i know has $f$ doesn't depend on its 'input' value..(described in my edited question) – Katlus Jun 24 '12 at 08:13
  • You cannot use the recursion theorem you mentioned, which is why use a stronger version in which one takes finite sequences as inputs. It is a special version of the general recursion theorem you find in set theory books. – Michael Greinecker Jun 24 '12 at 08:17
  • I have proved that "If A is a set, 'c' a fixed point in A and $f_n : A →A$ a function for every $n\in \mathbb{N}$, then there exists a unique function $\gamma : \mathbb{N} →A$ such that $\gamma(0) = c$ and $\gamma(n+1) = f_n(\gamma(n))$. – Katlus Jun 24 '12 at 12:08
  • which is a little generalized form of original finite recursion theorem. With this I have defined series as a sequence and it works fine. Thanks for your help :) – Katlus Jun 24 '12 at 12:10
1

To answer the question in the title, a series is a pair of sequences $(x_n)_{n\geqslant0}$ and $(S_n)_{n\geqslant0}$ such that $S_n=\sum\limits_{k=0}^nx_k$ for every $n\geqslant0$ (with the obvious modifications for sequences and series indexed by $n\geqslant i$ with $i\ne0$).

Did
  • 279,727
  • 1
    I think this is a formal but correct definition. – Siminore Jun 24 '12 at 08:25
  • 1
    @Siminore: Yes, formal (whatever that means) and correct. – Did Jun 24 '12 at 08:27
  • Of course :-) I wrote that because the OP seems to prefer a rather "colloquial" definition. By the way, His/her textbook states that a series is a finite sum! – Siminore Jun 24 '12 at 08:28
  • 1
    @Siminore: Yep, you are right that there are definitely some serious misconceptions at work here. Unfortunately, apart from that, I am not even sure of what the question is really... – Did Jun 24 '12 at 08:36