summaryrefslogtreecommitdiff
path: root/3701/CH7/EX7.7/Ex7_7.sce
blob: 7f1db54dc01220c080ecd5cd66406e83def171d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
////Given
L=10**-9                                         //Width in m
v=9.0*10**-9
h=1.054*10**-34                                  //Js
c=3*10**8                                        //m/s
m=9.1*10**-31
v1=(9.0+1)*10**-9
v2=(9.0-1)*10**-9

//Calculation
//
n=sqrt((4*c*m*(L**2))/(v*%pi*h))
n1=sqrt((4*c*m*(L**2))/(v1*%pi*h))
n2=sqrt((4*c*m*(L**2))/(v2*%pi*h))

//Result
printf("\n value of n is  %0.0f  When + sign is taken  %0.0f  when -ve sign is taken  %0.0f ",n,n2,n1)