Section 7.5: Nonstationary Poisson Processes

Size: px
Start display at page:

Download "Section 7.5: Nonstationary Poisson Processes"

Transcription

1 Section 7.5: Nonstationary Poisson Processes Discrete-Event Simulation: A First Course c 2006 Pearson Ed., Inc Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 1/ 20

2 Section 7.5: Nonstationary Poisson Processes Suppose we want the arrival rate λ to change over time: λ(t) Recall the algorithm to generate a stationary Poisson process: Stationary Poisson Process a 0 = 0.0; n = 0; while (a n < τ) { a n+1 = a n + Exponential(1 / λ); n++; } return a 1, a 2,..., a n 1 ; Above algorithm generates a stationary Poisson process Time interval is 0 t < τ Event times are a 1, a 2, a 3,... Process has constant rate λ Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 2/ 20

3 Incorrect Algorithm Change constant λ to function: Incorrect Algorithm a 0 = 0.0; n = 0; while (a n < τ) { a n+1 = a n + Exponential(1 / λ(a n )); n++; } return a 1, a 2,..., a n 1 ; Incorrect: ignores future evolution of λ(t) after t = a n If λ(a n ) < λ(a n+1 ) then a n+1 a n will tend to be too large If λ(a n ) > λ(a n+1 ) then a n+1 a n will tend to be too small Inertia error will be small only if λ(t) varies slowly with t Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 3/ 20

4 Example Piecewise-constant rate function 1 0 t < 15 λ(t) = 2 15 t < t < 50 Simulated using incorrect algorithm for τ = 50 Process replicated times Partitioned interval 0 t 50 into 50 bins Counted number of events for each bin, divided by Result is ˆλ(t), an estimate of λ(t) Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 4/ 20

5 Incorrect process generation ˆλ(t) 1.5 λ(t) ˆλ(t) t Incorrect algorithm has inertia error: ˆλ(t) under-estimates λ(t) after the rate increase ˆλ(t) over-estimates λ(t) after the rate decrease Use one of 2 correct algorithms instead Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 5/ 20

6 Thinning method Due to Lewis and Shedler, 1979 Uses an upper bound λ max λ(t) for 0 t < τ Generates a stationary Poisson process with rate λ max Discards (thins) some events, probabilistically Event at time s is kept with probability λ(s)/λ max λ max λ(s) λ(t). 0 a n s t Efficiency depends on λ max being a tight bound Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 6/ 20

7 Algorithm Algorithm a 0 = 0.0; n = 0; while (a n < τ) { s = a n ; do { s = s + Exponential(1 / λ max ); u = Uniform(0, λ max ); } while (u > λ(s)); a n+1 = s; n++; } return a 1, a 2,..., a n 1 ; When λ(s) is low, The event at time s is more likely to be discarded The number of loop iterations is more likely to be large Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 7/ 20

8 Example The thinning method was applied to Example 7.5.1, using λ max = 2 Computation time increased by a factor of about 2.2 The algorithm is not synchronized Even if a separate stream is used for Uniform ˆλ(t) λ(t) ˆλ(t) t Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 8/ 20

9 Inversion Method Due to Çinlar, 1975 Similar to inversion for random variate generation Requires only one call to Random per event Based upon the cumulative event rate function: Λ(t) = t 0 λ(s) ds 0 t < τ Λ(t) represents the expected number of events in interval [0,t) If λ(t) > 0 then Λ( ) is strictly monotone increasing There exists an inverse Λ 1 ( ) Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 9/ 20

10 Algorithm 7.5.2: idea Generates a stationary unit Poisson process u 1,u 2,u 3,... Equivalent to n random points in interval 0 < u i < Λ(τ) Each u i is transformed into a i using Λ 1 ( ). u 4 Λ(t) u 3 u 2 u 1 0 a 1 a 2 a 3 a 4 t Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 10/ 20

11 Algorithm 7.5.2: details Algorithm a 0 = 0.0; u 0 = 0.0; n = 0; while (a n < τ) { u n+1 = u n + Exponential(1.0); a n+1 = Λ 1 (u n+1 ); n++; } return a 1, a 2,..., a n 1 ; The algorithm is synchronized Useful when Λ 1 ( ) can be evaluated efficiently Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 11/ 20

12 Example Use the rate function from Example t < 15 λ(t) = 2 15 t < t < 50 By integration we obtain t 0 t < 15 Λ(t) = 2t t < 35 t t < 50 Solving u = Λ(t) for t we obtain u 0 u < 15 Λ 1 (u) = (u + 15)/2 15 u < 35 u u < 50 Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 12/ 20

13 Example results ˆλ(t) 1.5 λ(t) ˆλ(t) t Generation time using inversion is similar to the incorrect algorithm For this example, Λ(t) was easily inverted If Λ(t) cannot be inverted in closed form Use thinning if λ max can be found Use numerical methods to invert Λ(t) Use an approximation Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 13/ 20

14 Next-Event Simulation Orientation The three algorithms must be adapted for next-event simulation: Given current event time t, generate next event time Incorrect Algorithm arrival = t + Exponential(1 / λ(t)); Thinning Method arrival = t; do { arrival = arrival + Exponential(1 / λ max); u = Uniform(0, λ max); } while (u > λ(arrival)); Inversion Method arrival = Λ 1 (Λ(t) + Exponential(1.0)); Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 14/ 20

