Questions tagged [white-noise]

White noise is a random process whose "components each have a probability distribution with zero mean and finite variance, and are statistically independent".

White noise is a random process whose "components each have a probability distribution with zero mean and finite variance, and are statistically independent" (Wikipedia). When white noise is distributed like a normal distribution it is called Gaussian white noise.

In statistics and econometrics one often assumes that an observed series of data values is the sum of a series of values generated by a deterministic linear process, depending on certain independent (explanatory) variables, and on a series of random noise values. Statistical model validity of standard time series models often depends on the assumption, and it is routinely assessed (via Ljung-Box, Breusch-Godfrey, ARCH-LM and other tests) in model evaluation.

166 questions
32
votes
2 answers

White Noise in Statistics

I often see the term white noise appearing when reading about different statistical models. I must however admit, that I am not completely sure what this means. It is usually abbreviated as $WN(0,σ^2)$. Does that mean it's normally distributed or…
user13514
  • 421
  • 4
  • 3
31
votes
4 answers

Is the sum of two white noise processes necessarily a white noise?

Let $a_t$ and $b_t$ be white noise processes. Can we say $c_t=a_t+b_t$ is necessarily a white noise process?
Ben Rothwell
  • 411
  • 1
  • 4
  • 7
16
votes
3 answers

How is adding noise to training data equivalent to regularization?

I've noticed that some people argue that adding noise to training data equivalent to regularizing our predictor parameters. How is this the case? Some of the examples listed on SE discussing this topic focus more on e.g. LSTMs and SVMs, but can we…
Ice Tea
  • 315
  • 8
10
votes
2 answers

Formal statistical test for whether a process is a white noise

Is there a formal statistical test to test if process is a white noise?
user333
  • 6,621
  • 17
  • 44
  • 54
9
votes
2 answers

Testing normality and independence of time series residuals

The simplest form of a white noise process is where its observations are uncorrelated. We can check this by applying e.g. a portmanteau test such as Lung - Box or Box - Pierce. The series might be Gaussian white noise where the observations are…
Andreas Zaras
  • 741
  • 11
  • 21
8
votes
2 answers

How to generate uncorrelated white noise sequence in R without using arima.sim?

I want to know how to generate uncorrelated white noise sequence $WN(0,\sigma^2)$ in R **without using ** arima.sim(list(order=c(0,0,0)),200) ? The reason I post this in here instead of stackoverflow is because I feel like this requires…
mynameisJEFF
  • 1,583
  • 4
  • 24
  • 29
8
votes
3 answers

How to prove that the Fourier Transform of white noise is flat?

If we take $X_n$ a series a random vector with its components each having a probability distribution with zero mean and finite variance, and are statistically independent. How do we prove that the power spectrum of $X_n$ is flat?
7
votes
2 answers

Box-Ljung test on white noise series

I generate this data in R: set.seed(111) ds=rnorm(1000) When I perform Box-Ljung test to test the independency: Box.test(ds,type='Ljung',lag=log(length(ds))) it gave me p-value=0.5957, which is reasonable. However, when I perform…
Elaine
  • 153
  • 1
  • 1
  • 6
6
votes
1 answer

Is there a classification of physical measurements according to their statistical distribution?

I am looking for a document or research articles classifying physical or chemical measurements (or perhaps better means of measurement) according to the reference statistical distribution and properties they have. Example of questions studied would…
6
votes
1 answer

Why is it called white noise?

I know, that the white noise is called "white noise", because it comes from physics and has something to do with the spectral decomposition (is that right?) of the white light? I am not familiar with signal theory, so could anyone explain me why it…
Stat Tistician
  • 2,113
  • 4
  • 29
  • 54
6
votes
3 answers

Does white noise imply wide-sense stationary?

White noise has the ACF: $R_{WW}[\kappa] = c_0 \delta [\kappa]$ and zero mean $m_W[\kappa] = 0$. The first and second order moments of a WSS process depend only upon the time difference $\kappa$. With that being said, since $m_W $ is always zero,…
Alon
  • 205
  • 2
  • 6
6
votes
1 answer

Determining whether a Time series is white noise

I have a time series of log-returns of a stock. I want to determine whether the time series is just white noise or if there are some other pattern. How to I use the definition of white noise to make a conclusion?
Sanjay Kapur
  • 61
  • 1
  • 2
6
votes
2 answers

Discrete white noise

I have a binary time series $\{X(n), n= 0,1,2,\cdots\}$, $X(n)\in \{0,1\}$ that can be written as: $$X(n)=S(n)+\epsilon(n)$$ Where $S(n)$ is a random stationary binary signal and $\epsilon(n)$ is a zero-mean binary white noise process (uncorrelated…
Toney Shields
  • 742
  • 4
  • 20
5
votes
1 answer

Are colored noises correlated / uncorrelated?

Let, $x$ be a random variable (r.v) that is white Gaussian, has a flat power spectrum. $y$ can be any colored noise. I think another term for uncorrelated is i.i.d (identically and independently distributed). Colored noises such as pink, brown, and…
5
votes
2 answers

Optimization of an objective function with noise

I want to estimate the parameters that minimize a multivariate function with noise based on realized observations. As a simple example, say I have observed the univariate sample below: The samples were generated from a quadratic function plus…
user2303
  • 433
  • 4
  • 12
1
2 3
11 12