I did a simple physics experiment that measures the attractive force a plate experiences towards the other plate as a function of the applied voltage and distance between the plates. Now I have to know whether the gathered data confirms the relation $F \propto V^2/d^2$. Suppose the following is what I gathered.
voltage\distance 8.000 10.000 12.000 14.000 16.000
4.0 3.3 2.0 1.7 1.2 0.8
6.0 8.1 4.8 3.8 2.5 1.9
8.0 13.4 9.2 6.0 4.4 3.5
10.0 22.9 14.2 9.4 7.0 5.6
12.0 32.7 20.1 13.5 10.5 7.9
The uncertainties are $\pm 0.05$ for the voltage, $\pm 0.005$ for the distance, and $\pm 0.1$ for the force.
As far as I know, there are a few ways to analyze the data with R.
lm(log(force) ~ log(voltage) + log(distance))lm(I(force * distance^2) ~ -1 + I(voltage^2))aov(I(force * voltage^-2 * distance^2) ~ voltage * distance)
Which one should I use?