Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Name –

Parigya Jain
Roll No. -
2K18/MC/077

Exercise 1
Aim: Demonstration of Stochastic Process with Discrete Index Set
(a) Discrete State Space (b) Continuous State Space

Theory : A stochastic process is a family of random variables {X(t), t ∈ T} defined on a


given probability space, indexed by parameter t, where t varies over an index set T. The
values assumed byX(t) are called its states, and the set of all possible values forms the
state pace of the process.
Stochastic processes are classified on the basis of the underlying index set T and state
space S. If T = {0,1,2,..}, or T = {0, ±1, ±2,..}, the stochastic process is said to be discrete
parameter process and is usually indicated by {Xn} .The state space is classified as discrete
if it is finite or countable and process is classified as continuous if it consists of an interval,
finite or infinite of the real line.

Result:

(a) Discrete Parameter Stochastic Chain


Eg : No. of People Visiting Housing Society on any Day of January
Code :

x = [1:1:31];
y = 50 +rand ([0 50], 31, 1);
p = scatter (x,y);
xlabel ("ith day of the month");
ylabel ("Visiting Count"); title ("Discrete parameter - Discrete
State Space");
Graph :

Discrete parameter - Discrete State Space

ith day of the month

(b) Discrete Parameter Continuous State


Eg: Time duration of receiving first 50 enquiries in the day of January
Code :

x = [1:1:31];
y = rand(0.1, 0.001) + rand(6, 1);
p = scatter (x,y);
xlabel ("ith day of the month");
ylabel ("Time Duration");
title ("Discrete parameter - Continuous State Space");
Graph :

Discrete parameter - Continuous State Space

ith day of the month

Discussion:

The above graphs clearly shows the discrete nature of the index set. The state space used is
countable in Discrete Parameter Stochastic Chain and the state space is continuous (as the
time has been round off to 2 decimal places ) in Discrete Parameter continuous-state process.

You might also like