summaryrefslogtreecommitdiff
path: root/2708/CH1/EX1.25/ex_1_25.sce
diff options
context:
space:
mode:
Diffstat (limited to '2708/CH1/EX1.25/ex_1_25.sce')
-rwxr-xr-x2708/CH1/EX1.25/ex_1_25.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2708/CH1/EX1.25/ex_1_25.sce b/2708/CH1/EX1.25/ex_1_25.sce
new file mode 100755
index 000000000..0c696a936
--- /dev/null
+++ b/2708/CH1/EX1.25/ex_1_25.sce
@@ -0,0 +1,12 @@
+//Example 1.25 // diameter of bright ring
+clc;
+clear;
+//given data :
+w=6D-7;// wavelength used in m
+R1=3;//radius of curvature of convex lens in m
+R2=4;//radius of curvature of concave lens in m
+n=13;// order of ring
+r=sqrt((2*n-1)*w/(2*(1/R1-1/R2)));// radius of ring
+disp(2*r,"diameter of bright ring in m")
+
+