Consider that $P$ is the water pressure coming out from a valve A. Let $P_{dif}$ be defined as the difference between the maximum and the minimum pressure of valve A: $$P_{\text{dif}}:= P_{\text{max}} - P_{\text{min}}$$ Now, what I want to do is to estimate $P_{\text{dif}}$. In order to do that, I take a number of water pressure samples from valve A. Let $S$ be a set of 3 measured samples: $$S = \{X_1 = 5, X_2 = 7, X_3 = 1\}$$ That is, $S$ contains 3 random samples drawn from the population. Therefore, I then say that $\hat{P}_{\text{dif}} = 7 – 1 = 6$.
First question: Considering a Gaussian distribution of the population parameter, how can I find the pdf, cdf of the parameter?
Second question: Would a $95\%$ confidence interval (CI) of my estimation be defined as following?: $$(pdf, mean) - 2\cdot (pdf, std) \leq (pdf, mean) \leq (pdf, mean) + 2\cdot (pdf, std) $$ where (pdf, mean) is the mean of the pdf and (pdf, std) its standard deviation.
If yes, how can I derive the (pdf, mean) and the (pdf, std)?
Edit:
As it seems quite difficult for me to find the CI of the range estimation, I am wondering whether I could use an alternative approach. whuber suggested that successive estimate should not depend strongly on the preceding ones. Say that I split my data samples into equal parts (e.g. 3) and I find one estimate for each of these sub-sets. Next, I find the 95% CI of the $\hat{P}_{dif}$ by that: $$ mean - 2\cdot std \leq mean \leq mean + 2\cdot std $$ where mean and std are the mean and std of the 3 different estimates, respectively. Would that be correct?