Lesson 4 of 15

The Lensmaker's Equation

The Lensmaker's Equation

The lensmaker's equation connects a lens's focal length to its physical properties: the refractive index of the glass and the radii of curvature of its two surfaces.

The Equation

1f=(n1)(1R11R2)\frac{1}{f} = (n - 1)\left(\frac{1}{R_1} - \frac{1}{R_2}\right)

Where:

  • nn is the refractive index of the lens material
  • R1R_1 is the radius of curvature of the first surface (positive if center of curvature is to the right)
  • R2R_2 is the radius of curvature of the second surface (positive if center of curvature is to the right)
  • ff is the focal length

Sign Convention for Radii

  • If a surface is convex toward incoming light: R>0R > 0
  • If a surface is concave toward incoming light: R<0R < 0

For a standard biconvex lens: R1>0R_1 > 0 and R2<0R_2 < 0.

Example: A biconvex glass lens (n=1.5n = 1.5) with R1=20cmR_1 = 20\,\text{cm} and R2=20cmR_2 = -20\,\text{cm}:

1f=(1.51)(120120)=0.5×0.1=0.05\frac{1}{f} = (1.5 - 1)\left(\frac{1}{20} - \frac{1}{-20}\right) = 0.5 \times 0.1 = 0.05 f=20cmf = 20\,\text{cm}

Two-Lens System

When two thin lenses are separated by a distance dd, the combined focal length is:

1f=1f1+1f2df1f2\frac{1}{f} = \frac{1}{f_1} + \frac{1}{f_2} - \frac{d}{f_1 f_2}

When the lenses are in contact (d=0d = 0):

1f=1f1+1f2\frac{1}{f} = \frac{1}{f_1} + \frac{1}{f_2}

Your Task

Implement the lensmaker's equation and the two-lens combination formula.

Python runtime loading...
Loading...
Click "Run" to execute your code.