blob: 21c86c689fa615c45dedc123d85e623133cdb93b (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
// Given that
t = 2.5e-14 // life time of hydrogen atom in exited state in sec
h = 6.62e-34 // Planck constant in J-sec
// Sample Problem 11 on page no. 15.28
printf("\n # PROBLEM 11 # \n")
printf("Standard formula used \n")
printf(" del_E*del_t = h/(4*pi) \n")
delta_E = h / (4 * %pi * t)
printf("\n Minimum error in measurement of the energy is %e J.",delta_E)
|