diff options
Diffstat (limited to '2258/CH1/EX1.16')
-rwxr-xr-x | 2258/CH1/EX1.16/1_16.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2258/CH1/EX1.16/1_16.sce b/2258/CH1/EX1.16/1_16.sce new file mode 100755 index 000000000..b12fc9eac --- /dev/null +++ b/2258/CH1/EX1.16/1_16.sce @@ -0,0 +1,13 @@ +clc();
+clear;
+// To calculate the probability of finding the particle
+n=1; //lowest state
+L=10; //width in armstrong
+L=L*10^-10; //width in m
+x=L/2;
+delta_x=1; //interval in armstrong
+delta_x=delta_x*10^-10; //interval in m
+psi1=(sqrt(2/L))*sin(%pi*x/L);
+A=psi1^2;
+P=A*delta_x;
+printf("probability of finding the particle is %f",P);
|