One thing that always confused me about the exponential distribution was why the probability distribution function or even the expected value is modeled as a function of $X$ instead of a variable like $T$ for time--note capitalization means a random variable. This is not meant to be a nit-picky notation question, but really just trying to understand if I am missing something about the distribution and why $X$ is used.
The exponential is used for waiting time or inter-arrival times in general.
If you look at the Wikipedia article for example, the pdf is specified as: $$ f(x;\lambda) = \lambda e^{-\lambda x} $$
The exponential distribution models the probability that an event happens within some continuous interval $[0, t]$, given an intensity parameter $\lambda$. Now other distributions such as the poisson distribution, explicitly reference time as the variable of interest: $P(k, t; \lambda) = \frac{(\lambda t)^k e^{-\lambda t}}{k!}$
Using $x$, the notation for the pdf of the exponential becomes something awkward like $ P(X \leq T; \lambda)$ or equivalently $P(x \in [0, T])$. Wouldn't it seem more intuitive to specify the pdf as $P(T \leq t; \lambda)$, where the random variable is specified as $T$?