summaryrefslogtreecommitdiff
path: root/1271/CH2/EX2.44/example2_44.sce
blob: af7da1e7e87fccfaa5907b440d965d34f58c850a (plain)
1
2
3
4
5
6
7
8
9
clc 
// Given that
lambda = 5.5e-7 // wavelength of light in meter
theta = %pi / 6 // semi-angle of cone in radian
// Sample Problem 44 on page no. 2.55
printf("\n # PROBLEM 44 # \n")
d = (1.22 * lambda) / (2 * sin(theta)) // calculation for the resolving limit of microscope 
printf("Standard formula used \n d*sin(theta)= 1.22*lamda. \n")
printf("\n The resolving limit of microscope = %e meter",d)