summaryrefslogtreecommitdiff
path: root/1271/CH14/EX14.34/example14_34.sce
blob: 87e1275e70bcf44e554d18c3b38480cbe9341b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clc 
// Given that
v = 200 // potential differece in volt
h = 6.62e-34 // Planck constant in J-sec
c = 3e8 // speed of light in m/sec
q = 3.2e-19 // charge on an alpha particle in C 
m = 4 * 1.67e-27 // mass of alpha particle in kg
// Sample Problem 34 on page no. 14.34
printf("\n # PROBLEM 34 # \n")
printf("Standerd formula used \n ")
printf(" lambda = h /(m*v)\n 1/2*m*v^2 = qV \n")
lambda =  h  / sqrt(2 * m * v * q)
printf("\n de-Broglie wavelength = %e m.",lambda)