Home

Lagoperator

The lag operator, often denoted L (sometimes called the backshift operator), is a linear operator used in discrete-time signal processing and time series analysis. It shifts a sequence one time unit into the past: L{x_t} = x_{t-1}. Applying it k times yields L^k{x_t} = x_{t-k}. The operator is linear, so L(a x_t + b y_t) = a x_{t-1} + b y_t-1. It is typically defined for t large enough that past values exist, with initial conditions supplying the first observations.

Invertibility and related operators: The lag operator is invertible on infinite histories, with its inverse corresponding

Relation to difference and integration: The lag operator is closely tied to the difference operator. The backward

Z-transform and modeling: If X(z) is the Z-transform of x_t, then Z{L x_t} = z^{-1} X(z). Thus L

Applications and examples: The lag operator is used to express autoregressive processes, moving-average terms, and other

to
the
lead
(forward-shift)
operator:
L^{-1}
x_t
=
x_{t+1}.
In
practice,
one
often
uses
L^−k
to
denote
advancing
the
series,
depending
on
conventions
for
boundary
conditions.
difference
is
∇
=
1
−
L,
so
∇
x_t
=
x_t
−
x_{t-1}.
This
links
shifting
to
differencing,
a
common
step
in
making
a
time
series
stationary
or
in
measuring
changes.
introduces
a
delay
of
one
sample
in
the
Z-domain,
and
L^k
a
delay
of
k
samples.
This
facilitates
compact
notation
in
linear
difference
equations
and
ARMA
models,
written
as
φ(L)
x_t
=
θ(L)
ε_t,
where
φ
and
θ
are
polynomials
in
L.
time-shifted
relationships
succinctly.
For
example,
an
AR(2)
model
can
be
written
(1
−
φ1
L
−
φ2
L^2)
x_t
=
ε_t,
encapsulating
delays
up
to
two
steps.