summaryrefslogtreecommitdiff
path: root/3411/CH1/EX1.9.u1/Ex1_9_u1.sce
blob: 4fd524898b27cb923805e7d7475f1b2b16f88ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 1_9_u1
clc();
clear;
//To calculate diameter of the fifth bright ring
n=5
lamda=5460    //units in armstrongs
lamda=lamda*10^-6    //units in cm
f=400       //units in cm
u=1.5
R=(u-1)*2*f     //units in cm
diameter=sqrt(2*(2*n-1)*lamda*R)
printf("Diameter of the 5th bright ring is %.4fcm",diameter)
//In text book the answer is printed wrong as 0.627cm 
//The correct answer is 6.269 cms