Summation
From Free net encyclopedia
Template:Redirect Template:Redirect
Summation is the addition of a set of numbers; the result is their sum. For evaluation of sums in closed form see evaluating sums. The "numbers" to be summed may be natural numbers, complex numbers, matrices, or still more complicated objects. An infinite sum is a subtle procedure known as a series.
Contents |
Notation
The sum of 1, 2, and 4 is 1 + 2 + 4 = 7. Since addition is associative, it does not matter whether we interpret "1 + 2 + 4" as (1 + 2) + 4 or as 1 + (2 + 4); the result is the same, so parentheses are usually omitted in a sum. Addition is also commutative, so the order in which the numbers written does not affect its sum.
If a sum has too many terms to write them all out individually, the sum may be written with an ellipsis to mark out the missing terms. Thus, the sum of all the natural numbers from 1 to 100 is 1 + 2 + … + 99 + 100 = 5050.
Sums can be represented by the summation symbol, a capital sigma. This is defined as:
- <math>\sum_{i=m}^n x_i = x_m + x_{m+1} + x_{m+2} +\cdots+ x_{n-1} + x_n. </math>
The subscript gives the symbol for a dummy variable, i. Here, i represents the index of summation; m is the lower bound of summation, and n is the upper bound of summation. So, for example:
- <math>\sum_{k=2}^6 k^2 = 2^2+3^2+4^2+5^2+6^2 = 90.</math>
One often sees generalizations of this notation in which an arbitrary logical condition is supplied, and the sum is intended to be taken over all values satisfying the condition. For example:
- <math>\sum_{0\le k< 100} f(k)</math>
is the sum of f(k) over all (integer) k in the specified range,
- <math>\sum_{x\in S} f(x)</math>
is the sum of f(x) over all elements x in the set S, and
- <math>\sum_{d|n}\;\mu(d)</math>
is the sum of μ(d) over all integers d dividing n.
- (Remark: Although the name of the dummy variable does not matter (by definition), one usually uses letters from the middle of the alphabet (i through q) to denote integers, if there is a risk of confusion. For example, even if there should be no doubt about the interpretation, it could look slightly confusing to many mathematicians to see x instead of k in the above formulae involving k. See also typographical conventions in mathematical formulae.)
There are also ways to generalize the use of many sigma signs. For example,
- <math>\sum_{\ell,\ell'}</math>
is the same as
- <math>\sum_\ell\sum_{\ell'}.</math>
Computerized notation
Summations can also be represented in a programming language.
<math> \sum_{i=m}^{n} x_{i}</math>is computed by the following C / [[C++]] / Java / JavaScript program:
sum = 0; for(i = m; i <= n; i++) sum += x[i];
the following Visual BASIC program:
Sum = 0 For I = 1 to M Sum = Sum + X(I) Next I
</pre> and the following Pascal program:
sum := 0; for i := m to n do sum := sum+x[i];
APL allows a concise notation for summation via the "reduce" operator: <math> SUM \leftarrow +/ X </math>
Special cases
It is possible to add fewer than 2 numbers:
- If you add the single term x, then the sum is x.
- If you add zero terms, then the sum is zero, because zero is the identity for addition. This is known as the empty sum.
These degenerate cases are usually only used when the summation notation gives a degenerate result in a special case. For example, if m = n in the definition above, then there is only one term in the sum; if m = n + 1, then there is none.
Approximation by definite integrals
Many such approximations can be obtained by the following connection between sums and integrals, which holds for any increasing function f:
- <math> \int_{s=a-1}^{b} f(s)\, ds \le \sum_{i=a}^{b} f(i) \le \int_{s=a}^{b+1} f(s)\, ds.</math>
For more general approximations, see the Euler-Maclaurin formula.
For functions that are integrable on the interval <math>[a,b]</math>, the Riemann sum can be used as an approximation of the definite integral. For example, the following formula is the left Riemann sum with equal partitioning of the interval:
- <math> \frac{b-a}{n}\sum_{i=0}^{n-1} f\left(a+i\frac{b-a}n\right)\approx \int_a^b f(x)\,dx.</math>
The accuracy of such an approximation increases with the number n of subintervals.
Identities
The following are useful identities:
- <math>\sum_{i=1}^n x = nx</math>
- <math>\sum_{i=m}^n i = \frac{(n-m+1)(n+m)}{2}</math>
- <math>\sum_{i=0}^n i = \frac {n(n+1)}{2}</math> (see arithmetic series)
- <math>\sum_{i=0}^n i^2 = \frac{n(n+1)(2n+1)}{6}</math>
- <math>\sum_{i=0}^n i^3 = \left(\frac{n(n+1)}{2}\right)^2</math>
- <math>\sum_{i=0}^n i^p = \frac{(n+1)^{p+1}}{p+1} + \sum_{k=1}^p\frac{B_k}{p-k+1}{p\choose k}(n+1)^{p-k+1}</math>
- where <math>B_k</math> is the kth Bernoulli number.
- <math>\sum_{i=m}^n x^i = \frac{x^{n+1}-x^{m}}{x-1}</math> (see geometric series)
- <math>\sum_{i=0}^n x^i = \frac{1-x^{n+1}}{1-x}</math> (special case of the above where m = 0)
- <math>\sum_{i=0}^n {n \choose i} = 2^n</math> (see binomial coefficient)
- <math>\sum_{i=0}^{n-1} {i \choose k} = {n \choose k+1}</math>
- <math>\left(\sum_i a_i\right)\left(\sum_j b_j\right) = \sum_i\sum_j a_ib_j</math>
- <math>\left(\sum_i a_i\right)^2 = 2\sum_i\sum_{j<i} a_ia_j + \sum_i a_i^2</math>
Growth rates
The following are useful approximations (using theta notation):
- <math>\sum_{i=1}^n i^c = \Theta(n^{c+1})</math> for real c greater than -1
- <math>\sum_{i=1}^n \frac{1}{i} = \Theta(\log n)</math>
- <math>\sum_{i=1}^n c^i = \Theta(c^n)</math> for real c greater than 1
- <math>\sum_{i=1}^n \log(i)^c = \Theta(n \cdot \log(n)^{c})</math> for nonnegative real c
- <math>\sum_{i=1}^n \log(i)^c \cdot i^d = \Theta(n^{d+1} \cdot \log(n)^{c})</math> for nonnegative real c, d
- <math>\sum_{i=1}^n \log(i)^c \cdot i^d \cdot b^i = \Theta (n^d \cdot \log(n)^c \cdot b^n)</math> for nonnegative real b > 1, c, d
See also
External links
el:Πρόσθεση es:Sumatorio it:Sommatoria ru:Сумма (математика) simple:Sum sl:Vsota fi:Summa
sv:Summa