blob: 2567ba8b95e67c9706d2079a136f57b581297788 (
plain)
1
2
3
4
5
6
7
8
9
|
clc;
clear all;
m = 9.11e-31; // Mass of an atom in Kg
h = 6.626e-34; // Planck's constant
e = 1.609e-19; // Charge of an electron in columb
E = 100*e; // Energy of an electron in Joule
lambda = h/(sqrt(2*m*E));//The de-broglie wavelength
disp('m',lambda,'The de-broglie wavelength is')
// Slight vartiation in answer than textbook
|