Solved – Error propagation SD vs SE

errorerror-propagationstandard deviationstandard error

I have 3 to 5 measures of a trait per individual in two different conditions (A and B).

I'm plotting the average for each individual in each condition and I use the standard error (i.e., $SD/\sqrt{N}$, with $N$ = number of measurements) as error bars.

Now I want to plot the difference between the average measure per individual in condition A and condition B. I know I can determine the propagated error doing:

$$SD=\sqrt{SD_A^2+SD_B^2}$$
but how can I propagate standard errors (since I'm dealing with averages of measurements) instead of standard deviations? Does this make sense at all?

Best Answer

You should simply treat your SE as SD, and use exactly the same error propagation formulas. Indeed, standard error of the mean is nothing else than standard deviation of your estimate of the mean, so the math does not change. In your particular case when you estimate SE of $C=A-B$ and you know $\sigma^2_A$, $\sigma^2_B$, $N_A$, and $N_B$, then $$\mathrm{SE}_C=\sqrt{\frac{\sigma^2_A}{N_A}+\frac{\sigma^2_B}{N_B}}.$$

Please note that another option that could potentially sound reasonable is incorrect: $$\mathrm{SE}_C \ne \sqrt{\frac{\sigma^2_A\sigma^2_B}{N_A+N_B}}.$$

To see why, imagine that $\sigma^2_A=\sigma^2_B=1$, but in one case you have a lot of observations and another case only one: $N_A=100, N_B=1$. The standard error of the mean of the first group is 0.1, and of the second it is 1. Now if you use the second (incorrect) formula, you would get approximately 0.14 as the joint standard error, which is far too small given that you second measurement is known $\pm 1$. The correct formula gives $\approx 1$, which makes sense.

Related Question