BVH: MC: Author needs to add figure labels

Import standard modules:


In [ ]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from IPython.display import HTML 
HTML('../style/course.css') #apply general CSS

Import section specific modules:


In [ ]:
pass

2.2. Important functions

We introduce a set of functions that will turn up frequently in this book or have an important status in interferometry and signal processing in general. A fundamental knowledge of basic functions in calculus is a prerequisite. In particular, we assume that the trigonometric functions⤴ $\cos()$, $\sin()$, $\tan()$, their inverses $\arcsin()$, $\arccos()$, $\arctan()$, as well as the exponential function⤴ $e^x = \exp(x)$ and its inverse, the natural logarithm $\ln{x}$, are well known.

2.2.1. Gaussian function

A Gaussian function, also refered to as a bell curve, is defined as

$$ f(x) = a e^{-\frac{(x-\mu)^2}{2\sigma^2}}, $$

where $a$, is the amplitude, $\mu$ is the mean and $\sigma$ is the standard deviation.


In [ ]:
def gaussian(x, a, mu, sig):
    return a*np.exp(-np.power(x - mu, 2.) / (2 * np.power(sig, 2.)))

def plotgaussian(a, mu, sigma):

    # Plotting range
    xrange = [mu-4.*sigma,mu+4.*sigma]

    # Create Gaussian
    x = np.linspace(xrange[0], xrange[1], 900)
    y = gaussian(x, a, mu, sigma)

    # To illustrate the meaning of sigma calculate mu+sigma and mu-sigma
    siglleft = mu-sigma
    siglright = mu+sigma
    sigh = gaussian(mu+sigma, a, mu, sigma)

    # To plot FWHM arrows calculate mu+HWHM and mu-HWHM
    hwhmleft = -np.sqrt(2.*np.log(2.))*sigma+mu
    hwhmright = np.sqrt(2.*np.log(2.))*sigma+mu
    hm = a/2.

    # Start the plot, create a figure instance and a subplot
    fig = plt.figure()
    ax  = fig.add_subplot(111)

    # Axis ranges
    ax.axis([mu-4.*sigma, mu+4.*sigma, -a*0.1, a*1.1])

    # Plot a grid
    ax.grid(True)

    # Insert lines at x=0 and y=0
    ax.axhline(0.,linewidth=1, color = 'k', linestyle='dashed')
    ax.axvline(0.,linewidth=1, color = 'k', linestyle='dashed')

    # Draw a line to mark the position a
    ax.plot([mu,mu],[0.,a], 'g-')

    # Draw lines for sigma area
    ax.plot([siglleft, siglleft],[0.,sigh], 'b--')
    ax.plot([siglright, siglright],[0.,sigh], 'b--')

    # Draw line to show amplitude
    ax.plot([mu, mu+2*sigma],[a,a], 'm--')


    # Plot the function
    ax.plot(x,y, 'k-')

    # Show amplitude
    plt.annotate(s='', xy=(mu+2*sigma,0.), xytext=(mu+2*sigma,a), \
                 arrowprops=dict(color = 'magenta', arrowstyle='<->'))
    ax.text(mu+2*sigma+sigma/10., a/2, '$a$', fontsize = 12, horizontalalignment = 'left', \
            verticalalignment = 'center', color = 'magenta')

    # Overplot FHHM
    plt.annotate(s='', xy=(hwhmleft,hm), xytext=(hwhmright,hm), \
                 arrowprops=dict(color = 'red', arrowstyle='<->'))
    ax.text(mu, hm, 'FWHM', fontsize = 12, horizontalalignment = 'center', \
            verticalalignment = 'top', color = 'red')

    # Overplot sigma
    plt.annotate(s='', xy=(siglleft,sigh), xytext=(mu,sigh), arrowprops=dict(color = 'blue', arrowstyle='<->'))
    ax.text((siglleft+mu)/2, sigh, '$\sigma$', fontsize = 12, \
            horizontalalignment = 'center', verticalalignment = 'top', color = 'blue')
    plt.annotate(s='', xy=(siglright,sigh), xytext=(mu,sigh), arrowprops=dict(color = 'blue', arrowstyle='<->'))
    ax.text((siglright+mu)/2, sigh, '$\sigma$', fontsize = 12, \
            horizontalalignment = 'center', verticalalignment = 'top', color = 'blue')

    # Mark position of mu
    ax.text(mu, 0., '$\mu$', fontsize = 12, \
            horizontalalignment = 'center', verticalalignment = 'top', color = 'green')
    
    #Formula
    ax.text(mu-3.8*sigma, a/2, r'$a e^{-\frac{(x-\mu)^2}{2\sigma^2}}$', fontsize = 20, \
            horizontalalignment = 'left', verticalalignment = 'top', color = 'black')

    plt.title("Gaussian", fontsize=14,color='black')
    
