A proposal to cancel systematical errors in an experimental setup on the photoelectric effect
Abstract
This paper proposes a method of calibration for experimental setups designed to study the photoelectric effect. It is aimed at university professors, assistant professors, or lab technicians who wish to improve the accuracy of the results obtained by their students. Particularly, it will be of great help in determining the value of Planck's constant with improved accuracy.
1. Introduction
In a typical photoelectric setup [P61], besides the usual errors tied to the measurements, there exists a set of systematic errors unique to the setup that cannot be corrected. This is what is preventing us to obtain a step-function when measuring the current while changing the voltage. Instead, a sigmoid relation is obtained. In the following, the link between that sigmoid and the theoretical step function will be studied and a model aiming to cancel those systematical errors will be constructed.
2. Relation between the theoretical Vstop and raw experimental data
As discussed earlier, when plotted, the raw data follows a sigmoid relation of the form: \begin{equation} \label{eq:sigmoid_general} f(x) = \frac{L}{1+e^{-k(x-x_0)}} \end{equation} where \(L\) is the upper horizontal asymptote (the lower one is at \(x=0\)), \(k\) is a parameter influencing the slope of the tangeant at the inflection point and \(x_0\) is the \(x\)-value of the inflection point. The slope of the tangeant at the inflection point is given by \(f^{\prime }(x_0)\). We have that: \begin{equation*} \frac{\text{d}f}{\text{d}x} = \frac{Lke^{-k(x-x_0)}}{\left(1+e^{-k(x-x_0)}\right)^2} \end{equation*} thus \begin{equation} \label{eq:tan_PI} f^{\prime}(x_0) = \frac{kL}{4} \end{equation}
2.1. Steps
For each dataset (one per frequency), the undermentioned stepswill be followed:
- Determining the parameters of \eqref{eq:sigmoid_general} by performing a non linear least squares regression.
- Mapping the data from the \(y\)-interval \([0,L]\) to \([0, 1]\) by mutiplying the \(y\)-axis coordinates by \(1/y\).
- Compute the 'reduced' equation of the tangeant to the inflection point by using the parameters found in 1.
- Compute the theoretical value of \(V_{\text{stop}}\) using Planck's constant, the charge of the electron and the frequency that we are working with.
2.1.1. Sigmoid regression
In the case of a photoelectric setup, \(x_0 = 0\). This reflects the behaviour that if no voltage is applied, the current is the one produced by the PE effect, which is positive by convention. If an additional positive voltage is applied, the current will be greater, and thus will tend towards \(L\). On the other hand, if a negative voltage is applied, the current will be slowed down, up to the point where it will be completely stopped, that is at \(V_{\textrm{stop}}\). However, when doing the regression, we won't force it through any point in order not to include any bias. In R, the nls()
and SSlogis()
functions can be used to determine the parameters. We should now have the values of \(L\), \(k\) and \(x_0\).
2.1.2. Mapping to [0,1]
Because we know \(L\), we can normalize our data. The reason this is done is to allow our different datasets to be compared. Also, to each frequency corresponds one and only one 'normalized' slope. That is because to each frequency corresponds one \(V_{stop}\) and that the error due to the setup is constant.
2.1.3. Equation of the tangeant to the IP
Using the value of \(k\) obtained in 2.1.1, the equation \eqref{eq:tan_PI} and by setting \(L=1\) because we are normalizing, we get the value of the slope \begin{equation} m=\frac{k}{4} \end{equation} For plotting purposes, we can get the intercept with the following formula: \begin{equation*} p = \frac{2-kx_0}{4} \end{equation*}
2.1.4. Theoretical value of Vstop
The theoretical value of \(V_{\textrm{stop}}\) is obtained with the following equation: \begin{equation} eV = h\nu \iff V = \frac{h\nu}{e} \end{equation} where: \begin{align*} v &= v_{\text{stop}}\\ e &= \text{electron charge}\\ h &= \text{Planck's constant}\\ \nu &= \text{frequency} \end{align*}
3. Analysis
Once several frequencies have been studied, the relation between the slope \(m\) and the expected stop voltage \(V_{\textrm{stop}}\) can be analysed. The hope here is to observe a clear relation between the values, be it linear, polynomial or otherwise. Observing such a relation would allow us to model it and using the constructed model to calibrate the setup.
3.1. The ULB case
As one might reckon, this method has been used and tested before publication. Here, it is applied to a PE setup at the Free University of Brussels (Belgium). Satisfyingly, a linear relation has been observed.

References
[P61] | Leybold instruction sheets P6.1.4.3. Determining Planck’s constant. Leybold Didactic GmbH. url : ld-didactic.de/.../p6143_e.pdf |