summaryrefslogtreecommitdiff
path: root/3537/CH2/EX2.13
diff options
context:
space:
mode:
Diffstat (limited to '3537/CH2/EX2.13')
-rw-r--r--3537/CH2/EX2.13/Ex2_13.sce10
-rw-r--r--3537/CH2/EX2.13/Ex2_13.txt4
2 files changed, 14 insertions, 0 deletions
diff --git a/3537/CH2/EX2.13/Ex2_13.sce b/3537/CH2/EX2.13/Ex2_13.sce
new file mode 100644
index 000000000..ca9b1e454
--- /dev/null
+++ b/3537/CH2/EX2.13/Ex2_13.sce
@@ -0,0 +1,10 @@
+//Example 2_13
+clc();
+clear;
+//deduce the missing order of a double slit
+a=0.16*10^-3 //units in m
+b=0.8*10^-3 //units in m
+n_p=(a+b)/a
+for j=1:3
+printf("For p=%d n=%d\n",j,j*n_p);
+end
diff --git a/3537/CH2/EX2.13/Ex2_13.txt b/3537/CH2/EX2.13/Ex2_13.txt
new file mode 100644
index 000000000..3f074692e
--- /dev/null
+++ b/3537/CH2/EX2.13/Ex2_13.txt
@@ -0,0 +1,4 @@
+For p=1 n=6
+For p=2 n=12
+For p=3 n=18
+ \ No newline at end of file