15 Piecewise-Linear Rate Functions A piecewise-constant rate function is (usually) unrealistic Obtaining an accurate estimate of λ(t) is difficult Requires lots of data see Section 9.3 We will examine piecewise-linear λ(t) functions Can be specified as a sequence of knot pairs (t j, λ j ) λ(t) λ 0 λ 1 λ 4 λ 2 λ 3 λ 5 λ 6. 0 t 0 t 1 t 2 t 3 t 4 t 5 t 6 t Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 15/ 20

16 Algorithm Algorithm Step 1 Given k + 1 knot pairs (t j,λ j ) with 0 = t 0 < t 1 < < t k = τ λ j 0 Four steps to construct Piecewise-linear λ(t) Piecewise-quadratic Λ(t) Λ 1 (u) Define the slope of each segment s j = λ j+1 λ j t j+1 t j j = 0,1,...,k 1 Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 16/ 20

17 Algorithm step 2/4 Algorithm Step 2 Define the cumulative rate for each knot point as Λ j = tj 0 λ(t) dt j = 0,1,...,k These can be computed recursively with Λ 0 = 0 Λ j = Λ j (λ j + λ j 1 )(t j t j 1 ) Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 17/ 20

18 Algorithm step 3/4 Algorithm Step 3 For subinterval t j t < t j+1 λ(t) = λ j + s j (t t j ) Λ(t) = Λ j + λ j (t t j ) s j(t t j ) 2 If s j 0 then λ(t) is linear Λ(t) is quadratic If s j = 0 then λ(t) is constant Λ(t) is linear Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 18/ 20

19 Algorithm step 4/4 Algorithm Step 4 For subinterval Λ j u < Λ j+1 Λ 1 (u) = t j + λ j + If s j = 0 then the above reduces to 2(u Λ j ) λ 2 j + 2s j (u Λ j ) Λ 1 (u) = t j + (u Λ j) λ j Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 19/ 20

20 Algorithm 7.5.4: Inversion with piecewise-linear λ(t) Modified algorithm Also keeps track of index j, the current segment Algorithm a 0 = 0.0; u 0 = 0.0; n = 0; j = 0; while (a n < τ) { u n+1 = u n + Exponential(1.0); while ((Λ j+1 < u n+1 ) and (j < k)) j++; a n+1 = Λ 1 (u n+1 ); /* Λ j < u n+1 Λ j+1 */ n++; } return a 1, a 2,..., a n 1 ; Discrete-Event Simulation: A First Course Section 7.5: Nonstationary Poisson Processes 20/ 20

PROBABILITY DISTRIBUTIONS

PROBABILITY DISTRIBUTIONS Review of PROBABILITY DISTRIBUTIONS Hideaki Shimazaki, Ph.D. http://goo.gl/visng Poisson process 1 Probability distribution Probability that a (continuous) random variable X is in (x,x+dx). ( ) P x < X

More information

Manual for SOA Exam MLC.

Manual for SOA Exam MLC. Chapter 10. Poisson processes. Section 10.5. Nonhomogenous Poisson processes Extract from: Arcones Fall 2009 Edition, available at http://www.actexmadriver.com/ 1/14 Nonhomogenous Poisson processes Definition

More information

Estimation for Nonhomogeneous Poisson Processes from Aggregated Data

Estimation for Nonhomogeneous Poisson Processes from Aggregated Data Estimation for Nonhomogeneous Poisson Processes from Aggregated Data Shane G. Henderson School of Operations Research and Industrial Engineering, Cornell University, Ithaca, NY 14853. November 22, 2002

More information

Nonuniform Random Variate Generation

Nonuniform Random Variate Generation Nonuniform Random Variate Generation 1 Suppose we have a generator of i.i.d. U(0, 1) r.v. s. We want to generate r.v. s from other distributions, such as normal, Weibull, Poisson, etc. Or other random

More information

Let (Ω, F) be a measureable space. A filtration in discrete time is a sequence of. F s F t

Let (Ω, F) be a measureable space. A filtration in discrete time is a sequence of. F s F t 2.2 Filtrations Let (Ω, F) be a measureable space. A filtration in discrete time is a sequence of σ algebras {F t } such that F t F and F t F t+1 for all t = 0, 1,.... In continuous time, the second condition

More information

Arrivals and waiting times

Arrivals and waiting times Chapter 20 Arrivals and waiting times The arrival times of events in a Poisson process will be continuous random variables. In particular, the time between two successive events, say event n 1 and event

More information

Tyler Hofmeister. University of Calgary Mathematical and Computational Finance Laboratory

Tyler Hofmeister. University of Calgary Mathematical and Computational Finance Laboratory JUMP PROCESSES GENERALIZING STOCHASTIC INTEGRALS WITH JUMPS Tyler Hofmeister University of Calgary Mathematical and Computational Finance Laboratory Overview 1. General Method 2. Poisson Processes 3. Diffusion

More information

CHAPTER 6. MODULAR FUNCTIONS 210. Theorem The modular function

CHAPTER 6. MODULAR FUNCTIONS 210. Theorem The modular function CHAPTER 6. MODULAR FUNCTIONS 210 Theorem 6.3.1. The modular function λ(τ) = e 3 e 2 e 1 e 2 is a one-one conformal mapping λ : Ω H. Moreover, the mapping extends continuously to the boundary of Ω so that

More information

Estimating and Simulating Nonhomogeneous Poisson Processes

Estimating and Simulating Nonhomogeneous Poisson Processes Estimating and Simulating Nonhomogeneous Poisson Processes Larry Leemis Department of Mathematics The College of William & Mary Williamsburg, VA 2387 8795 USA 757 22 234 E-mail: leemis@math.wm.edu May

More information

