If I have a system which has an exponential failure rate distribution, i.e. \begin{align*} F(t) := P(T \leq t) = 1 - e^{-\lambda t} \end{align*}
where $T$ is the time of failure and $t$ is measured in seconds.
How can I compute the probability that the component fails between time $t$ and $t + \delta$ seconds?
My intuition is to use the derivative of $F(t)$, i.e. $f(t) = F'(t)$ and to integrate from $t$ to $t + \delta$, giving the probability of failure in this time period as ($T$ being the time of failure): \begin{align*} P(t \leq T \leq t + \delta) = \int_t^{t+\delta}{\lambda e^{-\lambda x}}\mathrm{d}x \end{align*}
Given that $F(t) = 1 - e^{-\lambda t}$, wouldn't this just be $F(t + \delta) - F(t)$?
Is this the correct way to approach the problem?