plotgaussian(2., 1., 1.)

Figure 2.2.1:

Its Full Width at Half Maximum ($FWHM$), the total width between the two points where the Gaussian function reaches half of its peak value, can be calculated from its standard deviation $\sigma$. For simplicity consider a Gaussian function with mean $\mu$=0, then we have

$$ \begin{align} a e^{-\frac{x^2}{2\,\sigma^2}} &= \frac{a}{2} &\Leftrightarrow\\ x_{1,2} &= \pm \sqrt{2\ln(2)}\,\sigma&\Rightarrow\\ FWHM &= 2 \sqrt{2\ln(2)}\,\sigma \approx 2.35 \end{align} $$

The area below a Gaussian is given by

$$ \begin{align} \int_{-\infty}^{+\infty}a e^{-\frac{x^2}{2\,\sigma^2}}dx = a\sqrt{2\pi}\sigma \qquad , \end{align} $$

This can be shown by transforming to polar cordinates and calculating the sqaure of the integral. The normalised Gaussian

$$ f(x) = \frac{1}{\sqrt{2\pi}\sigma}e^{-\frac{(x-\mu)^2}{2\sigma^2}} \Rightarrow\\ \int_{-\infty}^{+\infty}f(x)dx = 1 $$

is the probability-density function of the normal distribution with mean $\mu$ and variance $\sigma^2$.


In [ ]:
plotgaussian(1/(np.sqrt(2.*np.pi)), 0., 1.)

Figure 2.2.2:

To describe a two-dimensional instrumental function, often a two-dimensional Gaussian g (normalised to a peak value of 1) is used:

$$ \begin{align} f({\bf x}) &= f(x_1,x_2) = e^{-\left(\frac{x_1^2}{2\,\sigma_1^2}+\frac{x_2^2}{2\,\sigma_2^2}\right)}\\ {\mathbf A} &= \left(A_{ij}\right)\\ &= \left( \begin{array}{cc} A_{1 1} & A_{1 2}\\ A_{2 1} & A_{2 2}\\ \end{array} \right)\\ &=\left( \begin{array}{cc} \cos{\alpha} & -\sin{\alpha}\\ \sin{\alpha} & \cos{\alpha}\\ \end{array} \right)\\ \left(h({\mathbf A})({\bf x})\right)_i &= \left(h({\mathbf A})(x_1,x_2)\right)_i\\ &= \left({\mathbf A}\cdot{\bf x}\right)_i\\ &= \sum_{j = 1}^2 A_{i j} x_j\\ g({\bf x}) &= f(h^{-1}({\mathbf A})({\bf x}))\\ &= f(h({\mathbf A}^{-1})({\bf x}))\\ &= f(h({\mathbf A}^{T})({\bf x}))\\ \left({\mathbf A}^{T}\right)_{i j} &= \left(A\right)_{j i}\\ &= \left( \begin{array}{cc} A_{1 1} & A_{2 1}\\ A_{1 2} & A_{2 2}\\ \end{array} \right)\\ &=\left( \begin{array}{cc} \cos{\alpha} & \sin{\alpha}\\ -\sin{\alpha} & \cos{\alpha}\\ \end{array} \right)\\ \end{align}\qquad , $$

