summaryrefslogtreecommitdiff
path: root/1271/CH14/EX14.36/example14_36.sce
blob: ce8560f78841021c1daea615cfb31e9feda2d5e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
clc 
// Given that
v = 2000 // velocity of neutron in m/sec
h = 6.62e-34 // Planck constant in J-sec
e = 1.6e-19 // charge on an electron in C 
m = 1.67e-27 // mass of neutron in kg
// Sample Problem 36 on page no. 14.35
printf("\n # PROBLEM 36 # \n")
printf("Standard formula used \n ")
printf(" lambda = h /(m*v)\n")
lambda = h / (m * v)
printf("\n de-Broglie wavelength is %f Angstrom.",lambda * 1e10)