blob: b43771fd859fc9ee54c10ba7c86679b13ffd6eb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear
//
//
//
//Variable declaration
h=6.63*10^-34; //planck's constant(J-sec)
e=1.6*10^-19; //charge of electron(c)
delta_t=2.5*10^-14*10^-6; //life time(s)
//Calculations
deltaE=h*10^-3/(4*%pi*delta_t*e); //minimum energy(keV)
//Result
printf("\n minimum energy is %0.5f keV",deltaE)
printf("\n answer in the book varies due to rounding off errors")
|