errors every 1 hour unless he falls asleep, in which case he just reports the total errors

errors every 1 hour unless he falls asleep, in which case he just reports the total errors I. First Definition of a Poisson Process A. Definition: Poisson process A Poisson Process {X(t), t 0} with intensity λ > 0 is a counting process with the following properties. INDEPENDENT INCREMENTS. For

More information

6. Bernoulli Trials and the Poisson Process

6. Bernoulli Trials and the Poisson Process 1 of 5 7/16/2009 7:09 AM Virtual Laboratories > 14. The Poisson Process > 1 2 3 4 5 6 7 6. Bernoulli Trials and the Poisson Process Basic Comparison In some sense, the Poisson process is a continuous time

More information

Stochastic Structural Dynamics Prof. Dr. C. S. Manohar Department of Civil Engineering Indian Institute of Science, Bangalore

Stochastic Structural Dynamics Prof. Dr. C. S. Manohar Department of Civil Engineering Indian Institute of Science, Bangalore Stochastic Structural Dynamics Prof. Dr. C. S. Manohar Department of Civil Engineering Indian Institute of Science, Bangalore Lecture No. # 33 Probabilistic methods in earthquake engineering-2 So, we have

More information

Section 4.3: Continuous Data Histograms

Section 4.3: Continuous Data Histograms Section 4.3: Continuous Data Histograms Discrete-Event Simulation: A First Course c 2006 Pearson Ed., Inc. 0-13-142917-5 Discrete-Event Simulation: A First Course Section 4.3: Continuous Data Histograms

More information

ec1 e-companion to Liu and Whitt: Stabilizing Performance

ec1 e-companion to Liu and Whitt: Stabilizing Performance ec1 This page is intentionally blank. Proper e-companion title page, with INFORMS branding and exact metadata of the main paper, will be produced by the INFORMS office when the issue is being assembled.

More information

Section 7.3: Continuous RV Applications

Section 7.3: Continuous RV Applications Section 7.3: Continuous RV Applications Discrete-Event Simulation: A First Course c 2006 Pearson Ed., Inc. 0-13-142917-5 Discrete-Event Simulation: A First Course Section 7.3: Continuous RV Applications

More information

RENEWAL PROCESSES AND POISSON PROCESSES

RENEWAL PROCESSES AND POISSON PROCESSES 1 RENEWAL PROCESSES AND POISSON PROCESSES Andrea Bobbio Anno Accademico 1997-1998 Renewal and Poisson Processes 2 Renewal Processes A renewal process is a point process characterized by the fact that the

More information

Simulation and Calibration of a Fully Bayesian Marked Multidimensional Hawkes Process with Dissimilar Decays

Simulation and Calibration of a Fully Bayesian Marked Multidimensional Hawkes Process with Dissimilar Decays Simulation and Calibration of a Fully Bayesian Marked Multidimensional Hawkes Process with Dissimilar Decays Kar Wai Lim, Young Lee, Leif Hanlen, Hongbiao Zhao Australian National University Data61/CSIRO

More information

Online Supplement to Are Call Center and Hospital Arrivals Well Modeled by Nonhomogeneous Poisson Processes?

Online Supplement to Are Call Center and Hospital Arrivals Well Modeled by Nonhomogeneous Poisson Processes? Online Supplement to Are Call Center and Hospital Arrivals Well Modeled by Nonhomogeneous Poisson Processes? Song-Hee Kim and Ward Whitt Industrial Engineering and Operations Research Columbia University

More information

EDRP lecture 7. Poisson process. Pawe J. Szab owski

EDRP lecture 7. Poisson process. Pawe J. Szab owski EDRP lecture 7. Poisson process. Pawe J. Szab owski 2007 Counting process Random process fn t ; t 0g is called a counting process, if N t is equal total number of events that have happened up to moment

More information

k=1 = e λ λ k λk 1 k! (k + 1)! = λ. k=0

k=1 = e λ λ k λk 1 k! (k + 1)! = λ. k=0 11. Poisson process. Poissonian White Boise. Telegraphic signal 11.1. Poisson process. First, recall a definition of Poisson random variable π. A random random variable π, valued in the set {, 1,, }, is

More information

The problems that follow illustrate the methods covered in class. They are typical of the types of problems that will be on the tests.

The problems that follow illustrate the methods covered in class. They are typical of the types of problems that will be on the tests. NUMERICAL ANALYSIS PRACTICE PROBLEMS JAMES KEESLING The problems that follow illustrate the methods covered in class. They are typical of the types of problems that will be on the tests.. Solving Equations

More information

Birth-Death Processes

Birth-Death Processes Birth-Death Processes Birth-Death Processes: Transient Solution Poisson Process: State Distribution Poisson Process: Inter-arrival Times Dr Conor McArdle EE414 - Birth-Death Processes 1/17 Birth-Death

More information

Lecture 7. Poisson and lifetime processes in risk analysis

Lecture 7. Poisson and lifetime processes in risk analysis Lecture 7. Poisson and lifetime processes in risk analysis Jesper Rydén Department of Mathematics, Uppsala University jesper.ryden@math.uu.se Statistical Risk Analysis Spring 2014 Example: Life times of

More information

Chapter 9: Forecasting

Chapter 9: Forecasting Chapter 9: Forecasting One of the critical goals of time series analysis is to forecast (predict) the values of the time series at times in the future. When forecasting, we ideally should evaluate the

More information

Optional Stopping Theorem Let X be a martingale and T be a stopping time such

