I have estimated (MC simulated) some probability values y, that each depends on a value of x between 0 and 1.
Say, for instance, that the vector x contains
$x_{1} = 0.1,\ \ x_2 = 0.2,\ \ x_3 = 0.3,\ \ x_4=0.4,\ \ x_5 = 0.5,\ \ x_6 = 0.6,\ \ x_7 = 0.7$
and the vector of estimated mean values y contains
$y_{1}(x_1) = 0.340,\ \ y_2(x_2) = 0.329,\ \ y_3(x_3) = 0.322,\ \ y_4(x_4)=0.299,\ \ y_5(x_5) = 0.278,\ \ y_6(x_6) = 0.255,\ \ y_7(x_7) = 0.237.$
I also have an estimated standard deviation value for each of the estimated values in y. Let these uncertainty values be contained in a vector s.
Now I estimate $y(1)$ based on extrapolation (curve fitting). I do this by fitting my values to a curve on the form
$y(x) = q \exp \left\lbrace -a\left(x-b\right)^c \right\rbrace$
by minimizing a weighted mean square error function (with weights according to s) in order to find the optimal parameters $q, a, b, c$.
Then I have obtained my estimate $y(1)$. However, my question is how to measure the uncertainty in this estimate. Is there for instance any good way to exploit the values in s?
So far, I have thought of this way: The values in s was actually estimated by
$s_i(x_i) = \sqrt{\frac{1-y_i(x_i)}{Ny_i(x_i)}}$
where $N$ was the sample size in the MC simulation of $y_i(x_i)$. Then I thought I could perhaps simply use
$s(1) = \sqrt{\frac{1-y(1)}{Ny(1)}}$
as a measure of the uncertainty in $y(1)$, even though I never actually estimated $y(1)$ using $N$ samples in that way. Also, it's a drawback that this value doesn't depends on the size of y.
Any suggestions? It would be great to obtain some sort of standard deviation value s(1), so that I can easily find the relative error $RE = s(1)/y(1)$ as well. (I have some other methods that I use to estimate the probability y(1), and it would be nice to compare $s(1)$ and/or $RE$ of the various methods...)
Thank you! :-)
Do you have a suggestion on how to measure the error in $x = 1$? If I am able to do this, it should reflect a poor (not trustworthy) fitting anyway, should it not? :-)
– moonlight Jun 06 '12 at 08:11