diff options
Diffstat (limited to '2855/CH1/EX1.18/Ex1_18.sce')
-rwxr-xr-x | 2855/CH1/EX1.18/Ex1_18.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2855/CH1/EX1.18/Ex1_18.sce b/2855/CH1/EX1.18/Ex1_18.sce new file mode 100755 index 000000000..40281af6e --- /dev/null +++ b/2855/CH1/EX1.18/Ex1_18.sce @@ -0,0 +1,13 @@ +//page no. 36
+//Example no 1-18
+clc;
+clear;
+
+disp('Solution (i) is ');
+x=620// difference in particle momentum In nm
+h=6.63*10^-34// planks constant In J/s
+//p=h/(4*%pi*x);
+//m*v=h/(4*%pi*x);
+m=9.11*10^-31 //In kg // mass of electron
+v=h /(4*%pi* x *10^-9*m);// electron velocity
+printf("\n The uncertanity in electron velocity is %0.0f m/s \n",v);// result
|