Optics
Time limit: 90 minutes Total marks: 60 Instructions: Answer all three questions. Full derivations, physical reasoning, and (where indicated) an algorithmic outline are required. Use where needed.
Question 1 — Fermat, Snell, and Total Internal Reflection (20 marks)
A ray of light travels from point in medium 1 (refractive index ) to point in medium 2 (refractive index ), crossing a plane interface located at . Let and with , and let the crossing point be .
(a) Write the total optical path length (time ) as a function of . By minimizing it (Fermat's principle), derive Snell's law . (7)
(b) Show that the minimizing condition corresponds to a minimum (not maximum) of the optical path time by examining the sign of the second derivative. (4)
(c) Using Snell's law, derive the critical angle for total internal reflection and state the necessary condition on for it to exist. (4)
(d) An optical fibre has core index and cladding index . A ray enters the flat end face from air. Derive an expression for the maximum acceptance angle (measured from the fibre axis in air) such that the ray still undergoes total internal reflection at the core–cladding boundary, and compute its numerical value. (5)
Question 2 — Two-Lens Instrument and Chromatic Effects (20 marks)
(a) Starting from the refraction-at-a-single-spherical-surface relation derive the thin-lens maker's equation for a lens in air, stating clearly the sign convention used. (6)
(b) Two thin lenses of powers and are placed coaxially a distance apart. Write the combined power as a function of . For a compound microscope-like configuration we want the equivalent power to be . Find . (5)
(c) A thin lens is made of glass with and , radii , . Compute and , and hence the axial chromatic aberration . Explain physically which colour focuses nearer the lens. (6)
(d) Briefly explain, in terms of the maker's equation, how an achromatic doublet (crown + flint) cancels first-order chromatic aberration. (3)
Question 3 — Wave Optics: YDSL, Single Slit, and Resolution (20 marks)
(a) Derive the fringe-width expression for Young's double-slit experiment, stating the small-angle and approximations used. (5)
(b) Starting from the phasor/integral sum over a slit of width , derive the single-slit intensity distribution and state the condition for the minima. (6)
(c) A double slit with slit separation and individual slit width is illuminated by light with . Compute the fringe width, and determine how many bright interference fringes fall within the central diffraction maximum (the "missing-order" analysis). (5)
(d) (Algorithmic / coding outline). Describe a numerical procedure (pseudocode, ~10 lines) that, given arrays of values, the parameters , computes the combined intensity and locates the angular positions of the intensity maxima via a discrete peak-finding step. Explain how the Rayleigh criterion would be encoded to decide if two nearby sources are resolved. (4)
Answer keyMark scheme & solutions
Question 1
(a) Path lengths: , . Optical path . (2) (2) Recognise and (angles from normal). (2) Hence . (1)
(b) . Both terms positive minimum. (4) (2 for correct derivative, 2 for sign argument.)
(c) At critical angle refracted ray grazes (): , so (3) Requires (dense→rare). (1)
(d) At the core–cladding boundary TIR needs incidence angle with . The refraction angle inside the core (from the end face) satisfies for the marginal ray. At entry face: . (2) (2) , so . (1)
Question 2
(a) Apply surface relation at surface 1 (air ): . At surface 2 (), image of surface 1 acts as object: . (3) Add: With object at , : . (2) Sign convention: distances measured from lens, +ve in direction of light propagation; if centre of curvature on outgoing side. (1)
(b) (with in metres). (3) Set : . (2)
(c) . (1) . (1.5) . (1.5) Axial chromatic aberration . (1) Violet has larger → shorter focal length → focuses nearer the lens. (1)
(d) Combining a crown (low dispersion, positive) and flint (high dispersion, negative) lens: total power ; the condition (V = Abbe number) makes to first order, so red and violet share a common focus while net power stays positive. (3)
Question 3
(a) Path difference between slits to point : for small (). (2) Bright fringe: . (2) Fringe width . (1)
(b) Divide slit into elements ; contribution . Amplitude , . (4) Intensity . (1) Minima where : , (1)
(c) . (2) Central diffraction maximum half-angle: . Interference maxima at . Ratio : missing orders at So within : orders = 9 bright fringes fully within central envelope. (3)
(d) Pseudocode:
import numpy as np
theta = np.linspace(-A, A, N)
s = np.sin(theta)
beta = pi*a*s/lam
diff = (np.sinc(beta/pi))**2 # sin(beta)/beta squared
inter = np.cos(pi*d*s/lam)**2
I = diff*inter
# peak find: local maxima
peaks = [i for i in 1..N-2 if I[i]>I[i-1] and I[i]>I[i+1]]
Rayleigh criterion: two sources resolved if the central max of one falls on the first min of the other, i.e. angular separation (aperture ). In code: compute combined intensity of two shifted patterns; check for a dip (local minimum) between the two central peaks — if present, resolved. (4)
[
{"claim":"Fibre acceptance angle sqrt(nc^2-ncl^2)=0.3841 -> 22.6deg","code":"import math\nval=math.sqrt(1.50**2-1.45**2)\nang=math.degrees(math.asin(val))\nresult = abs(val-0.3841)<1e-3 and abs(ang-22.6)<0.2"},
{"claim":"Two-lens spacing for P=6: x=0.10 m","code":"from sympy import symbols, solve\nx=symbols('x')\nsol=solve(7-10*x-6,x)\nresult = sol[0]==sympy.Rational(1,10)"},
{"claim":"Chromatic aberration f_red-f_violet approx 3.7 mm","code":"fr=1/((1.514-1)*10)\nfv=1/((1.524-1)*10)\nresult = abs((fr-fv)-0.00371)<5e-5"},
{"claim":"Fringe width 2.4 mm and 9 fringes in central max","code":"beta=600e-9*2.0/0.5e-3\nratio=0.5e-3/0.1e-3\nfringes=2*(int(ratio)-1)+1\nresult = abs(beta-2.4e-3)<1e-6 and fringes==9"}
]