blob: 0f6211a15314fdf864251cb257d4aa0fc2936623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//Given that
theta = %pi/2 // scattering angle of photon
h = 6.624e-34 // plank's constant
c = 3e8 // speed of light
e = 1.6e-19 // charge on electron in coloumb
m_e = 9.1e-31 // mass of electron in kg
//Sample Problem 6 Page No. 137
printf("\n\n\n # Problem 6 # \n")
printf("\n Standard formula Used \n delta_lambda = h * (1 - cos (theta )) / ( m_e * c)")
delta_lambda = h * (1 - cos (theta )) /( m_e * c) //calculation of Change in wavelength of electron
printf("\n Change in wavelength of electron is %f Angstrom. ", delta_lambda*1e10)
|