Planck.mws

Planck's constant

Conversion: wavelength to frequency:

>    restart; with(plots):

Warning, the name changecoords has been redefined

>    f:=lambda->evalf(c/lambda);

f := proc (lambda) options operator, arrow; evalf(c/lambda) end proc

>    c:=3*10^8;

c := 300000000

>    f(550*10^(-9));

.5454545455e15

>    # Giga=10^9, Tera=10^12  We have 545 Terahertz

>    n:=1E-9;

n := .1e-8

>    WL:=[400*n,450*n,500*n,550*n,600*n,650*n];

WL := [.400e-6, .450e-6, .500e-6, .550e-6, .600e-6, .650e-6]

>    FR:=map(f,WL);

FR := [.7500000000e15, .6666666667e15, .6000000000e15, .5454545455e15, .5000000000e15, .4615384615e15]
FR := [.7500000000e15, .6666666667e15, .6000000000e15, .5454545455e15, .5000000000e15, .4615384615e15]

>    Volts:=[1.35,1.05,0.86,0.68,0.50,0.305];

Volts := [1.35, 1.05, .86, .68, .50, .305]

>    e:=1.6E-19;

e := .16e-18

>    PL1:=plot([seq([FR[j],Volts[j]],j=1..nops(FR))],style=point,symbolsize=20,symbol=box): display(PL1);

[Maple Plot]

>    with(stats):

>    sol:=fit[leastsquare[[f,V]]]([FR,Volts]);

sol := V = -1.265958569+.3502254064e-14*f

>    PL2:=plot(rhs(sol),f=FR[1]..FR[nops(FR)],color=blue,thickness=3): display(PL1,PL2);

[Maple Plot]

>    coeff(rhs(sol),f)*e;

.5603606502e-33

>    Planck:=6.6E-34*Js;

Planck := .66e-33*Js

Why do we get a value that is too low by almost 20% ???

The straight-line fit looks actually quite good. If we repeat the measurements, we are likely to get results that will be consistent with the slope obtained from the 6 data points.

We are looking for a systematic deviation: are there physical reasons why the slope comes out to be too low?

One possible systematic effect: the reverse photoeffect.

For short wavelengths (high frequencies, blue colour) photons can knock out electrons from the post which will be collected at the mantle. At red to green colours this reverse photoeffect does not work, since the photon energy is not sufficient to remove electrons from the post (the work function for the post is higher than for the mantle).

This can have the effect of reducing the photovoltage measured for the blue colours.

If the last two data points were slightly higher, a more consistent line fit would emerge, and it would yield a bigger slope.

If one wants to understand systematic effects, one has to do more analysis.

>