I don't understand the following problem.
Data collected suggests that an exponential distribution with mean value 2.725 hours is a good model for rainfall duration.
a. What is the probability that the duration of a particular rainfall event at this location is at least 2 hours? At most 3 hours? Between 2 and 3 hours?
b. What is the probability that the rainfall duration exceeds the mean value by more than 2 standard deviations? What is the probability that it is less than the mean value by more than one standard deviation?
For part a I'm doing the following. According to the book however the answers are supposed to be .449, .699, and .148
$$mean = 2.725$$
a. P(X >= 2) = P(2 <= Y) = $1 - e^{-2/2.725} = .519$
$P(x <= 3) = P(0 < Y < 3) = 1 - e^{-3/2.725} = .667$
$P(2 < Y < 3) = P(Y > 2) - P(Y > 3) = e^{-2/2.725} - e^{-3/2.725} = .147 $
b. This part I have no clue what to do.
I think there is a 'mistake' in the solution of your book or perhaps you mistakenly saw the solution, I don't know!? Anyway, this is my approach:
Let $X$ be the random variable that denotes the rainfall duration and $X$ follows the exponential distribution with parameter $\lambda=2.725$. The CDF of exponential distribution is $$ F(x;\lambda)=\text{Pr}[X\le x]=1-e^{-\frac{x}{\lambda}}, $$ also $$ \text{Pr}[X\le x]=e^{-\frac{x}{\lambda}}\;,\;\text{E}[X]=\mu=\lambda\;,\text{ and }\;\sigma=\sqrt{\text{Var}[X]}=\lambda. $$
Therefore
For no. b, you can also approximate the probabilities by using standard normal distribution approximation. Note that, $$ Z=\frac{X-\mu}{\sigma}\sim\mathcal{N}(0,1) $$ Hence, $$ \text{Pr}[X>\mu+2\sigma]=\text{Pr}\left[\frac{X-\mu}{\sigma}>2\right]=\text{Pr}[Z>2]=1-\Phi(2)\approx0.977 $$ and $$ \text{Pr}[X\le\mu+\sigma]=\text{Pr}\left[\frac{X-\mu}{\sigma}\le1\right]=\text{Pr}[Z\le1]=\Phi(1)\approx0.159. $$ Well, the results are quite bad. So, the approximation using standard normal distribution is not recommended.
$$\\$$
$$\large\color{blue}{\text{# }\mathbb{Q.E.D.}\text{ #}}$$