Encountering Euler's Number

Slides:



Advertisements
Similar presentations
Sequences and Mathematical Induction
Advertisements

Gibbs sampler - simple properties It’s not hard to show that this MC chain is aperiodic. Often is reversible distribution. If in addition the chain is.
By Groysman Maxim. Let S be a set of sites in the plane. Each point in the plane is influenced by each point of S. We would like to decompose the plane.
Chain Rules for Entropy
Infinite Sequences and Series
INFINITE SEQUENCES AND SERIES
Index FAQ Limits of Sequences of Real Numbers 2013 Sequences of Real Numbers Limits through Definitions The Squeeze Theorem Using the Squeeze Theorem Monotonous.
Convergence or Divergence of Infinite Series
Copyright © 2007 Pearson Education, Inc. Slide 8-1.
Index FAQ Limits of Sequences of Real Numbers Sequences of Real Numbers Limits through Rigorous Definitions The Squeeze Theorem Using the Squeeze Theorem.
Chapter 9 Sequences and Series The Fibonacci sequence is a series of integers mentioned in a book by Leonardo of Pisa (Fibonacci) in 1202 as the answer.
Copyright © 2014, 2010 Pearson Education, Inc. Chapter 9 Further Topics in Algebra Copyright © 2014, 2010 Pearson Education, Inc.
The importance of sequences and infinite series in calculus stems from Newton’s idea of representing functions as sums of infinite series.  For instance,
MS 305 Recitation 11 Output Analysis I
2.4 Sequences and Summations
PROBABILITY AND STATISTICS FOR ENGINEERING Hossein Sameti Department of Computer Engineering Sharif University of Technology The Weak Law and the Strong.
Infinite Series Copyright © Cengage Learning. All rights reserved.
Infinite Series 9 Copyright © Cengage Learning. All rights reserved.
12 INFINITE SEQUENCES AND SERIES. In general, it is difficult to find the exact sum of a series.  We were able to accomplish this for geometric series.
1 Probability and Statistical Inference (9th Edition) Chapter 5 (Part 2/2) Distributions of Functions of Random Variables November 25, 2015.
1 Sequences A sequence is defined as a function whose domain is the set of positive integers. Although a sequence is a function, it is common to represent.
1 ۞ An eigenvalue λ and an eigenfunction f(x) of an operator Ĥ in a space S satisfy Week 6 2. Properties of self-adjoint operators where f(x) is implied.
Copyright © Cengage Learning. All rights reserved.
Can a and b both be whole numbers? similar triangles so.
Chapter 6 Large Random Samples Weiqi Luo ( 骆伟祺 ) School of Data & Computer Science Sun Yat-Sen University :
Mathematical Induction Thinking Skill: Develop Confidence in Reason Warm Up: Find the k+1 term (P k+1 ) 1) 2)
Theory of Computational Complexity Probability and Computing Ryosuke Sasanuma Iwama and Ito lab M1.
Theory of Computational Complexity M1 Takao Inoshita Iwama & Ito Lab Graduate School of Informatics, Kyoto University.
Copyright © Cengage Learning. All rights reserved The Integral Test and Estimates of Sums.
INTEGRALS 5. INTEGRALS In Chapter 3, we used the tangent and velocity problems to introduce the derivative—the central idea in differential calculus.
INFINITE SEQUENCES AND SERIES In general, it is difficult to find the exact sum of a series.  We were able to accomplish this for geometric series and.
SECTION 8.3 THE INTEGRAL AND COMPARISON TESTS. P2P28.3 INFINITE SEQUENCES AND SERIES  In general, it is difficult to find the exact sum of a series.
Theory of Computational Complexity Probability and Computing Chapter Hikaru Inada Iwama and Ito lab M1.
The expected number of random values from the unit- interval [0,1] needed to obtain a sum exceeding 1.
Chapter 1 Logic and Proof.
Direct Proof and Counterexample IV: Division into Cases and the Quotient-Remainder Theorem For each of the following values of n and d, find integers q.
Trigonometric Identities
Chapter 3 The Real Numbers.
Chapter 10 Limits and the Derivative
Chapter 3 The Real Numbers.
Chapter 3 The Real Numbers.
11.4 The Comparison Tests In this section, we will learn:
Copyright © Cengage Learning. All rights reserved.
Lecture 13 Sections 5.4 – 5.6 Objectives:
Lecture 7 Functions.
Copyright © Cengage Learning. All rights reserved.
Lecture 16: Earth-Mover Distance
Convergence or Divergence of Infinite Series
Copyright © Cengage Learning. All rights reserved.
Chapter 4 Sequences.
SECTION 3-6 : COMPOUND INEQUALITIES
5.5 Properties of the Definite Integral
Basic Counting.
Copyright © Cengage Learning. All rights reserved.
Essential Questions Solving Rational Equations and Inequalities
Copyright © Cengage Learning. All rights reserved.
13. The Weak Law and the Strong Law of Large Numbers
Copyright © Cengage Learning. All rights reserved.
Chapter 11: Further Topics in Algebra
Chapter 4 Sequences.
Foundations of Discrete Mathematics
Chapter 2. Random Variables
Zeros of polynomial functions
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
Game Description Player 1: Decides on integer x > 0
CS 2604 Data Structures and File Management
Chapter 2 Limits and the Derivative
13. The Weak Law and the Strong Law of Large Numbers
11.4 Mathematical Induction
Presentation transcript:

Encountering Euler's Number

A random variable question Suppose values are selected at random from the unit- interval [0,1] until their total exceeds 1 . Let X count the number of values required. What is the expected value of X ? (In other words, what is the mean μX ?)

Computer simulation We have constructed a computer simulation which repeatedly performs this experiment using a random number generating function It shows the average number of randomly chosen values needed to obtain a total larger than 1

Output of 'eulernum.cpp' demo

Euler's Number e = 2.718... This number e has been called the most important number in mathematics It turns up often in probability studies But it was discovered in connection with investigations of compound interest e = limitn→∞ (1 + 1/n)n

Two numerical sequences Consider the two sets L and U defined by L = { (1 + 1/n)n | n = 1, 2, 3, ... } and U = { (1 + 1/n)n+1 | n = 1, 2, 3, ... } These set names come from “lower” and “upper”.

Three theorems to prove Numbers in L form an increasing sequence i.e., (1 + 1/n)n < (1 + 1/(n+1))m+1 , for n > 0 Numbers in U form a decreasing sequence i.e., (1 + 1/n)n+1 > (1 + 1/(n+1))n+2 , for n > 0 Numbers in L are less than numbers in U i.e., (1 + 1/n)n < (1 + 1/n)n+1 , for n > 0

And this “squeeze” theorem 0 < (1 + 1/n)n+1 – (1 + 1/n)n < 4/n , for n > 0 It implies that the distance which separates numbers in L from numbers in U Is smaller than any positive real number (in other words, it's equal to zero)

Furthermore... The sum Sn of these reciprocal factorials Sn = 1/0! + 1/1! + 1/2! + 1/3! + 1/4! + ... + 1/n! satisfies the inequality (1 + 1/n)n < Sn < (1 + 1/n)n+1

An inequality from algebra Lemma 1: If 0 ≤ a < b, then (n+1)an < (bn+1 – an+1) / (b - a) < (n+1)bn Proof: We use (bn+1 – an+1) = (b - a)( ∑k akbn-k ) and the fact that each of the n+1 summands satisfies an < akbn-k < bn . ▄

Another algebra fact Lemma 2: For any positive integer n , we have (1 + 1/(n+1))2 < (1 + 1/(n+1)) + 1/n Proof: Reexpress both sides in terms of their common denominator n(n+1)2 and then observe that their numerators can readily be compared: n3 + 3n2 + 3n < n3 + 3n2 + 3n + 1 ▄

Recall the Binomial Theorem (1 + 1/n)n = ∑k b(n;k) (1/n)k (1 + 1/n)n+1 = ∑k b(n+1;k) (1/n)k

Timeout for demo and proofs The foregoing slides lay the groundwork for proving the essential facts about Euler's Number But we also can utilize a demo-program that shows us the behavior of the successive terms that lie in the sets L and U