where $\alpha$ is the so-called position angle of the Gaussian. Looking behind the formal overhead, $A$ is hence (the matrix representation of) a proper rotation about the position angle $\alpha$ and $g$ simply a rotated version of $f$. In above equations we recap that the inverse of a function represented by a matrix $\mathbf A$ it the function represented by the inverse of the matrix, that for a matrix $A$ representing a proper rotation (actually any orthogonal matrix), its inverse is identical to it transposed matrix ${\mathbf A}^T = {\mathbf A}^{-1}$ and reminded what a transposed matrix ${\mathbf A}^T$ is. To calculate the area below the two-dimensional Gaussian, one has to know the chain rule for the integral of multidimensional scalar functions:

$$ \begin{align} \int f({\bf x})\,d^n{\bf x} & = \int f(x_1, x_2, \ldots)\,dx_1\,dx_2 \ldots\\ & = \int f({{\bf x}({\bf y})}) \det \left( {\bf \mathbb J}^{(xy)}({\bf y)} \right) \,d^n{\bf y} \\ & = \int f({{\bf x}({\bf y})}) \begin{vmatrix} {\mathbb J}^{(xy)}({\bf y)} \end{vmatrix} \,d^n{\bf y} \\ & = \int f(x_1(y_1, y_2, \ldots), x_2(y_1, y_2, \ldots)) \begin{vmatrix} \frac{\partial x_i}{\partial y_j}(y_1, y_2, \ldots) \end{vmatrix} \,dy_1\,dy_2 \ldots\\ & = \int f(x_1(y_1, y_2, \ldots), x_2(y_1, y_2, \ldots)) \begin{vmatrix} \frac{\partial x_1}{\partial y_1}(y_1, y_2, \ldots) & \frac{\partial x_1}{\partial y_2}(y_1, y_2, \ldots) & \cdots \\ \frac{\partial x_2}{\partial y_1}(y_1, y_2, \ldots) & \frac{\partial x_2}{\partial y_2}(y_1, y_2, \ldots) & \cdots \\ \vdots & \vdots & \ddots \\ \end{vmatrix} \,dy_1\,dy_2 \ldots\\ \end{align} \qquad , $$

hereby recapping the definition of the Jacobian matrix

$$ \begin{align} {\mathbb J}^{(xy)} &= {\mathbb J} \\ &= \frac{\partial \left(x_1, x_2, \ldots\right)}{\partial\left(y_1, y_2, \ldots\right)}\\ &= {\mathbf J}^{(xy)}\\ &= D\mathbf{x}\\ &= D_\mathbf{x}\\ &= \left(\begin{matrix} \frac{\partial x_1}{\partial y_1}(y_1, y_2, \ldots) & \frac{\partial x_1}{\partial y_2}(y_1, y_2, \ldots) & \cdots \\ \frac{\partial x_2}{\partial y_1}(y_1, y_2, \ldots) & \frac{\partial x_2}{\partial y_2}(y_1, y_2, \ldots) & \cdots \\ \vdots & \vdots & \ddots \\ \end{matrix}\right) \end{align} $$

and its determinant $\det \left({\mathbb J}^{(xy)}\right) = \begin{vmatrix}\mathbb J^{(xy)}\end{vmatrix}$, also sometimes called a Jacobian (albeit not by us). Additionally, one has to know that the inverse function theorem states that the Jacobian of an inverse of a function is the inverse of the Jacobian of a function. Finally knowing that the determinant of the inverse of a matrix is the inverse of the determinant of a matrix $\mathbf M$

$$ \begin{align} \mathbf{M}\mathbf{M}^{-1} &= {\mathbb 1} \Rightarrow \\ (\det({\mathbf M}))^{-1} &= \det({\mathbf M}^{-1}) \end{align} \qquad , $$

we can evaluate the integral $\int g({\bf x}) \,d^2{\bf x} $by making use of the substitution ${\bf x}({\bf y}) = {\mathbf A}{\bf y}$:

