blob: 67877d30aceef83819998a9d14d829902dd3dc3b (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 4.6, Page 120
clc
rho=9*10^9//in nt-m2/coul2
m=9.11*10^-31//in kg
e=1.6*10^-19//coul
h=1.05*10^-34//in j-sec
E=-(rho*m*e^4)/(2*h^2)
printf("\n Binding energy is %e Joule ",E)
//Answer given in the book is wrong
|