summaryrefslogtreecommitdiff
path: root/3869/CH1/EX1.54/Ex1_54.sce
blob: 373e556a09e3661295d3febe262b8045ad722ecd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clear
//
//
//

//Variable declaration
R=70               //radius of curvature of lens(cm)
n=10
Dn=0.433           //diameter of 10th dark ring(cm)

//Calculation
lamda=Dn**2/(4*R*n)     //wavelength of light(cm)

//Result
printf("\n wavelength of light is %0.3f  *10**-5 cm",lamda*10**5)
printf("\n answer given in the book varies due to rounding off errors")