Summation Notation: Anthony Tanbakuchi
Summation Notation: Anthony Tanbakuchi
Summation Notation
Compact notation for sums.
Anthony Tanbakuchi
Department of Mathematics
Pima Community College
Redistribution of this material is prohibited
without written permission of the author
2009
(Compile date: Tue May 19 14:48:06 2009)
Contents
1 Summation Notation
1.1 Introduction . . . . . . .
1.2 Summation notation . .
1.3 Notation: Greek alphabet & symbols . . . . .
1.4
1.5
1.6
1
1
2
Summation Notation
1.1
Introduction
1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10
+ 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20
+ 21 + 22 + 23 + 2 + 25 + 26 + 27 + 28 + 29 + 30
+ 31 + 32 + 33 + 34 + 35 + 36 + 37 + 38 + 39 + 40
+ 41 + 42 + 43 + 44 + 45 + 46 + 47 + 48 + 49 + 50
Writing out a sum can be tedious!
A simpler way to write the above expression would be:
50
X
i=1
2
4
5
2 of 5
1.2
Summation notation
Summation notation.
Definition 1.1
P
The summation sign appears as the greek symbol
(capitol sigma)
and indicates a sequence of sums.
n
X
f (i) =
i=1
n
X
(expression involving i)
(1)
i=1
i=1+2+3+4+5
i=1
i2
i=5
1.3
1.4
In statistics we often deal with sets of data. For example, if we have a class of
5 students we can write their ages as:
x = {21, 25, 22, 21, 23}
Anthony Tanbakuchi
MAT167
Summation Notation
A
B
E
Z
H
I
K
3 of 5
Alpha
Beta
Gamma
Delta
Epsilon
Zeta
Eta
Theta
Iota
Kappa
Lambda
Mu
Nu
Xi
Omicron
Pi
Rho
Sigma
Tau
Upsilon
Phi
Chi
Psi
Omega
Where:
x1 = 21
x2 = 25
x3 = 22
x4 = 21
x5 = 23
Summing a set of data
We can write the sum of the data set x = {21, 25, 22, 21, 23} as
5
X
xi = x1 + x2 + x3 + x4 + x5
i=1
Anthony Tanbakuchi
(yi 1)2
MAT167
4 of 5
Question 3.
X
(yi 1)
2
Given y = {a, 3a, a}, show the left and right sides are equal by expanding
the summation notation and simplifying it. Assume that a is an unknown
constant.
Question 4.
X
1.5
R Command
Summation with R
Summation:
sum(x)
Where x is a vector.
P
P 2
CAUTION: sum(x^2) = x2i where sum(x)^2 = ( xi )
P
Example 2 (Summation in R). Given x = {2, 3, 7}, find
xi :
R: x = c ( 2 , 3 , 7 )
R: t o t a l = sum ( x )
R: t o t a l
[ 1 ] 12
P 2
(xi 2):
R: sum ( x 2 2 )
[ 1 ] 56
Anthony Tanbakuchi
MAT167
Summation Notation
1.6
5 of 5
Summary
n
X
(expression involving i)
i=1
Anthony Tanbakuchi
MAT167