summaryrefslogtreecommitdiff
path: root/3411/CH1/EX1.10
diff options
context:
space:
mode:
Diffstat (limited to '3411/CH1/EX1.10')
-rw-r--r--3411/CH1/EX1.10/Ex1_10.sce11
-rw-r--r--3411/CH1/EX1.10/Ex1_10.txt1
2 files changed, 12 insertions, 0 deletions
diff --git a/3411/CH1/EX1.10/Ex1_10.sce b/3411/CH1/EX1.10/Ex1_10.sce
new file mode 100644
index 000000000..ea62936bc
--- /dev/null
+++ b/3411/CH1/EX1.10/Ex1_10.sce
@@ -0,0 +1,11 @@
+//Example 1.10
+clc();
+clear;
+//To find the diameter of the 20th dark ring
+D4=0.4 //units in cm
+D12=0.7 //units in cm
+//As we have (D20^2-D4^2)/(D12^2-D4^2)=(4*16)/(4*8)
+ans=(4*16)/(4*8)
+D20_2=(ans*((D12)^2-(D4)^2))+(D4)^2 //units in cm^2
+D20=sqrt(D20_2) //units in cm
+printf("Diameter of the 20th dark ring is %.3fcm",D20)
diff --git a/3411/CH1/EX1.10/Ex1_10.txt b/3411/CH1/EX1.10/Ex1_10.txt
new file mode 100644
index 000000000..935d8934e
--- /dev/null
+++ b/3411/CH1/EX1.10/Ex1_10.txt
@@ -0,0 +1 @@
+Diameter of the 20th dark ring is 0.906cm \ No newline at end of file