summaryrefslogtreecommitdiff
path: root/3411/CH1/EX1.10/Ex1_10.sce
blob: ea62936bce0974253cf32a920f6f3a88a2535ac6 (plain)
1
2
3
4
5
6
7
8
9
10
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)