diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /377/CH1/EX1.3/1_3.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '377/CH1/EX1.3/1_3.sce')
-rw-r--r-- | 377/CH1/EX1.3/1_3.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/377/CH1/EX1.3/1_3.sce b/377/CH1/EX1.3/1_3.sce new file mode 100644 index 000000000..fe21c65d3 --- /dev/null +++ b/377/CH1/EX1.3/1_3.sce @@ -0,0 +1,27 @@ +r=5*10^-15; //say r=∆x
+h=1.055;
+c=3*10^8;
+m0=9.1;
+disp("∆p >= h/(4*pi*∆x)");
+a=h/(2*r);
+b=a*(10^-14);
+printf('\n The uncertainity in momentum is %f *(10^-20) kg m/s',b);
+d=0.511;
+e=1.6;
+f=d*e;
+printf('\n The rest mass enrgy of electron is %f*(10^-13) J',f);
+g=b*c;
+k=g*10^-8;
+printf('\n The value of ∆p*c is %f*(10^-12) J',k);
+disp("E=sqrt((m0*c^2)^2+(p*c)^2)");
+disp("Emin=3.165*10^-12");
+i=3.165*(10^-12)/(1.6*(10^-19)*10^6);
+printf('\n The value of Emin in Mev is %f',i);
+j=5.3;
+l=h/(2*j);
+m=l*10^2;
+printf('\n The uncertainity in momentum is when %f *(10^-23) kg m/s',m);
+n=(m^2)/(2*m0);
+printf('\n The value of kinetic energy is %f*(10^-19) J',n);
+o=n/1.6;
+printf('\n The value of kinetic energy in eV is %f eV',o);
\ No newline at end of file |