$$ \begin{align} \int g({\bf x}) \,d^2{\bf x} &= \int f(h^{-1}({\mathbf A})({\bf x})) \,d^2{\bf x}\\ &= \int f({\mathbf A}^{-1}\cdot{\bf x}) \,d^2{\bf x}\\&= \int f({\mathbf A}^{-1}\cdot{\bf x}({\bf y})) \begin{vmatrix} {\mathbb J}^{(xy)}({\bf y)} \end{vmatrix} \,d^2{\bf y}\\ &= \int f({\mathbf A}^{-1}\cdot{\bf x}({\bf y})) \begin{vmatrix} \frac{\partial x_1}{\partial y_1}(y_1, y_2) & \frac{\partial x_1}{\partial y_2}(y_1, y_2) \\ \frac{\partial x_2}{\partial y_1}(y_1, y_2) & \frac{\partial x_2}{\partial y_2}(y_1, y_2) \\ \end{vmatrix}\,d^2{\bf y}\\ &= \int f({\mathbf A}^{-1}\cdot{\mathbf A}\cdot{\bf y}) \begin{vmatrix} \cos{\alpha} & -\sin{\alpha} \\ \sin{\alpha} & \cos{\alpha} \\ \end{vmatrix}\,d^2{\bf y}\\ &= \int f({\mathbb 1}\cdot{\bf y})\cdot 1 \,d^2{\bf y}\\ &= \int e^{-\left(\frac{y_1^2}{2\,\sigma_1^2}+\frac{y_2^2}{2\,\sigma_2^2}\right)} \,dy_1\,dy_2\\ &= \left(\int e^{-\left(\frac{y_1^2}{2\,\sigma_1^2}\right)} \,dy_1\right)\left(\int e^{-\left(\frac{y_2^2}{2\,\sigma_2^2}\right)} \,dy_2\right)\\ &=\sqrt{2\pi}\sigma_1\sqrt{2\pi}\sigma_2\\ &= 2\pi\sigma_1\sigma_2\\ &= 2\pi \frac{FWHM_1}{\sqrt{\ln{256}}}\frac{FWHM_2}{\sqrt{\ln{256}}}\\ &\approx 1.13309\,FWHM_1\,FWHM_2 \end{align}\qquad , $$

where $FWHM_1$ and $FWHM_2$ are the FWHMs corresponding to $\sigma_1$ and $sigma_2$ respectively. Above identity is often used without realizing that quite a bit of fundamental calculus is going in there and without realizing where it comes from. Since this is a nice opportunity to recap fundamental calculus, we took the opportunity to derive the expression.

2.2.2. Sinc function

The Sinc function $\text{sinc}_{\mathrm u}(x)$ is important for sampling theory. Its relevance will become obvious when we will calculate its Fourier transform. The unnormalized Sinc function is defined by

