Discrete Mathematics CS 2610
Discrete Mathematics CS 2610
Discrete Mathematics CS 2610
CS 2610
Propositional Logic:
By convention
Precedence
Logical
Precedence
Operator
Examples:
5
p q r is equivalent to (( p) q) r
p q r s is equivalent to p (q (r s))
2
By convention:
0 represents false; 1 represents true.
x y
x y
x y
0
3
Propositional Equivalences
A tautology is a proposition that is always true.
Ex.: p p
p
p
pp
T
T
F
T
T
F
F
T
F
F
Ex.: p p
T
F
F
T
F
T
is
logically equivalent to q if their truth
tables are the same.
p is equivalent to q. is denoted by p q
Domination
pTT
p FF
Idempotence
pp p
pp p
Double negation
p p
6
Associativity:
(p q) r p ( q r )
(p q) r p ( q r )
De Morgans:
(p q) p q
(De Morgans I)
(p q) p q
Uniqueness:
p p F
A useful LE involving :
p q p q
Propositional Logic
Use known logical equivalences to prove that two
propositions are logically equivalent
Example:
( p q) p q
Double negation
(De Morgans II)
10
Predicate Logic
Define:
UGA(x) = x is a UGA student.
Universe of Discourse all people
x is a variable that represents an arbitrary individual
in the Universe of Discourse
A predicate P, or propositional function, is a function that
maps objects of the universe of discourse to propositions
12
Predicates - Quantifier
negation
x P(x) means P(x) is true for every x.
What about x P(x) ?
It is not the case that [P(x) is true for every x.]
There exists an x for which P(x) is not true.
x P(x)
Universal negation:
x P(x) x P(x).
14
Proofs
A theorem is a statement that can
be proved to be true.
A proof is a sequence of
statements that form an argument.
15
p
pq
Tautology:
(p (p q)) q
16
Tautology:
(q (p q)) p
17
Proofs: Addition
I am a student.
I am a student or I am a visitor.
pq
Tautology:
p (p q)
18
Proofs: Simplification
I am a student and I am a soccer player.
I am a student.
pq
Tautology:
(p q) p
19
Proofs: Conjunction
I am a student.
I am a soccer player.
I am a student and I am a soccer player.
p
q
pq
Tautology:
((p) (q)) p q
20
Proofs: Disjunctive
Syllogism
pq
q
Tautology:
((p q) q) p
21
Proofs: Hypothetical
Syllogism
If I get a total score over 96, I will get an A in the course.
If I get an A in the course, I will have a 4.0 semester average.
pq
qr
pr
Tautology:
((p q) (q r)) (p r)
22
Proofs: Resolution
I am taking CS1301 or I am taking CS2610.
I am not taking CS1301 or I am taking CS 1302.
pq
pr
qr
Tautology:
((p q ) ( p r)) (q r)
23
pq
pr
qr
Tautology:
((p q ) (p r) (q r)) r
24
p
Abductive
reasoning
Fallacy:
(q (p q)) p
25
Fallacy:
(p (p q)) q
26
P(c)___
x P(x)
x P(x)
P(c)
P(c)__
x P(x)
Universal Generalization
(for any arbitrary element c from UoD)
Existential Instantiation
(for some specific object c from UoD)
Existential Generalization
(for some object c from UoD)
27
conclusion
An argument is valid if
p1 p2 pn q
is true when p1,,pn are true.
Proofs
Step 1: Translate the sentences into
logical expressions
Step 2: Use rules of inferences to
build a proof
29
Direct proofs
Start with premises and deduce
the conclusion:
30
Vacuous Proofs
p q is vacuously true if p is
false
In this case, p q is a vacuous
proof
Ex. p: 0 > 1
q: Mars is an asteroid
What can we say about p q ?
31
Trivial Proofs
p q is trivially true if q is true,
In this case, we have a trivial proof
Example:
x>1 1=1
32
Indirect Proofs
To prove p q, we prove its contrapositive,
qp
Example:
if n2 is even then n is even
is equivalent to
if n is odd then n2 is odd
We can prove If n2 is even then n is even
by proving If n is odd then n2 is odd
33
Proof By Contradiction:
Reductio ad
Absurdum
To prove p, we assume p and derive a contradiction.
Based on the tautology
(pF) p
if the negation of p implies a contradiction then p must
be true
Example:
If I win $1,000,000, I will buy a sailboat.
If I buy a sailboat, I will go sailing every summer.
This summer, I will take one vacation.
I plan to go biking this summer.
Prove that I have not yet won $1,000,000.
34
36
Proof Techniques
Disproving x P(x)
38
39
Proof: (BWOC)
Assume the opposite is true.
Then n, p such that p is prime, p n.
Let p1, p2, , pk be all the prime numbers
between 2 and n.
Consider the value r = p1 p2 pn + 1.
Then r is not divisible by any prime number p n.
Thus, either r is prime or r has prime factors
greater than n!
40
Sets
A set is an unordered collection of objects.
Examples:
Order and
repetition dont
matter
{ 1, 6, 7, 2, 9 }
= {6, 7, 1, 2, 9}
{ a, d, e, 1, 2, 3} = {a, a, d, d, e, e, 1, 2,
3}
Universal Set
Universal Set is the set containing
all the objects under consideration.
It is denoted by U
42
Elements of sets
x S means x is an element of set S
x S means x is not an element of set S
Example:
3 S reads:
3 is an element of the set S .
Which of the following is true:
1.
3R
2.
-3 N
44
Subsets
A B means A is a subset of B or, B contains
A
every element of A is also in B
or, x ((x A) (x B))
A B means A is a subset of B
B A means B is a superset of A
45
Subsets
A B means A is a subset of B
For Every Set S,
i) S, the empty set is a subset of
every set
ii) S S, every set is a subset of
itself
46
Power Sets
The power set of S is the set of all subsets of S.
P(S) = { x | x S }
If S = {a}, P(S) = ?
If S = {a,b}, P(S) = ?
{, {a}}
{, {a}, {b}, {a, b}}
If S = , P(S)= ?
{}
n-Tuples
An ordered n-tuple, n Z+, is an ordered list
(a1, a2, , an).
48
Cartesian Product
The Cartesian Product of two sets A and B is:
A x B = { (a, b) | a A b B}
Example:
A= {a, b}, B= {1, 2}
A B = {(a,1), (a,2), (b,1), (b,2)}
B A = {(1,a), (1,b), (2,a), (2,b)}
Not commutative!
In general,
A1 x A2 x x An = {(a1, a2,, an) | a1 A1, a2
A2, , an An}
|A1 x A2 x x An| = |A1| x |A2| x x |An|
49
Union Operator
The union of two sets A and B is:
AB={x|xAvxB}
Example:
A = {1,2,3}, B = {1,6}
A B = {1,2,3,6}
50
Intersection Operator
The intersection of two sets A and B is:
A B = { x | x A x B}
Example:
A = {1,2,3}, B = {1,6}
A B = {1}
Two sets A, B are called disjoint if their
intersection is empty.
AB=
Example:
A = {1,2,3}, B = {9,10}, C = {2, 9}
A and B are disjoint sets, but A and C are not
51
Set Theory :
Inclusion/Exclusion
What is the cardinality of A B ?
twice
AB
Once
Set Complement
The complement of a set A is:
A = { x | x A}
xAxA
Example:
U=N
A = {xN | x is odd }
A = {xN | x is even }
= U
U =
53
Set Diference
The set difference, A - B, is:
A-B={x|xAxB}
Example:
A = {2,3,4,5 }, B = {3,4,7,9 }
A- B = {2, 5}
B A = {7,9}
It is not
commutative!!
54
Symmetric Diference
The symmetric difference, A B, is:
A B = { x | (x A x B) v (x B x A)}
(i.e., x is in one or the other, but not in both)
Is it commutative ?
55
Set Identities
Identity:
A=A,
AU=A
Domination:
AU =U, A=
Idempotent:
AA=A=AA
Double complement:
( A ) =
Commutative:
AB=BA, AB=BA
Associative:
A (B C) = (A B) C
A (B C) = (A B) C
56
Set Identities
Absorption:
A (A B) = A
A (A B) = A
Complement:
A A = U
A A =
Distributive:
A (B C) = (A B) (A C)
A (B C) = (A B) (A C)
57
De Morgans Rules
De Morgans I
DeMorgans II
(A U B) = A B
(A B) = A U B
58
59
60
62
Example
A = {Mike, Mario, Kim, Joe, Jill}
B = {John Smith, Edward Jones, Richard Boone}
Let f:A B where f(a) means father of a.
Mike
Mario
Kim
Joe
Jill
A (children)
John Smith
Edward Jones
Richard Boone
(fathers)
63
64
Function Terminology
Given a function f:AB
A is the domain of f.
B is the codomain of f.
Example
Mike
Mario
Kim
Joe
Jill
John Smith
Edward Jones
Richard Boone
A
Domain
B
Codomain
66
67
Bijective Functions
A function f: A B is bijective iff it is one-toone and onto (a one-to-one correspondence)
f
B
A
The domain cardinality equals the codomain
cardinality
69
Function Composition
Given the functions g:AB and f:BC, the
composition of f and g, f g: AC defined as
f g (a) = f ( g (a) )
g
h
b
d
o
f g (h) ?
70
Function Composition
Properties
Associative: Given the functions g:AB and f:BC
and h:CD then
h (f g) (h f ) g
h(f(g(x))) h(f(x)) g = h(f(g(x)))
but (f g) (g f ) not Commutative
71
Inverse Functions
Let f : A B be a bijection, the inverse of f,
f -1:B A
such that for any b B,
f-1
72
Inverse Functions
Let f: A B be a bijection, and f-1:B A be the
inverse of f:
f-1 f = IA = (f-1f)(a) = f-1 (f(a)) = f-1 (b) = a
f f-1 = IB = (ff-1)(b) = f(f-1 (b)) = f(a) = b
A
f-1
73
74
(1b)
(1c)
(1d)
(2)
(3a)
-x = - x
(3b)
-x = - x
(4a)
x+n = x +n
(4b)
x+n = x +n
75
76
Boolean Algebra
The minimal Boolean algebra is the algebra formed
over the set of truth values {0, 1} by using the
operations functions +, , - (sum, product, and
complement).
O corresponds to False
1 corresponds to True
corresponds logical operator AND
+ corresponds logical operator OR
- corresponds logical operator NOT
77
78
Boolean Expressions
Let x1, , xn be n different Boolean variables.
Example:
E1 = x
E2 = y
E3 = z
E4 = E 1 + E 2= x + y
E5 = E1E2= x y
E6 = -E3 = -z
E7 = E6 + E4 = -z + x + y
E8 = E6 E4 = -z ( x + y)
x1
x2
x3
F(x1,x2,x3)
F(x1,x2,x3) = x1(x2+x3)+x1x2x3
80
Boolean Functions
Two Boolean expressions e1 and e2 that represent
the exact same function F are called equivalent
x1
x2
x3
F(x1,x2,x3)
F(x1,x2,x3) = x1(x2+x3)+x1x2x3
F(x1,x2,x3) = x1x2+x1x3+x1x2x3
81
Boolean Identities
Double complement:
x=x
Idempotent laws:
x + x = x,
xx=x
Identity laws:
x + 0 = x,
x1=x
Domination laws:
x + 1 = 1,
x0=0
Commutative laws:
x + y = y + x, x y = y x
Associative laws:
x + ( y + z) = ( x + y ) + z
x ( y z) = ( x y ) z
Distributive laws:
x + y z = (x + y)(x + z)
x ( y + z) = x y + x z
De Morgans laws:
(x y) = x + y, (x + y) = x y
Absorption laws:
x + x y = x, x (x + y) = x
+xyz
+xyz
(x + y +z)
84
X
Y
X+Y
x
y
xy
OR gate
AND gate
85
x1+x2 + + xn
xn
x1
x2
x1x2 xn
xn
86
3-Variable Example
xyz + xyz + xyz + xyz + xyz = z + xy
yz
yz
yz
yz
1
88
Analysis of Algorithms
Analyzing an algorithm
Time complexity
Space complexity
Time complexity
Algorithm Complexity
Worst Case Analysis
90
Search Algorithms
Search Algorithm Problem:
Find an element a in a list a1,an (not necessarily
ordered)
91
Sorting Algorithms
Problem: Given a sequence of numbers, sort the
sequence in weakly increasing order.
Sorting Algorithms:
Input:
A sequence of n numbers a1, a2, , an
Output:
A re-ordering of the input sequence (a1, a2, , an)
such that a1 a2 an
92
Notation:
Let i I, the image f(i) is denoted as ai, where ai S
ai is called a term of the sequence
{ai} represents the entire sequence
Note:
If the domain I is finite, the sequence is finite, otherwise the
sequence is infinite.
93
Sequences
Examples:
Sequences
ai = a + i*d
ai+1 = ai + d
Example:
Let d = 3, {an} such that a=2, d=3
{an} = {2, 5, 8, 11, 14,}
95
Sequences
ai = ari
It grows exponentially
96
97
Summations
ai : a j a j
i j
... ak
Summations
Example
5
2
i
i 3
(k 1)
k 1
4
j
(
2
)
j 0
2
4
j 0
j 1
2j
99
Cardinality
Def.: The cardinality of a set is the number of
elements in the set.
100
Examples:
N, Z+, Z-, Z
101
102
Uncountable sets
Theorem: The set of real numbers is uncountable.
If a subset of a set is uncountable, then the set is uncountable.
The cardinality of a subset is at least as large as the cardinality
of the entire set.
It is enough to prove that there is a subset of R that is
uncountable
Theorem: The open interval of real numbers
[0,1) = {r R | 0 r < 1} is uncountable.
Proof by contradiction using the Cantor diagonalization
argument (Cantor, 1879)
103
Uncountable Sets: R
Proof (BWOC) using diagonalization: Suppose R is
countable (then any subset say [0,1) is also
countable). So, we can list them: r1, r2, r3, where
r1 = 0.d11d12d13d14
the dij are digits 0-9
r2 = 0.d21d22d23d24
r3 = 0.d31d32d33d34
r4 = 0.d41d42d43d44
etc.
Now let r = 0.d1d2d3d4 where di = 4 if dii 4
di = 5 if dii = 4
But r is not equal to any of the items in the list so its
missing from the list so we cant list them after all.
r differs from ri in the ith position, for all i. So, our
assumption that we could list them all is incorrect.
104
Order of Growth
Terminology
Best
O(1)
O(log cn)
O(logc n)
O(n)
O(nc)
O(cn)
O(n!)
Worst
Constant
Logarithmic (c Z+)
Polylogarithmic (c Z+)
Linear
Polynomial (c Z+)
Exponential (c Z+)
Factorial
105
Complexity of Problems
Tractable
106
Complexity of Problems
Intractable
Problems that are not tractable.
Example:
Traveling salesperson problem
107
Big-O Notation
Big-O notation is used to express the time
complexity of an algorithm
108
Big-O Notation
Def.: Let f , g be functions with domain R0 or N and
codomain R.
f(x) is O(g(x)) if there are constants C and k st
x > k, |f (x )| C |g (x )|
f (x ) is asymptotically dominated by g (x )
C|g(x)| is an upper bound of f(x).
C|g(x)|
|f(x)|
109
Big-O Properties
Transitivity:if f is O(g) and g is O(h) then f is O(h)
Sum Rule:
If f is O(g ) and f is O(g ) then f +f is O(max(|g |,|g |))
1
1
2
2
1
2
1
2
Product Rule
If f is O(g ) andf is O(g ) then f f is O(g g )
1
1
2
2
1 2
1 2
For all c > 0, O(cf), O(f + c),O(f c) are O(f)
110
Big-Omega Notation
Def.: Let f, g be functions with domain R0 or N and
codomain R.
f(x) is (g(x)) if there are positive constants C and
k such that
x > k, C |g (x )| |f (x )|
C |g(x)| is a lower bound for |f(x)|
|f(x)|
C|g(x)|
111
Big-Theta Notation
Def.:Let f , g be functions with domain R0 or N and
codomain R.
f(x) is (g(x)) if f(x) is O(g(x)) and f(x) is (g(x)).
C2|g(x)|
|f(x)|
C1|g(x)|
112
Big Summary
Upper Bound Use Big-Oh
113
Number Theory
Elementary number theory, concerned with numbers,
usually integers and their properties or rational
numbers
Some Applications
Cryptography
E-commerce
Payment systems
115
a = dq + r
d is the divisor
q is the quotient
q = a div d
r is the remainder
r = a mod d
117
Mod Operation
Let a, b Z with b > 1.
a = qb + r, where 0 r < b
Then a mod b denotes the remainder r from the
division algorithm with dividend a and divisor b
109 mod 30 = ?
0 a mod b b 1
118
Modular Arithmetic
Let a, b Z, m Z+
Then a is congruent to b modulo m iff m | (a b) .
Notation:
Examples:
5 25 (mod 10)
5 25 (mod 3)
119
Modular Arithmetic
Theorem 3.4.3: Let a, b Z, m Z+. Then
a b (mod m) iff a mod m = b mod m
Proof: (1) given a mod m = b mod m we have
a = ms + r or r = a ms,
b = mp + r or r = b mp,
a ms = b mp
which means a b = ms mp
= m(s p)
so m | (a b) which means
a b (mod m)
120
Modular Arithmetic
Theorem 3.4.3: Let a, b Z, m Z+. Then
a b (mod m) iff a mod m = b mod m
Proof: (2) given a b (mod m) we have m | (a b)
let a = mqa + ra and b = mqb + rb
so, m|((mqa + ra) (mqb + rb))
or m|m(qa qb) + (ra rb)
recall 0 ra < m and 0 rb < m
therefore (ra rb) must be 0
that is, the two remainders are the same
which is the same as saying
a mod m = b mod m
121
Modular Arithmetic
Theorem 3.4.4: Let a, b Z, m Z+. Then:
a b (mod m) iff there exists a k Z st
a = b + km.
Proof: a = b + km means
a b = km which means
m | (a b) which is the same as saying
a b (mod m)
(to complete the proof, reverse the steps)
Examples:
27 12 (mod 5)
27 = 12 + 5k
k=3
105 -45 (mod 10)
105 = -45 + 10k k = 15
122
Modular Arithmetic
Theorem 3.4.5: Let a, b, c, d Z, m Z+. Then if
a b (mod m) and c d (mod m), then:
1.
a + c b + d (mod m),
2. a - c b - d (mod m),
3. ac bd (mod m)
Proof: a = b + k1m and c = d + k2m
a + c = b + d + k 1 m + k 2m
or a + c = b + d + m(k1 + k2)
which is
a + c b + d (mod m)
others are similar
123
125
126
127
lcm(a, b) p1
p2
pn
.
128
Modular Exponentiation
For large b, n and m, we can compute the modular
exponentiation using the following property:
129
Example:
Claim: P(n): n2 + n + 41 is a prime number
41, 43, 47, 53, 61, 71, 83, 97, 113, 131 are all prime
Have we proved that P(n) is true for all n > 0?
No Actually: P(41) = 1763 = 41*43 is not prime
130
Weak Mathematical
Principle of Weak Mathematical Induction
Induction
1) [Base Case] P (m) is true for some m N
2) [Inductive Step]
3) Then:
P(n)P(n+1)
n m P(n) is true
Idea: If its true for n=1, then its true for n=2. If its true
for n=2, then its true for n=3. If its true for n=3, then
its true for n = 4
Strong Induction
In a proof by mathematical induction, the inductive step
shows that if the inductive hypothesis P(k) is true, then
P(k+1) is also true. In a proof by strong induction, the
inductive step shows that if P(j) is true for all positive
integers not exceeding k, then P(k+1) is true.
For the inductive hypothesis we assume that P(j) is true
for j = 1, 2, 3, , k.
Yes, they are equivalent. But now we get
to use P(1), P(2), P(k) to prove P(k+1)
not just P(k)!
132
Strong Induction
Principle of Strong Induction
1) [Base Case] show P (1) is true
133
Recurrence Formula
Geometric Series
Base: a0=3, r=2
Recursion: an=an-1r, n > 0
134
f(1)= 1
f(2)= 2
f(3)= 6
f(4)= 24
n!
135
Example:
Let S be defined as follows
Basis Step: 1 S
Recursive Step: if n S then 2n S
S = {2k | k N }
136
Set of Strings
Def.:An alphabet is a finite non-empty set of
symbols (e.g., = {0, 1} )
Def.:A String over an alphabet is a finite sequence
of symbols from (e.g., 11010 )
The set * of strings over can be defined as:
Basis Step: * where is the empty string containing
no symbols
Recursive Definition on
Concatenation (combining two strings)
Strings
Basis Step: if w * then w = w, where is the
empty string containing no symbols.
Recursive Step: if w1 *, w2 * and x then
w1(w2 x) * (same as (w1 w2) x *)
Example:
={a, b}
Let w1=aba, w2=a and x=b then abaab *
138
Counting
140
Counting
Part of combinatorics, the study of arrangements
of objects. (Sets, sequences, sebsets, etc.)
Counting relies on two important, but simple
principles: the Product Rule and Sum Rule
141
Counting
Note that sometimes we will not be able to make
our subtasks completely distinct. Some ways of
solving a problem might fall into multiple subtasks.
This leads to the Subtraction Principle.
Before introducing this principle, lets consider
the set versions of the Product and Sum Rules.
142
143
Permutations and
Combinations
A permutation of a set of distinct objects is an
Permutations and
Combinations
An r-combination of a set of distinct objects is an
unordered arrangement (subset) of size r.
Probability
We can understand probability by considering sets
of outcomes:
We define a set S to be a sample space, a set of all
possible outcomes of some experiment.
We define a set E S, the set of all outcomes in
which the event occurs.
We further assume that all outcomes in S are equally
likely.
Then the probability of the event occurring is:
p(E) = |E| / |S|
146
Probability
We use p(E) to denote the probability that an
event occurs.
We use p(E) to denote the probability that an
event does not occur.
P(E) = 1 p(E)
If a coin is flipped 5 times, what is the probability of
at least one head coming up?
147
Probability
If E1 and E2 are two events in the same sample
space, then
p(E1 E2) = p(E1) + p(E2) p(E1 E2)
Its just the subtraction principle again!
A number is selected at random from the set of
positive integers less than or equal to 100.
What is the probability the number is divisible by
either 2 or 5?
148
Probability Theory
When dealing with experiments for which there
are multiple outcomes- x1, x2, , xn we require
0 p(xi) 1 for i = 1, 2, , n
and
(i=1, n) p(xi) = 1
149
Probability Theory
Uniform Probability Distribution:
p(xi) = 1/n, for i = 1, 2, , n
All outcomes are equally probable.
150
Probability Theory
Note that sum and product rules apply when dealing
with probabilities too!
Sequences of events are products
Either/or requires sum rule and subtraction principle
Complementary rule works too!
151
Conditional Probability
The conditional probability of E given F is
P(E | F) = p(E F) / p(F)
152
Independence
Two events, E and F, are independent iff
p(E1 E2) = p(E1) p(E2)
The two events dont influence one another!
153
Repeated trials
If there are a number of trials being conducted,
each of which has a probability of success of p
and a probability of failure of q = 1 p, then the
probability of exactly k successes in n
independent trials is
C(n,k)pkqn-k
This is called the binomial distribution.
154
Bayes Theorem
Consider the following problem:
There are two boxes holding red and green balls.
Box 1 contains 2G, 7R.
Box 2 contains 4G, 3R.
A ball is selected by choosing a box at random, then
choosing a bal at random from that box.
If a red ball is selected, what is the probability it
cam from the first box?
155
Bayes Theorem
Let E be a red ball is chosen
So E is a green ball is chosen
Let F be a ball is chosen from box 1
So F is a ball is chosen from box 2
We want to know p(F|E).
156
Bayes Theorem
By conditional prob, p(F|E) = p(FE)/p(E).
We know p(E|F) = 7/9 and p(E|F) = 3/7
We know p(F) = p(F) = 1/2
By conditional prob, p(E|F) = p(EF)/p(F)
So, p(EF) = p(E|F)p(F) = (7/9)(1/2) = 7/18
By the same logic, p(EF) = p(E|F)p(F) = 3/14
Since p(E) = p(EF) + p(EF), p(E) = 38/63.
p(F|E) = p(FE)/p(E) = (7/18)(63/38) = 49/7664.5%
157
Bayes Theorem
Given events E and F such that p(E) 0, p(F) 0,
p(F|E) =
p(E|F)p(F)
p(E|F)p(F) + p(E|F)p(F)
Expected Values
We sometimes use the syntax X(s) to represent a
random variable over some sample space S.
For example, consider a random variable
corresponding to the number of heads that come
up when flipping a coin 2 times.
The sample space S is {HH, HT, TH, TT}
X(HH) = 2, X(HT) = 1, X(TH) = 1, X(TT) = 0
The s in X(s) refers to an element of S.
159
Expected Values
There is a formal way to determine this calculation.
For a random variable X(s) over sample space S, the
expected value of X is
E(X) = p(s)X(s)
sS
160
Variance
Expected value gives us an important piece of
information regarding a distribution or random
variable.
Its like knowing the average grade for the class.
But the class average doesnt tell us how spread out
the classes scores were. For that we need another
measure- a measure of spread.
161
Variance
Variance is a measure of spread.
For a ranom variable X over a sample space S, the
variance of X is given by
V(X) = (X(s) E(X))2 p(s)
sS
162
Standard Deviation
Combined, variance and expected value can give a lot
of information. Many distributions, such as the
Normal distribution (bell curve), are defined in
terms of these two parameters.
The standard deviation of X is sometimes used
instead of variance. It has nice properties that
you may learn about if you take a course in
probability of statistics.
The standard deviation of X is given by
(X) = V(X)
163
an
= 2n
becomes
a0
=1
an+1
= 2n+1 = 22n
= 2an, for n 1.
164
166