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.2 | |
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.2')
-rw-r--r-- | 377/CH1/EX1.2/1_2.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/377/CH1/EX1.2/1_2.sce b/377/CH1/EX1.2/1_2.sce new file mode 100644 index 000000000..839041fc9 --- /dev/null +++ b/377/CH1/EX1.2/1_2.sce @@ -0,0 +1,18 @@ +c=3*(10^8);
+pi=3.14;
+m0=(549*1.6*10^-13)/(c^2)*(10^28);
+printf('\n The value of m0 is %f*(10^-28) kg',m0);
+disp("Δm0*Δt >= h/(2*pi*c^2)");
+a=7*10^-19; //say Δt=a
+h=1.055*(10^-34);
+d=(a*3*10^16);
+b=h/d; //say Δm0=b
+e=(b)/(m0);
+printf('\n The Uncertainity in terms of rest mass is %f',e);
+disp("p^2/(2*m0) = K and (p+Δp)^2/(2*m0) = K+(10^3*1.6*10^-19)");
+disp("(p+Δp)^2 - p^2 = 2*m0*(10^3*1.6*10^-19)");
+f=2*1.672*1.6*(10^-1);
+g=sqrt(f);
+k=h/j;
+l=k*10^13;
+printf('\n The value of minimum uncertainity is %f m',l);
\ No newline at end of file |