Questions tagged [stochastic-process]

A stochastic process is a collection of related random variables, often used as a model for a quantity that varies over time or space with some degree of smoothness.

In probability theory, a stochastic process, or sometimes random process (widely used) is a collection of random variables; this is often used to represent the evolution of some random value, or system, over time. This is the probabilistic counterpart to a deterministic process (or deterministic system). Instead of describing a process which can only evolve in one way (as in the case, for example, of solutions of an ordinary differential equation), in a stochastic or random process there is some indeterminacy: even if the initial condition (or starting point) is known, there are several (often infinitely many) directions in which the process may evolve.

In the simple case of discrete time, a stochastic process amounts to a sequence of random variables known as a time series (for example, see Markov chain). Another basic type of a stochastic process is a random field, whose domain is a region of space, in other words, a random function whose arguments are drawn from a range of continuously changing values. One approach to stochastic processes treats them as functions of one or several deterministic arguments (inputs, in most cases regarded as time) whose values (outputs) are random variables: non-deterministic (single) quantities which have certain probability distributions. Random variables corresponding to various times (or points, in the case of random fields) may be completely different. The main requirement is that these different random quantities all have the same type. Type refers to the co-domain of the function. Although the random values of a stochastic process at different times may be independent random variables, in most commonly considered situations they exhibit complicated statistical correlations.

Familiar examples of processes modeled as stochastic time series include stock market and exchange rate fluctuations, signals such as speech, audio and video, medical data such as a patient's EKG, EEG, blood pressure or temperature, and random movement such as Brownian motion or random walks. Examples of random fields include static images, random terrain (landscapes), wind waves or composition variations of a heterogeneous material.

143 questions
0
votes
1 answer

Gillespie Stochastic Simulation in Discrete Time using R

I'm simulating a Stochastic Simulation for Epidemiology. How do I simulate it in a discrete time? I managed to obtain for continuous time using the coding below. library(GillespieSSA) parms <- c(beta=0.591,sigma=1/8,gamma=1/7) x0 <-…
shubha
0
votes
2 answers

does white noise without mean zero do some changes?

again my question is related to white noise ,but with different meaning.let us compare following two code.first function [ x ] = generate(N,m,A3) f1 = 100; f2 = 200; T = 1./f1; t = (0:(N*T/m):(N*T))'; %' wn = rand(length(t),1).*2 - 1; x =…
user466534
0
votes
0 answers

Comparing speed in stochastic processes generated from simulation?

I have an agent-based simulation (using Java-based Repast) that generates a time series in its output for my different treatments. I am measuring performance through time, and at each time tick the performance is the mean of 30 runs (30 samples). In…
amircs
  • 33
  • 1
  • 5
-1
votes
1 answer

Random Sampling from a dataset

I have financial data with values like: "Volume", "Profit/Loss", "Cost", etc Now, it is safe to assume that every record in this data set is a "realization" or outcome of a single random variable, hence we may model this dataset as a set of iid…
user227837
  • 129
  • 1
  • 10
-1
votes
1 answer

Markov chain in R

Suppose we have a ten state system where an observation can enter the system in any one of the ten states with equal probability and move from the given state into a new state also with equal probability (the observation's new state isn't…
-1
votes
4 answers

How can i set an arrival rate instead of defining threads over time (in JMeter)?

I'm trying to simplify the implementation of stochastic performance testing using jmeter. We have done this before, but its takes to much time. The thing is, if i have the amount of concurrent users (based on total visits and elapsed times), i…
-1
votes
2 answers

How can i generate gaussian random process using matlab?

How can i generate Gaussian random process using Matlab with zero mean and unit variance ? Gaussian random variable can be implemented by w=(1/sqrt(2*pi))*exp(-(t.^2)/2); but what about Gaussian random process ?
user2942448
  • 19
  • 1
  • 1
  • 2
-2
votes
1 answer

how to limit the length of a function in R

I want this code to work but length of (t) and the length of w(t) differ so it's blocking all my code. Can I know how both can have the same length. S(t)= S(0)exp(0.06t+0.20w(t)) #(1) with S(0) =20 w(t) = standard Brownian movement …
alison monroe
  • 21
  • 1
  • 1
  • 7
1 2 3
9
10