summaryrefslogtreecommitdiff
path: root/3869/CH1/EX1.1
diff options
context:
space:
mode:
Diffstat (limited to '3869/CH1/EX1.1')
-rw-r--r--3869/CH1/EX1.1/Ex1_1.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3869/CH1/EX1.1/Ex1_1.sce b/3869/CH1/EX1.1/Ex1_1.sce
new file mode 100644
index 000000000..1a2ae6dbe
--- /dev/null
+++ b/3869/CH1/EX1.1/Ex1_1.sce
@@ -0,0 +1,17 @@
+clear
+//
+//
+//
+
+//Variable declaration
+d=0.08*10**-2 //distance between slits(m)
+beta1=6*10**-4 //fringe width(m)
+c=3*10**8 //velocity of light(m/sec)
+new=8*10**11*10**3 //frequency(Hz)
+
+//Calculation
+lamda=c/new //wavelength(m)
+D=beta1*d/lamda //distance of screen from slits(m)
+
+//Result
+printf("\n distance of screen from slits is %0.3f m",D)