Something else that needs clarifying.
There are two sources of error here. There is the experimental error in taking the measurements, from whatever cause, and the rounding error in expressing the readings to only two significant digits.
(I thought there was a further major complication from the division, but see my edit to post #5.)
My post #9 is in respect of handling a batch of readings suffering only from experimental error. The theory assumes the underlying distribution of these numbers is roughly Gaussian and the numbers are independent and identically distributed ("iid").
If, in fact, the F/mN readings (to unlimited precision) are Gaussian, iid then the rounding to two digits changes the distribution.
If the underlying Gaussian has a std dev much less than 0.05 then the rounding wipes that out and replaces it with a uniform distribution [-0.05,+0.05]. At the other extreme, if the Gaussian std dev is a lot more than 0.05 then the rounding has little effect. In between the two extremes it gets complicated.
If you were to plot the data on a graph you would use the rounding error, ±0.05, to set the error bars.
The division is still troublesome in this regard: the division also divides the uncertainty, so now each ratio has a different error range.
To cope with this, you should use regression analysis to find the slope rather than averaging the individual ratios. But you would want to fix (0,0) as a required intercept for the graph. I.e. you calculate the slope as ##m=\frac{\Sigma y_ix_i}{\Sigma x_i^2}##. This gives a mean of 60.65, not 59.
The standard error in the slope is ##\sqrt{\frac{\Sigma(y_i-mx_i)^2}{(\Sigma x_i^2)(n-2)}}##, which, after the division by 0.02, is about 1.37.
See e.g.
http://www.statisticshowto.com/find-standard-error-regression-slope/ and
https://en.wikipedia.org/wiki/Simple_linear_regression#Normality_assumption.
Note that the standard deviation of the errors y
i-mx
i is around 0.32, which dwarfs the ±0.05 rounding error. This means the 2-sig figs rounding error is irrelevant.
Putting all this together, you would be justified in quoting a result of 60.6±1.4.