Optical Elements Part II

Prism

Prisms are wedge-shaped optical elements made of a transparent material, such as glass. A special form of such a prism is an isosceles prism with two sides of equal length. The two equal sides enclose an angle γ, known as the apex angle of the prism. When light passes through this prism, it undergoes refraction twice.

First, the incident angle α1 is changed into a refracted angle β1 as the light enters the prism. This refracted ray then hits the second interface at an angle β2, leading to a second refraction as it exits the prism at an angle α2.

Of particular interest is the total deflection of the incident ray, which is measured by the angle δ. This deflection angle represents the difference between the final outgoing angle α2 and the initial incident angle α1.

Understanding how this deflection angle changes based on the prism’s properties and the incident angle is crucial in various optical applications. In the following sections, we will explore how to calculate this deflection angle and examine its dependence on different parameters.

Figure 1— Refraction of rays on a prism.

Deflection angle

We can calculate the deflection angle δ from a number of considerations. First consider the following relations between the angles in the prism and Snell’s law

β1=sin1(n0n1sin(α1)) β2=γβ1 α2=sin1(n1n0sin(β2)) θ2=α2γ

where θ2 is the angle between the incident surface normal and the outgoing ray. The total deflection angle δ is then

δ=α1β1+α2β2

or

δ=α1+α2γ

from which we obtain

δ=α1+sin1(n1n0sin[γsin1(n0n1sin(α1))])γ

as the deflection angle.

Code
def deflection(alpha_1,gamma,n0,n1):
    g=gamma*np.pi/180
    return(alpha_1+np.arcsin(n1*np.sin(g-np.arcsin(n0*np.sin(alpha_1)/n1))))-g

a_1=np.linspace(0.1,np.pi/2,100)
plt.figure(figsize=(4,4))
plt.plot(a_1*180/np.pi,deflection(a_1,45,1,1.5)*180/np.pi,label=r"$\gamma=45$ °")
plt.plot(a_1*180/np.pi,deflection(a_1,30,1,1.5)*180/np.pi,label=r"$\gamma=30$ °")
plt.plot(a_1*180/np.pi,deflection(a_1,10,1,1.5)*180/np.pi,label=r"$\gamma=10$ °")
plt.xlabel(r"incindence angle $\alpha_1$ [°]")
plt.ylabel(r"deflection angle $\delta$ [°]")
plt.legend()
plt.show()
Figure 2— Deflection angle as a function of the incidence angle for different prism angles.

Minimum deflection angle

If we now would like to know how the deflection angle changes with the incident angle α1, we calculate the derivative of the deflection angle δ with respect to α1, i.e.,

dδdα1=1+dα2dα1.

We are here especially interested in the case, where this change in deflection is reaching a minimum, i.e., dδ/dα1=0. This readily yields

dα2=dα1.

This means a change in the incidence angle dα1 yields an opposite change in the outgoing angle dα2. We may later observe that in the experiment.

As both, the incident and the outgoing angle are related to each other by Snells’s law, we may introduce the derivatives of Snell’s law for both interfaces, e.g.,

  • cos(α1)dα1=ncos(β1)dβ1
  • cos(α2)dα2=ncos(β2)dβ2

where n is the refractive index of the prism material and the material outside is air (nair=1). Replacing cos(α)=1sin2(α) and dividing the two previous equations by each other readily yields

1sin2(α1)1sin2(α2)=n2sin2(α1)n2sin2(α2).

The latter equation is for n1 only satisfied if α1=α2=α. In this case, the light path through the prism must be symmetric and we may write down the minimum deflection angle δmin:

Minimum prism deflection

The minimum deflection angle of an isosceles prism with a prism angle γ is given by

δmin=2αγ.

Given this minimum deflection angle δmin and the properties of the prism, we may also write down Snell’s law using sin(α)=nsin(β), which results in

sin(δmin+γ2)=nsin(γ2).

which indicates the dependence of the deflection in the refractive index n of the prism material.

Dispersion

Very important applications now arise from the fact, that the refractive index is a material property, which depends on the color (frequency or wavelength) of light. We do not yet understand the origin of this dependence. The plots below show the wavelength dependence of three different glasses. You may find much more data on the refractive index of different materials in an online database.

Code
bk7=pd.read_csv("data/BK7.csv",delimiter=",")
sf10=pd.read_csv("data/SF10.csv",delimiter=",")
fk51a=pd.read_csv("data/FK51A.csv",delimiter=",")
plt.figure(figsize=(4,4))
plt.plot(bk7.wl*1000,bk7.n,label="BK7")
plt.plot(sf10.wl*1000,sf10.n,label="SF10")
plt.plot(fk51a.wl*1000,fk51a.n,label="FK51A")
plt.xlim(300,900)
plt.xlabel("wavelength [nm]")
plt.ylabel("refractive index n")
plt.legend()
plt.show()
Figure 3— Refractive index of different glasses as a function of the wavelength.
Code
bk7=pd.read_csv("data/BK7.csv",delimiter=",")
a_1=np.linspace(0.15,np.pi/2,100)
plt.figure(figsize=(7.5,4))
plt.subplot(1,2,1)
for wl in np.linspace(0.400,0.700,100):
    n1=np.interp(wl,bk7.wl,bk7.n)
    c=wavelength_to_rgb(wl*1000, gamma=0.8)
    plt.plot(a_1*180/np.pi,deflection(a_1,45,1,n1)*180/np.pi,color=c)

plt.xlabel(r"incindence angle $\alpha_1$ [°]")
plt.ylabel(r"deflection angle $\delta$ [°]")


plt.subplot(1,2,2)
for wl in np.linspace(0.400,0.700,100):
    n1=np.interp(wl,bk7.wl,bk7.n)
    c=wavelength_to_rgb(wl*1000, gamma=0.8)
    plt.plot(a_1*180/np.pi,deflection(a_1,45,1,n1)*180/np.pi,color=c)

plt.xlabel(r"incindence angle $\alpha_1$ [°]")
plt.ylabel(r"deflection angle $\delta$ [°]")
plt.xlim(30,45)
plt.ylim(25,30)
plt.tight_layout()
plt.show()
Figure 4— Deflection angle as a function of the incidence angle for different wavelengths.

The plots have a general feature, which is that the refractive index is largest at small wavelength (blue colors), while it drops continuously with increasing wavelength towards the red (800 nm). If you would characterize the dependence by the slope, i.e., dn/dλ then all displayed curves show in the visible range

  • dndλ<0, is called normal dispersion

while

  • dndλ>0, is called anomalous dispersion

This wavelength dependence of the refractive index will yield a dependence of the deflection angle on the color of light as well. The change of the deflection angle with the refractive index can be calculated to be

dδdn=2sin(γ/2)1n2sin2(γ/2)

together with the relation

dδdλ=dδdndndλ

we obtain

dδdλ=2sin(γ/2)1n2sin2(γ/2)dndλ.

The refraction of white light through a prism splits the different colors composing white light spatially into a colored spectrum. In this process, light with the longest wavelength (red) is deflected the least, while light with the shortest wavelength (violet) is deflected the most. This occurs because the refractive index of the prism material varies with wavelength, a phenomenon known as dispersion.

Figure 5— Spectrum as created by a prism in the lecture.
(a) Spectrum
(b) Prism
Figure 6— Deflection of different wavelengths of light in a prism with normal dispersion.

Prims spectrograph

This wavelength-dependent refraction is crucial as it forms the basis for spectroscopy, a powerful analytical technique that measures and records the intensity of light as a function of wavelength. Spectroscopy allows scientists to analyze the composition and properties of matter by examining its interaction with light across different wavelengths.

(a) Principle of a prism spectrometer
(b) Technical realization of a prism spectrometer
Figure 7— Principle and technical realization of a prism spectrometer.

DIY prism

If you don’t have a prism at home (which most people don’t), you can create a simple substitute using a mirror and a basin of water. Here’s how:

  1. Place a mirror in a basin of water, partially submerged.
  2. Shine white light from a flashlight onto the mirror.
  3. Observe the reflected and refracted light, paying special attention to the edges.

For better results, you can create a small aperture by making a tiny hole in a piece of black paper and placing it in front of the flashlight.

Figure 8— Home made water prism.

While the dependence of water’s refractive index on wavelength is relatively weak, it’s still sufficient to demonstrate the familiar colors of the rainbow. This phenomenon will be referenced later in our discussion.

Code
#
h2o=pd.read_csv("data/H2O.csv",delimiter=",")
plt.figure(figsize=(6,4))
plt.plot(h2o.wl*1000,h2o.n,label=r"$H_2O$")
plt.xlim(300,900)
plt.ylim(1.3,1.36)
plt.xlabel("wavelength [nm]")
plt.ylabel("refractive index n")
plt.legend()
plt.show()
Figure 9— Refractive index of water as a function of the wavelength.

Prisms are versatile optical components with a wide range of applications across various fields. Here are some common uses of prisms:

Binoculars and Telescopes:

Porro prisms in traditional binoculars and roof prisms in modern designs serve to correct image inversion and provide a compact form. These prisms enable a longer optical path within a shorter physical length, enhancing magnification while maintaining portability. This design is crucial for both binoculars and some telescopes, offering users powerful magnification in a handheld device.

Periscopes:

Right-angle prisms are the key component in periscopes, redirecting light at 90-degree angles. This simple yet effective design allows viewers to see over obstacles or around corners, making periscopes invaluable in submarines and various military applications where direct line of sight is obstructed.

Beam Splitting:

Cube beamsplitters play a vital role in dividing a single beam of light into two separate beams. This capability is essential in various scientific and medical applications, including interferometry, holography, and optical coherence tomography (OCT). The ability to split light beams precisely opens up numerous possibilities in research and diagnostics.

Beam Steering:

Risley prisms, consisting of a pair of rotating wedge prisms, offer precise control over laser beam direction. This technology finds applications in laser scanning, target tracking, and adaptive optics. The ability to steer beams accurately is crucial in fields ranging from military applications to advanced scientific research.

Digital Projectors:

Total Internal Reflection (TIR) prisms are a crucial component in Digital Light Processing (DLP) projectors. They direct light from the lamp to the Digital Micromirror Device (DMD) and then to the projection lens, enabling the high-quality image projection that DLP technology is known for.

Camera Systems:

In Single-Lens Reflex (SLR) cameras, pentaprisms play a critical role in the viewfinder system. They flip the image from the lens to appear upright and correctly oriented in the viewfinder, allowing photographers to accurately compose their shots.

Laser Systems:

Brewster prisms find use in laser systems for polarization and wavelength separation. Additionally, dispersing prisms can be employed for wavelength tuning in certain laser setups, providing precise control over the laser’s output characteristics.

Fiber Optic Communications:

In the realm of telecommunications, prisms are utilized in some fiber optic connectors and switches. They help redirect light between fibers, playing a crucial role in maintaining signal integrity and enabling complex network architectures.

Solar Energy:

Fresnel lenses, a specialized type of prism, are employed in concentrated solar power systems. These lenses focus sunlight efficiently, contributing to the development of more effective solar energy collection technologies.

Head-Up Displays (HUDs):

Prisms are an integral part of HUD systems in both automotive and aviation contexts. They project crucial information onto the windshield or a combiner glass, allowing drivers or pilots to access important data without taking their eyes off their primary viewpoint.

Microscopy:

Nomarski prisms enhance the capabilities of differential interference contrast microscopy. They increase contrast in transparent specimens, enabling scientists to observe details that would be difficult or impossible to see with conventional microscopy techniques.

Optical Coherence Tomography (OCT):

In some OCT systems, prisms are employed for sample arm scanning and reference arm delay. This application of prisms contributes to the high-resolution imaging capabilities of OCT, which is particularly valuable in medical diagnostics, especially in ophthalmology.