Optional Stopping Theorem Let X be a martingale and T be a stopping time such Plan Counting, Renewal, and Point Processes 0. Finish FDR Example 1. The Basic Renewal Process 2. The Poisson Process Revisited 3. Variants and Extensions 4. Point Processes Reading: G&S: 7.1 7.3, 7.10

More information

S1. Proofs of the Key Properties of CIATA-Ph

S1. Proofs of the Key Properties of CIATA-Ph Article submitted to INFORMS Journal on Computing; manuscript no. (Please, provide the mansucript number!) S-1 Online Supplement to Modeling and Simulation of Nonstationary and Non-Poisson Processes by

More information

A stochastic representation for the Poisson-Vlasov equation

A stochastic representation for the Poisson-Vlasov equation A stochastic representation for the Poisson-Vlasov equation R. Vilela Mendes and F. Cipriano 2 Centro de Matemática e Aplicações and Centro de Fusão Nuclear, Lisbon 2 Departamento de Matemática, Universidade

More information

Exponential Distribution and Poisson Process

Exponential Distribution and Poisson Process Exponential Distribution and Poisson Process Stochastic Processes - Lecture Notes Fatih Cavdur to accompany Introduction to Probability Models by Sheldon M. Ross Fall 215 Outline Introduction Exponential

More information

µ X (A) = P ( X 1 (A) )

µ X (A) = P ( X 1 (A) ) 1 STOCHASTIC PROCESSES This appendix provides a very basic introduction to the language of probability theory and stochastic processes. We assume the reader is familiar with the general measure and integration

More information

POISSON PROCESSES 1. THE LAW OF SMALL NUMBERS

POISSON PROCESSES 1. THE LAW OF SMALL NUMBERS POISSON PROCESSES 1. THE LAW OF SMALL NUMBERS 1.1. The Rutherford-Chadwick-Ellis Experiment. About 90 years ago Ernest Rutherford and his collaborators at the Cavendish Laboratory in Cambridge conducted

More information

1 Poisson processes, and Compound (batch) Poisson processes

1 Poisson processes, and Compound (batch) Poisson processes Copyright c 2007 by Karl Sigman 1 Poisson processes, and Compound (batch) Poisson processes 1.1 Point Processes Definition 1.1 A simple point process ψ = {t n : n 1} is a sequence of strictly increasing

More information

MATH1013 Calculus I. Introduction to Functions 1

MATH1013 Calculus I. Introduction to Functions 1 MATH1013 Calculus I Introduction to Functions 1 Edmund Y. M. Chiang Department of Mathematics Hong Kong University of Science & Technology May 9, 2013 Integration I (Chapter 4) 2013 1 Based on Briggs,

More information

Nonparametric estimation and variate generation for a nonhomogeneous Poisson process from event count data

Nonparametric estimation and variate generation for a nonhomogeneous Poisson process from event count data IIE Transactions (2004) 36, 1155 1160 Copyright C IIE ISSN: 0740-817X print / 1545-8830 online DOI: 10.1080/07408170490507693 TECHNICAL NOTE Nonparametric estimation and variate generation for a nonhomogeneous

More information

Timevarying VARs. Wouter J. Den Haan London School of Economics. c Wouter J. Den Haan

