blob: a4d222fb649b14dcc646c9459964db116da103cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//Given
v=-75.0 //cm
u=-25.0 //cm
//Calculation
f=1/((1/v)-1/u)
P=100/f
//Result
printf("\n (a) Power of the lens is %0.2f D",P)
printf("\n (b) The corrective lens produce a virtual imageof an object at 25 cm. The angular size of this image is the same as the object")
printf("\n (c) A hypermetropic eye may have normal far point.Hence the person prefers not to use the spectacles for distant object")
|