Assume I want to compute one of the angles of a right triangle doing $n$ measurements of the sides with a ruler. In order to increase the precision I make several measurements. After that I compute $\tan \theta$ for each of the measurements:
$$\tan^{(i)}\theta = \frac{\text{opposite side}^{(i)}}{\text{adjacent side}^{(i)}}$$
where $(i)$ denotes the number of the measurement.
Which formulae out of two for computing the average would be more precise? $$\theta_1=\tan^{-1}\left(\frac 1n\sum_i\tan^{(i)}\theta\right)$$ $$\theta_2 = \frac 1n \sum_i \tan^{-1}\left(\tan^{(i)}\theta\right)$$
Assume I have a computer which will be doing the $\tan^{-1}$ calculation. I am really interested in the proof as well.
With this in mind, the option I forgot and you mentioned turns out to be the most precise one.
– Dmitry Kazakov Oct 30 '14 at 15:55