Timevarying VARs. Wouter J. Den Haan London School of Economics. c Wouter J. Den Haan Timevarying VARs Wouter J. Den Haan London School of Economics c Wouter J. Den Haan Time-Varying VARs Gibbs-Sampler general idea probit regression application (Inverted Wishart distribution Drawing from

More information

Liquidation in Limit Order Books. LOBs with Controlled Intensity

Liquidation in Limit Order Books. LOBs with Controlled Intensity Limit Order Book Model Power-Law Intensity Law Exponential Decay Order Books Extensions Liquidation in Limit Order Books with Controlled Intensity Erhan and Mike Ludkovski University of Michigan and UCSB

More information

CHAPTER 3 Further properties of splines and B-splines

CHAPTER 3 Further properties of splines and B-splines CHAPTER 3 Further properties of splines and B-splines In Chapter 2 we established some of the most elementary properties of B-splines. In this chapter our focus is on the question What kind of functions

More information

AT&T Bell Laboratories. May 21, Revision: January 27, (This paper has been submitted to Operations Research)

AT&T Bell Laboratories. May 21, Revision: January 27, (This paper has been submitted to Operations Research) NUMERICAL SOLUTION OF PIECEWISE-STATIONARY M t / G t / 1 QUEUES by Gagan L. Choudhury, 1 David M. Lucantoni 2 and Ward Whitt 3 AT&T Bell Laboratories May 21, 1993 Revision: January 27, 1995 (This paper

More information

Solution of ODEs using Laplace Transforms. Process Dynamics and Control

Solution of ODEs using Laplace Transforms. Process Dynamics and Control Solution of ODEs using Laplace Transforms Process Dynamics and Control 1 Linear ODEs For linear ODEs, we can solve without integrating by using Laplace transforms Integrate out time and transform to Laplace

More information

Solutions For Stochastic Process Final Exam

Solutions For Stochastic Process Final Exam Solutions For Stochastic Process Final Exam (a) λ BMW = 20 0% = 2 X BMW Poisson(2) Let N t be the number of BMWs which have passes during [0, t] Then the probability in question is P (N ) = P (N = 0) =

More information

ESTIMATING WAITING TIMES WITH THE TIME-VARYING LITTLE S LAW

ESTIMATING WAITING TIMES WITH THE TIME-VARYING LITTLE S LAW ESTIMATING WAITING TIMES WITH THE TIME-VARYING LITTLE S LAW Song-Hee Kim and Ward Whitt Industrial Engineering and Operations Research Columbia University New York, NY, 10027 {sk3116, ww2040}@columbia.edu

More information

Part I Stochastic variables and Markov chains

Part I Stochastic variables and Markov chains Part I Stochastic variables and Markov chains Random variables describe the behaviour of a phenomenon independent of any specific sample space Distribution function (cdf, cumulative distribution function)

More information

Ornstein-Uhlenbeck processes for geophysical data analysis

Ornstein-Uhlenbeck processes for geophysical data analysis Ornstein-Uhlenbeck processes for geophysical data analysis Semere Habtemicael Department of Mathematics North Dakota State University May 19, 2014 Outline 1 Introduction 2 Model 3 Characteristic function

More information

Stochastic Proceses Poisson Process

Stochastic Proceses Poisson Process Stochastic Proceses 2014 1. Poisson Process Giovanni Pistone Revised June 9, 2014 1 / 31 Plan 1. Poisson Process (Formal construction) 2. Wiener Process (Formal construction) 3. Infinitely divisible distributions

More information

1 Inverse Transform Method and some alternative algorithms

1 Inverse Transform Method and some alternative algorithms Copyright c 2016 by Karl Sigman 1 Inverse Transform Method and some alternative algorithms Assuming our computer can hand us, upon demand, iid copies of rvs that are uniformly distributed on (0, 1), it

More information

IEOR 3106: Second Midterm Exam, Chapters 5-6, November 7, 2013

IEOR 3106: Second Midterm Exam, Chapters 5-6, November 7, 2013 IEOR 316: Second Midterm Exam, Chapters 5-6, November 7, 13 SOLUTIONS Honor Code: Students are expected to behave honorably, following the accepted code of academic honesty. You may keep the exam itself.

More information

Proceedings of the 2014 Winter Simulation Conference A. Tolk, S. D. Diallo, I. O. Ryzhov, L. Yilmaz, S. Buckley, and J. A. Miller, eds.

Proceedings of the 2014 Winter Simulation Conference A. Tolk, S. D. Diallo, I. O. Ryzhov, L. Yilmaz, S. Buckley, and J. A. Miller, eds. Proceedings of the 2014 Winter Simulation Conference A. Tolk, S. D. Diallo, I. O. Ryzhov, L. Yilmaz, S. Buckley, and J. A. Miller, eds. A Continuous Piecewise-Linear NHPP Intensity Function Estimator David

More information

Lecture 4a: Continuous-Time Markov Chain Models

Lecture 4a: Continuous-Time Markov Chain Models Lecture 4a: Continuous-Time Markov Chain Models Continuous-time Markov chains are stochastic processes whose time is continuous, t [0, ), but the random variables are discrete. Prominent examples of continuous-time

More information

Homing and Synchronizing Sequences

Homing and Synchronizing Sequences Homing and Synchronizing Sequences Sven Sandberg Information Technology Department Uppsala University Sweden 1 Outline 1. Motivations 2. Definitions and Examples 3. Algorithms (a) Current State Uncertainty

More information

Qualifying Exam CS 661: System Simulation Summer 2013 Prof. Marvin K. Nakayama

Qualifying Exam CS 661: System Simulation Summer 2013 Prof. Marvin K. Nakayama Qualifying Exam CS 661: System Simulation Summer 2013 Prof. Marvin K. Nakayama Instructions This exam has 7 pages in total, numbered 1 to 7. Make sure your exam has all the pages. This exam will be 2 hours

More information

The story of the film so far... Mathematics for Informatics 4a. Continuous-time Markov processes. Counting processes

The story of the film so far... Mathematics for Informatics 4a. Continuous-time Markov processes. Counting processes The story of the film so far... Mathematics for Informatics 4a José Figueroa-O Farrill Lecture 19 28 March 2012 We have been studying stochastic processes; i.e., systems whose time evolution has an element

More information

Lecture 10: Semi-Markov Type Processes

Lecture 10: Semi-Markov Type Processes Lecture 1: Semi-Markov Type Processes 1. Semi-Markov processes (SMP) 1.1 Definition of SMP 1.2 Transition probabilities for SMP 1.3 Hitting times and semi-markov renewal equations 2. Processes with semi-markov

More information

CIMPA SCHOOL, 2007 Jump Processes and Applications to Finance Monique Jeanblanc

CIMPA SCHOOL, 2007 Jump Processes and Applications to Finance Monique Jeanblanc CIMPA SCHOOL, 27 Jump Processes and Applications to Finance Monique Jeanblanc 1 Jump Processes I. Poisson Processes II. Lévy Processes III. Jump-Diffusion Processes IV. Point Processes 2 I. Poisson Processes

More information

1 Piecewise Cubic Interpolation

1 Piecewise Cubic Interpolation Piecewise Cubic Interpolation Typically the problem with piecewise linear interpolation is the interpolant is not differentiable as the interpolation points (it has a kinks at every interpolation point)

More information

Missouri Educator Gateway Assessments DRAFT

Missouri Educator Gateway Assessments DRAFT Missouri Educator Gateway Assessments FIELD 023: MATHEMATICS January 2014 DRAFT Content Domain Range of Competencies Approximate Percentage of Test Score I. Numbers and Quantity 0001 0002 14% II. Patterns,

More information

Poisson Processes. Particles arriving over time at a particle detector. Several ways to describe most common model.

Poisson Processes. Particles arriving over time at a particle detector. Several ways to describe most common model. Poisson Processes Particles arriving over time at a particle detector. Several ways to describe most common model. Approach 1: a) numbers of particles arriving in an interval has Poisson distribution,

More information

Random processes and probability distributions. Phys 420/580 Lecture 20

Random processes and probability distributions. Phys 420/580 Lecture 20 Random processes and probability distributions Phys 420/580 Lecture 20 Random processes Many physical processes are random in character: e.g., nuclear decay (Poisson distributed event count) P (k, τ) =

More information

Lecture 9 Approximations of Laplace s Equation, Finite Element Method. Mathématiques appliquées (MATH0504-1) B. Dewals, C.

Lecture 9 Approximations of Laplace s Equation, Finite Element Method. Mathématiques appliquées (MATH0504-1) B. Dewals, C. Lecture 9 Approximations of Laplace s Equation, Finite Element Method Mathématiques appliquées (MATH54-1) B. Dewals, C. Geuzaine V1.2 23/11/218 1 Learning objectives of this lecture Apply the finite difference

More information

Slides 8: Statistical Models in Simulation

Slides 8: Statistical Models in Simulation Slides 8: Statistical Models in Simulation Purpose and Overview The world the model-builder sees is probabilistic rather than deterministic: Some statistical model might well describe the variations. An

More information

Advances in processor, memory, and communication technologies

Advances in processor, memory, and communication technologies Discrete and continuous min-energy schedules for variable voltage processors Minming Li, Andrew C. Yao, and Frances F. Yao Department of Computer Sciences and Technology and Center for Advanced Study,

More information

Random Processes. DS GA 1002 Probability and Statistics for Data Science.

Random Processes. DS GA 1002 Probability and Statistics for Data Science. Random Processes DS GA 1002 Probability and Statistics for Data Science http://www.cims.nyu.edu/~cfgranda/pages/dsga1002_fall17 Carlos Fernandez-Granda Aim Modeling quantities that evolve in time (or space)

More information

Chapter 1: Preliminaries and Error Analysis

Chapter 1: Preliminaries and Error Analysis Chapter 1: Error Analysis Peter W. White white@tarleton.edu Department of Tarleton State University Summer 2015 / Numerical Analysis Overview We All Remember Calculus Derivatives: limit definition, sum

More information

Random Process. Random Process. Random Process. Introduction to Random Processes

Random Process. Random Process. Random Process. Introduction to Random Processes Random Process A random variable is a function X(e) that maps the set of experiment outcomes to the set of numbers. A random process is a rule that maps every outcome e of an experiment to a function X(t,

More information

Introduction: exponential family, conjugacy, and sufficiency (9/2/13)

Introduction: exponential family, conjugacy, and sufficiency (9/2/13) STA56: Probabilistic machine learning Introduction: exponential family, conjugacy, and sufficiency 9/2/3 Lecturer: Barbara Engelhardt Scribes: Melissa Dalis, Abhinandan Nath, Abhishek Dubey, Xin Zhou Review

More information

Author's personal copy

Author's personal copy Queueing Syst (215) 81:341 378 DOI 1.17/s11134-15-9462-x Stabilizing performance in a single-server queue with time-varying arrival rate Ward Whitt 1 Received: 5 July 214 / Revised: 7 May 215 / Published

More information

STAT331 Lebesgue-Stieltjes Integrals, Martingales, Counting Processes

STAT331 Lebesgue-Stieltjes Integrals, Martingales, Counting Processes STAT331 Lebesgue-Stieltjes Integrals, Martingales, Counting Processes This section introduces Lebesgue-Stieltjes integrals, and defines two important stochastic processes: a martingale process and a counting

More information

Notes on Measure Theory and Markov Processes

Notes on Measure Theory and Markov Processes Notes on Measure Theory and Markov Processes Diego Daruich March 28, 2014 1 Preliminaries 1.1 Motivation The objective of these notes will be to develop tools from measure theory and probability to allow

More information

MATHEMATICS (MIDDLE GRADES AND EARLY SECONDARY)

MATHEMATICS (MIDDLE GRADES AND EARLY SECONDARY) MATHEMATICS (MIDDLE GRADES AND EARLY SECONDARY) l. Content Domain Mathematical Processes and Number Sense Range of Competencies Approximate Percentage of Test Score 0001 0003 24% ll. Patterns, Algebra,

More information

Lecture 1: Introduction to Sublinear Algorithms

Lecture 1: Introduction to Sublinear Algorithms CSE 522: Sublinear (and Streaming) Algorithms Spring 2014 Lecture 1: Introduction to Sublinear Algorithms March 31, 2014 Lecturer: Paul Beame Scribe: Paul Beame Too much data, too little time, space for

More information

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.830J / 6.780J / ESD.63J Control of Processes (SMA 6303) Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/term

More information

System Simulation Part II: Mathematical and Statistical Models Chapter 5: Statistical Models

System Simulation Part II: Mathematical and Statistical Models Chapter 5: Statistical Models System Simulation Part II: Mathematical and Statistical Models Chapter 5: Statistical Models Fatih Cavdur fatihcavdur@uludag.edu.tr March 20, 2012 Introduction Introduction The world of the model-builder

More information

Northwestern University Department of Electrical Engineering and Computer Science

Northwestern University Department of Electrical Engineering and Computer Science Northwestern University Department of Electrical Engineering and Computer Science EECS 454: Modeling and Analysis of Communication Networks Spring 2008 Probability Review As discussed in Lecture 1, probability

More information

Computer Science, Informatik 4 Communication and Distributed Systems. Simulation. Discrete-Event System Simulation. Dr.

Computer Science, Informatik 4 Communication and Distributed Systems. Simulation. Discrete-Event System Simulation. Dr. Simulation Discrete-Event System Simulation Chapter 0 Output Analysis for a Single Model Purpose Objective: Estimate system performance via simulation If θ is the system performance, the precision of the

More information

Continuous-time Markov Chains

Continuous-time Markov Chains Continuous-time Markov Chains Gonzalo Mateos Dept. of ECE and Goergen Institute for Data Science University of Rochester gmateosb@ece.rochester.edu http://www.ece.rochester.edu/~gmateosb/ October 23, 2017

More information

Statistical Quality Control IE 3255 Spring 2005 Solution HomeWork #2

Statistical Quality Control IE 3255 Spring 2005 Solution HomeWork #2 Statistical Quality Control IE 3255 Spring 25 Solution HomeWork #2. (a)stem-and-leaf, No of samples, N = 8 Leaf Unit =. Stem Leaf Frequency 2+ 3-3+ 4-4+ 5-5+ - + 7-8 334 77978 33333242344 585958988995

More information

Stochastic Renewal Processes in Structural Reliability Analysis:

Stochastic Renewal Processes in Structural Reliability Analysis: Stochastic Renewal Processes in Structural Reliability Analysis: An Overview of Models and Applications Professor and Industrial Research Chair Department of Civil and Environmental Engineering University

More information

Point Process Control

Point Process Control Point Process Control The following note is based on Chapters I, II and VII in Brémaud s book Point Processes and Queues (1981). 1 Basic Definitions Consider some probability space (Ω, F, P). A real-valued

More information

NUMERICAL ANALYSIS PROBLEMS

NUMERICAL ANALYSIS PROBLEMS NUMERICAL ANALYSIS PROBLEMS JAMES KEESLING The problems that follow illustrate the methods covered in class. They are typical of the types of problems that will be on the tests.. Solving Equations Problem.

More information

Modern Discrete Probability Branching processes

Modern Discrete Probability Branching processes Modern Discrete Probability IV - Branching processes Review Sébastien Roch UW Madison Mathematics November 15, 2014 1 Basic definitions 2 3 4 Galton-Watson branching processes I Definition A Galton-Watson

More information

Poisson Processes and Poisson Distributions. Poisson Process - Deals with the number of occurrences per interval.

Poisson Processes and Poisson Distributions. Poisson Process - Deals with the number of occurrences per interval. Poisson Processes and Poisson Distributions Poisson Process - Deals with the number of occurrences per interval. Eamples Number of phone calls per minute Number of cars arriving at a toll both per hour

More information

STAT Sample Problem: General Asymptotic Results

STAT Sample Problem: General Asymptotic Results STAT331 1-Sample Problem: General Asymptotic Results In this unit we will consider the 1-sample problem and prove the consistency and asymptotic normality of the Nelson-Aalen estimator of the cumulative

More information

FIBONACCI NUMBERS AND DECIMATION OF BINARY SEQUENCES

FIBONACCI NUMBERS AND DECIMATION OF BINARY SEQUENCES FIBONACCI NUMBERS AND DECIMATION OF BINARY SEQUENCES Jovan Dj. Golić Security Innovation, Telecom Italia Via Reiss Romoli 274, 10148 Turin, Italy (Submitted August 2004-Final Revision April 200) ABSTRACT

More information

ECE7850 Lecture 7. Discrete Time Optimal Control and Dynamic Programming

ECE7850 Lecture 7. Discrete Time Optimal Control and Dynamic Programming ECE7850 Lecture 7 Discrete Time Optimal Control and Dynamic Programming Discrete Time Optimal control Problems Short Introduction to Dynamic Programming Connection to Stabilization Problems 1 DT nonlinear

More information

Replenishment Planning for Stochastic Inventory System with Shortage Cost

Replenishment Planning for Stochastic Inventory System with Shortage Cost Replenishment Planning for Stochastic Inventory System with Shortage Cost Roberto Rossi UCC, Ireland S. Armagan Tarim HU, Turkey Brahim Hnich IUE, Turkey Steven Prestwich UCC, Ireland Inventory Control

More information

Chapter 2. Poisson Processes. Prof. Shun-Ren Yang Department of Computer Science, National Tsing Hua University, Taiwan

Chapter 2. Poisson Processes. Prof. Shun-Ren Yang Department of Computer Science, National Tsing Hua University, Taiwan Chapter 2. Poisson Processes Prof. Shun-Ren Yang Department of Computer Science, National Tsing Hua University, Taiwan Outline Introduction to Poisson Processes Definition of arrival process Definition

More information

ECE 313 Probability with Engineering Applications Fall 2000

ECE 313 Probability with Engineering Applications Fall 2000 Exponential random variables Exponential random variables arise in studies of waiting times, service times, etc X is called an exponential random variable with parameter λ if its pdf is given by f(u) =

More information

Modeling and Simulation of Nonstationary Non-Poisson Arrival Processes

Modeling and Simulation of Nonstationary Non-Poisson Arrival Processes Submitted to INFORMS Journal on Computing manuscript (Please, provide the mansucript number!) Authors are encouraged to submit new papers to INFORMS journals by means of a style file template, which includes

More information

Contents. O-minimal geometry. Tobias Kaiser. Universität Passau. 19. Juli O-minimal geometry

Contents. O-minimal geometry. Tobias Kaiser. Universität Passau. 19. Juli O-minimal geometry 19. Juli 2016 1. Axiom of o-minimality 1.1 Semialgebraic sets 2.1 Structures 2.2 O-minimal structures 2. Tameness 2.1 Cell decomposition 2.2 Smoothness 2.3 Stratification 2.4 Triangulation 2.5 Trivialization

More information

STAT 380 Markov Chains

STAT 380 Markov Chains STAT 380 Markov Chains Richard Lockhart Simon Fraser University Spring 2016 Richard Lockhart (Simon Fraser University) STAT 380 Markov Chains Spring 2016 1 / 38 1/41 PoissonProcesses.pdf (#2) Poisson Processes

More information

Range of Competencies

Range of Competencies MATHEMATICS l. Content Domain Range of Competencies Mathematical Processes and Number Sense 0001 0003 19% ll. Patterns, Algebra, and Functions 0004 0007 24% lll. Measurement and Geometry 0008 0010 19%

More information

1 Large Deviations. Korea Lectures June 2017 Joel Spencer Tuesday Lecture III

1 Large Deviations. Korea Lectures June 2017 Joel Spencer Tuesday Lecture III Korea Lectures June 017 Joel Spencer Tuesday Lecture III 1 Large Deviations We analyze how random variables behave asymptotically Initially we consider the sum of random variables that take values of 1

More information

Pruscha: Semiparametric Estimation in Regression Models for Point Processes based on One Realization

Pruscha: Semiparametric Estimation in Regression Models for Point Processes based on One Realization Pruscha: Semiparametric Estimation in Regression Models for Point Processes based on One Realization Sonderforschungsbereich 386, Paper 66 (1997) Online unter: http://epub.ub.uni-muenchen.de/ Projektpartner

More information

An Analysis of the Preemptive Repeat Queueing Discipline

An Analysis of the Preemptive Repeat Queueing Discipline An Analysis of the Preemptive Repeat Queueing Discipline Tony Field August 3, 26 Abstract An analysis of two variants of preemptive repeat or preemptive repeat queueing discipline is presented: one in

More information

WORD: EXAMPLE(S): COUNTEREXAMPLE(S): EXAMPLE(S): COUNTEREXAMPLE(S): WORD: EXAMPLE(S): COUNTEREXAMPLE(S): EXAMPLE(S): COUNTEREXAMPLE(S): WORD:

WORD: EXAMPLE(S): COUNTEREXAMPLE(S): EXAMPLE(S): COUNTEREXAMPLE(S): WORD: EXAMPLE(S): COUNTEREXAMPLE(S): EXAMPLE(S): COUNTEREXAMPLE(S): WORD: Bivariate Data DEFINITION: In statistics, data sets using two variables. Scatter Plot DEFINITION: a bivariate graph with points plotted to show a possible relationship between the two sets of data. Positive

More information

PROBABILITY: LIMIT THEOREMS II, SPRING HOMEWORK PROBLEMS

PROBABILITY: LIMIT THEOREMS II, SPRING HOMEWORK PROBLEMS PROBABILITY: LIMIT THEOREMS II, SPRING 218. HOMEWORK PROBLEMS PROF. YURI BAKHTIN Instructions. You are allowed to work on solutions in groups, but you are required to write up solutions on your own. Please

More information

N.G.Bean, D.A.Green and P.G.Taylor. University of Adelaide. Adelaide. Abstract. process of an MMPP/M/1 queue is not a MAP unless the queue is a

N.G.Bean, D.A.Green and P.G.Taylor. University of Adelaide. Adelaide. Abstract. process of an MMPP/M/1 queue is not a MAP unless the queue is a WHEN IS A MAP POISSON N.G.Bean, D.A.Green and P.G.Taylor Department of Applied Mathematics University of Adelaide Adelaide 55 Abstract In a recent paper, Olivier and Walrand (994) claimed that the departure

More information

A nonparametric monotone maximum likelihood estimator of time trend for repairable systems data

A nonparametric monotone maximum likelihood estimator of time trend for repairable systems data A nonparametric monotone maximum likelihood estimator of time trend for repairable systems data Knut Heggland 1 and Bo H Lindqvist Department of Mathematical Sciences Norwegian University of Science and

More information

PoissonprocessandderivationofBellmanequations

PoissonprocessandderivationofBellmanequations APPENDIX B PoissonprocessandderivationofBellmanequations 1 Poisson process Let us first define the exponential distribution Definition B1 A continuous random variable X is said to have an exponential distribution

More information

Robust Lifetime Measurement in Large- Scale P2P Systems with Non-Stationary Arrivals

Robust Lifetime Measurement in Large- Scale P2P Systems with Non-Stationary Arrivals Robust Lifetime Measurement in Large- Scale P2P Systems with Non-Stationary Arrivals Xiaoming Wang Joint work with Zhongmei Yao, Yueping Zhang, and Dmitri Loguinov Internet Research Lab Computer Science

More information

Stat 512 Homework key 2

Stat 512 Homework key 2 Stat 51 Homework key October 4, 015 REGULAR PROBLEMS 1 Suppose continuous random variable X belongs to the family of all distributions having a linear probability density function (pdf) over the interval

More information

PROBABILITY: LIMIT THEOREMS II, SPRING HOMEWORK PROBLEMS

PROBABILITY: LIMIT THEOREMS II, SPRING HOMEWORK PROBLEMS PROBABILITY: LIMIT THEOREMS II, SPRING 15. HOMEWORK PROBLEMS PROF. YURI BAKHTIN Instructions. You are allowed to work on solutions in groups, but you are required to write up solutions on your own. Please

More information