\(u\) všade označuje biely šum.

Príklad 1. Proces \(x_t = u_t - u_{t-4}\)

u <- rnorm(1000)
x <- u[5:1000]-u[1:996]
plot(x, type="l")

acf(x)

Príklad 2. Proces \(x_t = u_t \times u_{t-4}\)

x <- u[5:1000]*u[1:996]
plot(x, type="l")

var(x)
## [1] 0.9128407
acf(x)