2

for the following convolution integral

$$ \int_{-\infty }^{\infty}\sigma (\tau)\tau A\sigma(t-\tau)\sin(t-\tau)d\tau \text,$$ where \$\sigma(t)\$ denotes the step function

We'll only get results for \$t>0\$, since thats when \$\sigma(t)\$ will have the value 1, which means that the integral will be evaluated for \$\tau\$ from \$0\$ to \$t\$.

I get the rest of the math in the given solution (partial integration, integration by substitution etc...). What I don't get is the following:

\begin{align} \int_{-\infty }^{\infty}\sigma (\tau)\tau A\sigma(t-\tau)\sin(t-\tau)d\tau &= \int_{0 }^{t}\sigma (\tau)\tau A\sigma(t-\tau)\sin(t-\tau)d\tau\\ &= A\sigma (t)\int_{0 }^{t}\tau \sin(t-\tau)d\tau \end{align}

Why can \$\sigma(t)\$ be taken out of the integral just like that? Isn't the integral of the step function \$\sigma(t)\$ the ramp function?

I have another, somewhat related question: Why is the stability in a bode plot evaluated at the cutoff frequency? The solution to a given problem in my script says that if the gain at the cutoff is \$< 0\$, then it's stable, if it's \$> 0\$ it is not. Intuitively that makes sense, but why at the cutoff frequency?

Marcus Müller
  • 88,280
  • 5
  • 131
  • 237
Pilotf4
  • 51
  • 1

1 Answers1

2

Consider the following integral:

$$\int_{-\infty}^{\infty}\sigma(\tau)\sigma(t-\tau)f(\tau)d\tau\tag{1}$$

where \$f(t)\$ is an arbitrary function.

The integrand is zero for \$\tau<0\$ (due to the factor \$\sigma(\tau)\$), and it is zero for \$\tau>t\$ (due to the factor \$\sigma(t-\tau)\$).

Now it's important to note that replacing the integration limits by \$0\$ (lower limit) and \$t\$ (upper limit) is only justified for \$t>0\$, because otherwise the factor \$\sigma(\tau)\sigma(t-\tau)\$ equals zero for all values of \$\tau\$, because \$\sigma(\tau)\$ and \$\sigma(t-\tau)\$ don't overlap in that case.

Consequently, the correct way to rewrite \$(1)\$ is

$$\sigma(t)\int_{0}^{t}f(\tau)d\tau\tag{2}$$

because without the factor \$\sigma(t)\$, the integral does not evaluate to zero for \$t<0\$ as it should.

I don't see the relation of your second question to this one, so I suggest you formulate it as a separate question.

Matt L.
  • 3,641
  • 13
  • 14