diff options
Diffstat (limited to '1427/CH19/EX19.17/19_17.sce')
-rw-r--r-- | 1427/CH19/EX19.17/19_17.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH19/EX19.17/19_17.sce b/1427/CH19/EX19.17/19_17.sce new file mode 100644 index 000000000..41c301fd9 --- /dev/null +++ b/1427/CH19/EX19.17/19_17.sce @@ -0,0 +1,8 @@ +//ques-19.17
+//Calculating mass of a particle
+clc
+dx=9.54*10^-10;//uncertainity in position (in m)
+dv=5.5*10^-20;//uncertainity in velocity (in m/s)
+h=6.6*10^-34;//(in Js)
+m=h/(4*%pi*dx*dv);
+printf("The mass of the particle is %d mg.",m*10^6);
|