7

In many physical applications, the Heaviside step fuction is defined as $$H(x) = \left\{\begin{eqnarray} 1, \quad x>0 \\ 0, \quad x<0 \end{eqnarray}\right.$$ The value $H(0)$ is left undefined. Is there a physically prefered value of $H(0)$ or does it depend on the problem at hand?

For example, due to relation $H'(x) = \delta(x)$, it would be nice to have $H(0)=\frac{1}{2}$ if we think of $\delta(x)$ as an even function. However, when considering signal processing, we would like our functions to be (left/right) continuous at $x=0$.

Is there a way out of this arbitrariness?

3 Answers3

13

Continuous Fourier analysis, which contains both the Fourier transform and the Fourier series, and which is used in e.g. signal processing, naturally picks the average value of the left and right limits, cf. the Dini-Dirichlet criterion. For the Heaviside step function, this means that

$$ H(0)~=~\frac{1}{2} \left(\lim_{x\to 0^-} H(x)+ \lim_{x\to 0^+} H(x)\right) ~=~\color{red}{\frac{1}{2}}.\tag{1}$$

The Fourier transform of the Heaviside step function $H(x)$ is the distribution

$$\widehat{H}(k)~=~\int_{\mathbb{R}}\! dx e^{-ikx} H(x) ~=~\frac{-i}{k-i0^+},\tag{2} $$

or conversely

$$ H(x)~=~ \int_{\mathbb{R}}\! \frac{dk}{2\pi} e^{ikx} \widehat{H}(k) ~=~ \int_{\mathbb{R}}\! \frac{dk}{2\pi i} \frac{e^{ikx}}{k-i0^+}.\tag{3} $$

As a check, setting $x=0$ in eq. (3) yields precisely eq. (1),

$$ H(x=0) ~\stackrel{(3)}{=}~\int_{\mathbb{R}}\!\frac{dk}{2\pi i} \frac{1}{k-i0^+}~\stackrel{(5)}{=}~ \int_{\mathbb{R}}\! \frac{dk}{2\pi i}\left( P\frac{1}{k} + i\pi\delta(k)\right) ~=~\color{red}{\frac{1}{2}}, \tag{4} $$

cf. the Sokhotski–Plemelj formula

$$ \frac{1}{k-i0^+}~=~P\frac{1}{k} +i\pi\delta(k). \tag{5}$$

Qmechanic
  • 220,844
0

For analytical calculations, you just can't use $H(0)$ because it is not defined there. Also, you don't need it.

For numerical calculations, situations where a more continuous function might be of advantage; in physics, people often use the Fermi-Dirac distribution (which converges to a Heaviside function for $T=0$; you could call it a Heaviside sequence, analogous to a Delta sequence), also for situations which have no connection with statistical physics. In this case, you would also define $H(0)=1/2$.

There are other sequences/approximations at Wikipedia. I think that they all define $H(0)=1/2$.

zonksoft
  • 1,805
0

You can take the Heaviside function $H(x)$ as the point-wise limit of a sequence of continuous functions. One possibility is $$ \frac{1}{2} + \frac{1}{\pi} \tan^{-1}(ax+b) $$

and let $a \to \infty$. For any $a$, the value at $x=0$ is always $\frac{1}{2} + \frac{1}{\pi} \tan^{-1}(b)$, and so the point-wise limit is also the same value. But $b$ is not specified and can be anything, and therefore it may be problematic to forcibly assign a value to $H(0)$.

Bio
  • 944