1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
|
{
"metadata": {
"name": "",
"signature": "sha256:040e38e52e7b9682cfcedeffe89e523ef70aa22db1a3d6616f3de2ca6dd532ec"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"UNIT-3:Principle of Optics"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.1,Page no:69"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"f=15.0 #focal length in cm\n",
"v=10.0 #image distance in cm\n",
"\n",
"#Calculation\n",
"u=1/((1/v)-(1/f)) #calculating u using (1/f)=(1/v)-(1/u)\n",
"\n",
"#Result\n",
"print\"Object Distance ,u= \",u,\"cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Object Distance ,u= 30.0 cm\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.2,Page no:70"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration\n",
"f=80.0 #focal length in cm\n",
"f1=20.0 #focallength of first lens in cm\n",
"\n",
"#Calculation\n",
"f2=1/((1/f)-(1/f1)) #using (1/F)=(1/f1)+(1/f2)\n",
"P=(100.0/f) #power in D\n",
"P1=100.0/20 #power of first lens\n",
"P2=P1-P #power in D\n",
"\n",
"#Variable declaration\n",
"print\"Power= \",P2,\"D\" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Power= 3.75 D\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.3,Page no:71"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"P=2.5 #Power in D\n",
"\n",
"#Calculation\n",
"f=-(1/P) #calculating f in m\n",
"\n",
"#Result\n",
"print\"Focal length =\",f,\"m\" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Focal length = -0.4 m\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.4,Page no:72"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"m=4 #magnigication\n",
"f=20 #focal length in cm\n",
"\n",
"#Calculation\n",
"u=(20*3)/(4) #on simplifying (1/f)=(1/v)-(1/u)\n",
"v=(4*u) #calculating v in cm\n",
"\n",
"#Result\n",
"print\"Object distance,u= \",u,\"cm\" \n",
"print\"Image distance,v= \",v,\"cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Object distance,u= 15 cm\n",
"Image distance,v= 60 cm\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.5,Page no:72"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"from scipy.optimize import fsolve \n",
"\n",
"#Variable declaration\n",
"u=14.0 #object distance in cm\n",
"f=-21.0 #focal distance in cm\n",
"\n",
"#Calculation\n",
"v=1/((1/f)-(1/u))\n",
"I=(3.0*v)/(-u) #using m=(1/0)=(v/u) \n",
"\n",
"#Result\n",
"print\"Image distance= \",v,\"cm\" \n",
"print\"I= \",I,\"cm\" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Image distance= -8.4 cm\n",
"I= 1.8 cm\n"
]
}
],
"prompt_number": 5
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.6,Page no:79"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"fe=5 #focal length in cm\n",
"D=25 #distance od distinct vision in cm\n",
"\n",
"#Calculation\n",
"m=1+(D/fe) #calculating magnifying power\n",
"\n",
"#Result\n",
"print\"magnifying Power = \",m "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"magnifying Power = 6\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.7,Page no:80"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"fe=5 #focal length in cm\n",
"D=25 #distance od distinct vision in cm\n",
"\n",
"#Calculation\n",
"mo=30/(1+(D/fe)) #calculating magnification of objective lens\n",
"\n",
"#Result\n",
"print\"Magnification produced by objective lens = \",mo "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Magnification produced by objective lens = 5\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.8,Page no:80"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"u=-6.0 #object distance in cm\n",
"fo=4.0 #focal distance in cm\n",
"fe=6.0 #focal length in cm\n",
"D=25.0 #distance of distinct vision in cm\n",
"\n",
"#Calculation\n",
"v=1/((1/u)+(1/fo)) #using (1/f)=(1/v)-(1/u)\n",
"m=(v/u)*(1+(D/fe)) #calculating m\n",
"\n",
"#Result\n",
"print\"Image distance in cm = \",v,\"cm\" \n",
"print\"Magnifying Power = \",round(-m,2) "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Image distance in cm = 12.0 cm\n",
"Magnifying Power = 10.33\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.9,Page no:81"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"D=25.0 #distance of distinct vision\n",
"u=-9.0 #object distance in cm\n",
"fe=10.0 #focal length in cm\n",
"\n",
"#Calculation\n",
"v=1/((1/fe)+(1/u)) #using (1/f)=(1/v)-(1/u)\n",
"m=(v/u) #calculating m\n",
"M=D/u #calculating Magnifying power of lens\n",
"\n",
"#Result\n",
"print\"Magnification of lens = \",m \n",
"print\"Magnifying Power = \",round(-M,1) "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Magnification of lens = 10.0\n",
"Magnifying Power = 2.8\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.10,Page no:82"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"fo=0.5 #focal length of eye lens\n",
"D=25 #distance of distinct vision\n",
"L=15 #length in cm\n",
"m=375 #magnification\n",
"\n",
"#Calculation\n",
"fe=(-L*D)/(fo*((L/fo)-m)) #calculating fe\n",
"\n",
"#Result\n",
"print\"Focal length of eye lens= \",round(fe,1),\"cm\" "
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Focal length of eye lens= 2.2 cm\n"
]
}
],
"prompt_number": 33
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.11,Page no:86"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"m=5 #magnifying power\n",
"L=24 #length in cm\n",
"fe=4 #focal length in cm\n",
"\n",
"#Calculation\n",
"fo=5*fe #calculating fo\n",
"\n",
"#Result\n",
"print\"Focal length of lens = \",fo,\"cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Focal length of lens = 20 cm\n"
]
}
],
"prompt_number": 9
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.12,Page no:87"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"D=25.0 #distance of distinct vision in cm\n",
"fo=140.0 #focal length of eye lens\n",
"fe=5.0 #focal length in cm\n",
"\n",
"#Calculation\n",
"m=-(fo/fe) #calculating magnifying power\n",
"m1=-(fo/fe)*(1+(fe/D)) #calculating magnifying power\n",
"\n",
"#Result\n",
"print\"(a):Magnifying power at normal adjustment = \",m\n",
"print\"(b):Magnifying power atleast distance of distinct vision = \",m1"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a):Magnifying power at normal adjustment = -28.0\n",
"(b):Magnifying power atleast distance of distinct vision = -33.6\n"
]
}
],
"prompt_number": 10
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.13,Page no:88"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"M=5 #Magnifying power\n",
"fo=10 #focal length of eye lens\n",
"\n",
"#Calculation\n",
"fe=fo/M #calculating fe\n",
"\n",
"#Result\n",
"print\"Focal length of eye lens= \",fe,\"cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Focal length of eye lens= 2 cm\n"
]
}
],
"prompt_number": 11
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.14,Page no:88"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"#Variable declaration \n",
"fo=75.0 #focal length of eye lens\n",
"D=25.0 #distance of distinct vision\n",
"fe=5.0 #focal of eye lens in cm\n",
"\n",
"#Calculation\n",
"M=-(fo/fe)*(1+(fe/D)) #calculating M\n",
"\n",
"#Result\n",
"print\"Magnifying power = \",M"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Magnifying power = -18.0\n"
]
}
],
"prompt_number": 12
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:3.15,Page no:88"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#Variable declaration \n",
"M=7 #magnifying power\n",
"L=40 #length\n",
"\n",
"#Calculation\n",
"fe=(L/(M+1)) #focal length of eye lens in cm\n",
"fo=(M*fe) #calculating focal length\n",
"\n",
"#Result\n",
"print\"Focal Length of lens=\",fo,\"cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Focal Length of lens= 35 cm\n"
]
}
],
"prompt_number": 13
}
],
"metadata": {}
}
]
}
|