$$ \begin{split} \text{sinc}_{\mathrm u}(x) &= \left \{ \begin{array}{lll} 1 & {\rm for} &x = 0\\ \frac{\sin x}{x} & {\rm for} & x\neq 0 \end{array} \right. \end{split} \qquad . $$

while the normalized Sinc function is defined by

$$ \begin{split} \text{sinc}(x) &= \text{sinc}_{\mathrm u}(\pi x)\\ &= \left \{ \begin{array}{lll} 1 & {\rm for} &x = 0\\ \frac{\text{sin} (\pi\,x)}{\pi\,x} & {\rm for} & x\neq 0 \end{array} \right. \end{split} \qquad . $$

$$ \int_{-\infty}^{\infty} \text{sinc}_{\mathrm u}(x) \,dx = \pi \qquad , $$

BVH:GC:Define these in the glossary

As the name says, it is normalized to have an integral of 1: if one makes use of the fact that

$$ \int_0^{+\infty}e^{-yt}\,dt = \frac{1}{y} \qquad , $$

then it becomes clear that (first using integration by parts, then substituting $y = \tan(\phi)$).

$$ \begin{split} \int_{-\infty}^{\infty} \text{sinc}(x) \,dx & = 2 \int_{0}^{\infty} \frac{\sin{(\pi x)}}{\pi x}\,dx\\ & = 2 \int_{0}^{\infty}\int_{0}^{\infty} \sin{(\pi x)} e^{-\pi xy}\,dx\,dy\\ & = \frac{2}{\pi}\int_{0}^{\infty} \frac{1}{y^2+1}\,dy\\ & = 1 \end{split} $$

Accordingly,

$$ \int_{-\infty}^{\infty} \text{sinc}_{\mathrm u}(x) \,dx = \pi \qquad . $$


In [ ]:
def plotsinc():

    # Plotting range
    xrange = [-6., 6.]

    # Create Gaussian
    x = np.linspace(xrange[0], xrange[1], 900)
    y = np.sinc(x)

    # Start the plot, create a figure instance and a subplot
    fig = plt.figure()
    ax  = fig.add_subplot(111)

    # Axis ranges
    ax.axis([xrange[0], xrange[1], np.sinc(1.5)-(np.sinc(0)-np.sinc(1.5))/10., \
             np.sinc(0)+(np.sinc(0)-np.sinc(1.5))/10. ])

    # Plot a grid
    ax.grid(True)

    # Insert lines at x=0 and y=0
    ax.axhline(0.,linewidth=1, color = 'k', linestyle='dashed')
    ax.axvline(0.,linewidth=1, color = 'k', linestyle='dashed')
    
    # Plot function
    ax.plot(x,y,'k-')

    plt.title("Sinc", fontsize=14,color='black')
    
    ax.text(-5., (np.sinc(0)-np.sinc(1.5))/2., r'$sinc(x) = \frac{sin (\pi\,x)}{\pi\,x}$', \
            fontsize = 16, horizontalalignment = 'left', verticalalignment = 'top', color = 'black')

    
plotsinc()

Figure 2.2.3:

Unfortunately, both the normalized and the unnormalized sinc are referred to as sinc in the literature. Here, as also in e.g. numpy, we identify the normalized Sinc function as the Sinc function.

2.2.3. Heaviside function

The Heaviside - or step - function was introduced by Oliver Heaviside⤴ (1850-1925) it is a simple step from 0 to 1 at the origin:

$$ \begin{split} H(x) &= \left \{ \begin{array}{lll} 0 & {\rm for} & x < 0 \\ 1 & {\rm for} & x \ge 0 \end{array} \right. \end{split} $$

or

$$ \begin{split} H(x) &= \left \{ \begin{array}{lll} 0 & {\rm for} & x < 0 \\ \frac{1}{2} & {\rm for} & x = 0\\ 1 & {\rm for} & x > 0 \end{array} \right. \end{split} $$


In [ ]:
from matplotlib import rcParams
rcParams['text.usetex'] = True

def heavi(x):
    return x>=0
    
def plotheavi():

    # Plotting range
    xrange = [-1.5, 1.5]

    # Create Gaussian
    x = np.linspace(xrange[0], xrange[1], 900)
    y = heavi(x)

    #b = np.delete(a, [2,3,6])
    # Start the plot, create a figure instance and a subplot
    fig = plt.figure()
    ax  = fig.add_subplot(111)

    # Axis ranges
    ax.axis([xrange[0], xrange[1], -0.1, 1.1])

    # Plot a grid
    ax.grid(True)

    # Insert lines at x=0 and y=0
    ax.axhline(0.,linewidth=1, color = 'k', linestyle='dashed')
    ax.axvline(0.,linewidth=1, color = 'k', linestyle='dashed')
    
    # Plot function
    ax.plot(x[:450],y[:450],'b-')
    ax.plot(x[450:],y[450:],'b-')
    ax.plot([0., 0.],[0., 1.],'b--')

    plt.title("Heaviside", fontsize=14,color='black')
    
    ax.text(-1.4, (np.sinc(0)-np.sinc(1.5))/2., \
            r'$H(x) = \left\{ \begin{array}{lll}0 & {\rm for} & x < 0 \\1 & {\rm for} & x \ge 0\end{array}\right.$', \
            fontsize = 14, horizontalalignment = 'left', verticalalignment = 'top', color = 'black')
    
plotheavi()

Figure 2.2.4:

2.2.4. Dirac delta function

The Dirac delta function $\delta$ named after Paul Dirac⤴ (1902-1984) is not a regular function, but a generalized function or a distribution. It can be imagined as a 'function' which is zero everywhere but at the origin and fulfils

$$ \forall x \in \mathbb{R}, \,x\neq 0 \Rightarrow \delta(x) = 0\\ \forall f \in \mathbb{C}^0,\, \varepsilon \in \mathbb{R}, \,\varepsilon > 0 \\ \begin{split} \int_{-\varepsilon}^{+\varepsilon}f(x)\delta(x)\,dx & = f(0)\\ \end{split} \qquad . $$

It follows

$$ \begin{split} \varepsilon \in \mathbb{R}, \,\varepsilon > 0 \, & \, \Rightarrow & \int_{-\varepsilon}^{+\varepsilon}\delta(x)\,dx & = \int_{-\varepsilon}^{+\varepsilon} \mathbb{1} \cdot \delta(x)\,dx &&=\mathbb{1}(1) \\ &&= 1 \end{split} \qquad , $$

which sometimes is added to the definition of the Dirac delta function. The Dirac delta function is the mathematical equivalent of an infinitesimally short impulse. However, the above definition is only suitable for illustration. Mathematically a more concise definition is, if $\delta_a$ is a set of functions parametrised by $a \in \mathbb{R}$ (e.g. $f_a(x) \,=\,\frac{1}{\pi}\frac{a}{x^2+a^2}$), and

$$ \forall f \in \mathbb{C}^0,\, \varepsilon \in \mathbb{R}, \,\varepsilon > 0 \\ \begin{split} \lim_{a \to 0} \int_{-\infty}^{-\varepsilon}f(x)\delta_a(x)\,dx & = 0\\ \lim_{a \to 0} \int_{-\varepsilon}^{+\varepsilon}f(x)\delta_a(x)\,dx & = f(0)\\ \lim_{a \to 0} \int_{+\varepsilon}^{+\infty}f(x)\delta_a(x)\,dx & = 0\\ \end{split} \qquad , $$

then the distribution $\delta(x)$ can be defined through the integral

$$ \forall f \in \mathbb{C}^0,\, \varepsilon \in \mathbb{R}, \,\varepsilon > 0 \\ \int_{-\varepsilon}^{+\varepsilon}f(x)\delta(x)\,dx = \lim_{a \to 0} \int_{-\varepsilon}^{+\varepsilon}f(x)\delta_a(x)\,dx \qquad , $$

which is symbolically expressed through

$$ \delta(x) = \lim_{a \to 0}\delta_a(x) $$

Notice that in this way, the delta function has the properties of a smooth function,

$$ \begin{split} \delta(x) &= \lim_{a \to 0} \frac{1}{\sqrt{2\pi}a}e^{-\frac{(x-\mu)^2}{2a^2}}\\ &= \lim_{a \to 0}\frac{1}{\pi}\frac{a}{x^2+a^2}\\ &= \lim_{a \to 0}\frac{1}{a}sinc(\frac{x}{a})\\ \end{split} $$

are all valid representations of Dirac's delta function (without proof here). There are many more. An important consequence is that an integral realisation of the delta function exists.

It can be shown that $\delta$ is the derivative of the Heaviside function.

$$ \begin{split} \int_{-\infty}^x\delta(t) \,dt &= \left \{ \begin{array}{lll} 0 & {\rm for} & x < 0 \\ 1 & {\rm for} & x > 0 \end{array} \right.\\ &= H(x) \end{split}\qquad $$

is the definition of the Heaviside function $H(x)$. On the other hand, we remember the fundamental theorem of calculus

$$ \begin{split} F(x) & =& \int_{a}^x f(t) \,dt\\ &\Rightarrow&\\ \frac{dF}{dx} \,&=&\, f(x) \end{split}\qquad , $$

which means that

$$ \frac{dH}{dx}(x) \,=\, \delta(x)\qquad . $$

We highlight two relations:

$$ \begin{split} \int_{a-\varepsilon}^{a+\varepsilon}f(x)\delta(x-a)\,dx \,&=\, f(a)\\ \end{split} $$

Proof:

$$ \int_{a-\varepsilon}^{a+\varepsilon}f(y)\delta(y-a)\,dy \, \underset{x = y - a}{=}\, \int_{\varepsilon}^{\varepsilon}f(x+a)\delta(x)\,dx $$

$$ \begin{split} \delta(ax) \,&=\, \frac{1}{\lvert a \rvert}\delta(x) \end{split} $$

Proof:

$$ \int_{-\varepsilon}^{+\varepsilon}f(y)\delta(ay)\,dy \, \underset{x = ay}{=}\, \int_{-a\varepsilon}^{+a\varepsilon}\frac{1}{a}f(\frac{x}{a})\delta(x)\,dx $$

The equations defining the delta function require the limits of the integral to be from negative to positive. Hence, if a is negative, the limits of the integration needs to be reverse. This negates the sign of the integral, which explains the absolute value in the formula. Similarly for the other two equations.

The derivative of the delta function is defined via partial integration:

$$ \int f(x) \frac{d\delta(x)}{dx}\,dx \,=\, -\int \frac{df}{dx}\delta(x)\,dx\qquad , $$

where the "missing" term $[f(x)\delta(x)]$ is defined to vanish. It follows that:

$$ x\,\frac{d\delta(x)}{dx} \,=\, -\delta(x) $$

Proof:

$$ \begin{split} \int x\,f(x)\frac{d\delta(x)}{dx}\,dx \,&=\, -\int \frac{d\,(x\,f)}{dx}\delta(x)\,dx\\ &=\, -\int (f(x)+x\,\frac{df}{dx})\delta(x)\,dx &=\, -\int f(x)\delta(x)\,dx \end{split}\qquad . $$

The derivative of the Delta function can hence be expressed as a function containing the delta function itself.

BVH:GC:Define H in the glossary

2.2.5. Shah function

The shah or comb function $III$, also called Dirac's comb, is defined as an infinite sum of Dirac delta functions $\delta$

$$ III(x)\,=\,\sum_{m=-\infty}^{+\infty}\delta(x-m)\qquad . $$


In [ ]:
def plotshah():
    # Plotting range
    xrange = [-3., 3.]

    # Create Gaussian
    x = np.linspace(xrange[0], xrange[1], 7)
#    y = np.sinc(x)

    # Start the plot, create a figure instance and a subplot
    fig = plt.figure()
    ax  = fig.add_subplot(111)

    # Axis ranges
    ax.axis([xrange[0]-0.5, xrange[1]+0.5, -0.1, 1.1])

    # Plot a grid
    ax.grid(True)

    # Insert lines at x=0 and y=0
    ax.axhline(0.,linewidth=1, color = 'k', linestyle='dashed')
    ax.axvline(0.,linewidth=1, color = 'k', linestyle='dashed')
    
    # Plot function
    for a in x:
        plt.annotate(s='', xy=(a,0.), xytext=(a,1.), arrowprops=dict(color = 'blue', arrowstyle='<-'))
    

    plt.title("Shah", fontsize=14,color='black')
    
    ax.text(-7.5, (np.sinc(0)-np.sinc(1.5))/2., r'$III(x) = \sum_{m=-\infty}^{+\infty} \delta(x-m)$', \
            fontsize = 16, horizontalalignment = 'left', verticalalignment = 'top', color = 'black')

    
plotshah()

Figure 2.2.5:

It follows the scaling relation

$$ \begin{split} III_a(x)\,&=\,III(ax)\\ &=\,\sum_{m=-\infty}^{+\infty}\delta(ax-m)\\ &=\,\sum_{m=-\infty}^{+\infty}\delta\left(a\left(x-\frac{m}{a}\right)\right)\\ &=\,\sum_{m=-\infty}^{+\infty}\frac{1}{\lvert a \rvert}\delta\left(x-\frac{m}{a}\right) \end{split}\qquad , $$

This defines the scaled shah function $III_a$ with period $\frac{1}{\lvert a \rvert}$. It is easy to see that the following rules apply:

$$ \forall x \in \mathbb{R}, \,a \in \mathbb{R}^+, \,n \in \mathbb{Z}\\ \begin{split} III_a(-x)\,&=\,III_a(x)\\ III_a\left(x + \frac{n}{a}\right)\,&=\,III_a(x)\\ III_a\left(x - \frac{1}{2a}\right)\,&=\,III_a\left(x + \frac{1}{2a}\right)\\ \end{split} $$

2.2.6. Boxcar and rectangle function

The boxcar function is defined as

$$ \forall a,b \in \mathbb{R}, a \le b\\ \begin{split} \Pi_{a,b}(x) &= \, H(x-a) - H(x-b) \\ &=\,\left \{ \begin{array}{lll} 0 & {\rm for} & x < a \\ 1 & {\rm for} & a \le x \le b \\ 0 & {\rm for} & x > b \\ \end{array} \right. \end{split} $$

A special class of boxcar is the rectangle boxcar function $\Pi$ is defined as

$$ \begin{split} \Pi(x) &= \Pi_{-\frac{1}{2},+\frac{1}{2}}(x)\\ &=\,H\left(x-\frac{1}{2}\right) - H\left(x+\frac{1}{2}\right) \\ &=\,\left \{ \begin{array}{lll} 0 & {\rm for} & x < -\frac{1}{2} \\ 1 & {\rm for} & -\frac{1}{2} \le x \le \frac{1}{2} \\ 0 & {\rm for} & x > \frac{1}{2} \\ \end{array} \right. \end{split} $$

BVH:GC:Define boxcar in glossary


In [ ]:
import math

from matplotlib import rcParams
rcParams['text.usetex'] = True

def boxcar(x,a,b):
    return np.logical_and(x>=a,x<=b)
    
def plotboxcar():

    # limits of boxcar
    a = -0.5
    b = 0.5
    # Plotting range
    xrange = [-1.5, 1.5]

    # Create Gaussian
    xpoints = 900
    
    x = np.linspace(xrange[0], xrange[1], xpoints)
    y = boxcar(x, a, b)

    #b = np.delete(a, [2,3,6])
    # Start the plot, create a figure instance and a subplot
    fig = plt.figure()
    ax  = fig.add_subplot(111)

    # Axis ranges
    ax.axis([xrange[0], xrange[1], -0.1, 1.1])

    # Plot a grid
    ax.grid(True)

    # Insert lines at x=0 and y=0
    ax.axhline(0.,linewidth=1, color = 'k', linestyle='dashed')
    ax.axvline(0.,linewidth=1, color = 'k', linestyle='dashed')
    
    # Plot function
    e1 = int(math.ceil(xpoints*(a-xrange[0])/(xrange[1]-xrange[0])))
    ax.plot(x[:e1],y[:e1],'b-')
    ax.plot([a, a],[0., 1.],'b--')
    e2 = int(math.floor(xpoints*(b-xrange[0])/(xrange[1]-xrange[0])))
    ax.plot(x[e1:e2],y[e1:e2],'b-')
    e3 = xpoints
    ax.plot(x[e2:],y[e2:],'b-')
    ax.plot([b, b],[0., 1.],'b--')

    plt.title("Rectangle function", fontsize=14,color='black')
    
    ax.text(-3.5, (np.sinc(0)-np.sinc(1.5))/2., \
            r'$\Pi(x) = \left\{ \begin{array}{lll}0 & {\rm for} & x < \frac{1}{2} \\1 & {\rm for} & -\frac{1}{2} \le x \le +\frac{1}{2}\\0 & {\rm for} & x > \frac{1}{2} \end{array}\right.$', fontsize = 14, horizontalalignment = 'left', verticalalignment = 'top', color = 'black')
    
plotboxcar()

Figure 2.2.6: