6. Tools of an Astronomer#
6.1. Telescope Aperture and Magnification#
6.1.1. Aperture#
The light-gathering power of a telescope is proportional to the area \(A\) of its lens or mirror. Such optics are constructed as thin or thick cylinder because it’s easier to even out the glass or metal by using the centripetal force from spinning. It is eaiser measure the aperture (diameter) of a lens or mirror because you don’t need to locate the exact center. As a result, we use the area of a circle but substitute for the radius using the diameter (\(r = D/2\)) to get
The amount of light that telescope collects is proportional to the square of the aperture.
How does the light-gathering power of a 20-cm (or 8 in) telescope compare with the pupil of your eye (\(D_{\rm eye} = 6\ {\rm mm}\)) in the dark?
There are two ways to answer this question:
substitute directly, calculate the two areas, and find the ratio,
substitute symbolically, look for cancelations, and find the ratio.
The first option requires more effort, so we’ll go with option 2.
Let’s define the area of each aperture symbolically as
Then the ratio of the two areas is
Note that the \(\pi/4\) factor cancels because we used a ratio. To calculate the answer, we subsitute the values for the respective diameters
Thus, the light-gathering power of a 20-cm (8 in) telescope is more than 1,000 times greater than the power of your eye.
Now let’s compare a 20-cm telescope to the James Webb Space Telescope (JWST) that has an effective aperture of 6.5 m. We can follow the same procedure to get
The JWST has more than 1,000 times the light-gathering power of a 20-cm telescope. This means that JWST has more than a million times the light-gathering power of your eye!
Below is a python script demonstrating the above calculations.
D_20cm = 0.2 #diameter of a 20-cm aperture (in m)
D_eye = 0.006 #diameter of your pupil in the dark (in m)
LGP_ratio = (D_20cm/D_eye)**2
print("The light-gathering power ratio between a 20-cm telescope and your eye is %i." % LGP_ratio)
print("------------")
D_JWST = 6.5 #effective diameter of JWST (in m)
LGP_ratio = (D_JWST/D_20cm)**2
print("The light-gathering power ratio between JWST and a20-cm telescope is %i." % LGP_ratio)
The light-gathering power ratio between a 20-cm telescope and your eye is 1111.
------------
The light-gathering power ratio between JWST and a20-cm telescope is 1056.
6.1.2. Magnification#
Most telescopes have a set focal length, where the magnification is dependent on the focal length of the eyepiece. The magnification of the image is given by the ratio of the focal lengths, or
Suppose the focal length of a 20-cm telescope is 2000 mm (or 2 m). A standard eyepiece has a focal length of 25 mm (or 0.025 m). The 20-cm telescope will have a magnification \(m\):
That telescope and eyepiece combination magnifies the image by a factor of 80. A crater on the Moon will appear \(80\times\) larger than when viewed with the naked (unaided) eye.
What happens if we swap out an eyepiece with a smaller focal length (e.g., 8 mm)? Will the magnification increase or decrease?
We can see from the equation for magnification that a smaller eyepiece focal length leads to a smaller denominator. When you decrease the denominator, the manification increases (e.g., \(1/4 < 1/3 < 1/2\)). With this intuition in mind, we can calculate the new magnification as
We found that the 8-mm eyepiece increases the magnfication to 250.
A higher magnification will not necessarily imporove the image quality. A faint and fuzzy image will not look clearer when magnified. To improve the image quality, you need to collect more photons, which can only be done by increasing the aperture.
6.2. Diffraction Limit#
The practical limit on the angular resolution of a telescope \(\theta\) is called the diffraction limit. The formula for the diffraction limit is defined using the first zero point within the diffraction pattern between two sources.
Using the above description we have
The factor \(1.22\) comes from the first zero of the order-one Bessel function of the first kind \(J_1(x)\) divided by \(\pi\) (see here). Also, this formula provides the limit in radians.
Astronomer’s usually measure angles on the sky using arcseconds, which is \(1/3600\) of a degree. Thus, we can convert the above equation so that it returns arcseconds instead of radians to avoid doing the unit conversion multiple times. Astronomer’s also use an approximate formula where they round \(1.22\) to \(1\). With these caveats in mind, we get the formula
Both \(\lambda\) and \(D\) must have the same units.
Using the average size of the human pupil (6 mm), what is the angular resolution limit \(\theta (\text{arcsec})\) in green light \((550\ {\rm nm})\)?
Before we can begin calculating, we must convert the wavelength from \(\rm nm\) to \(\rm mm\). There are \(10^6\ {\rm nm}\) in \(1\ {\rm mm}\), where the wavelength (in mm) is
Now that \(\lambda\) and \(D\) are in the same units, we can proceed with the calculation to get
The typical actual resolution of the human eye is \(60\ {\rm arcsec}\) (or \(1\ {\rm arcmin}\)), where the above calculation is about 1/3 of this value. We do not achieve the theoretical resolution with our eyes because the physical properties of our eyes are not perfect.
How does the resolution of the human eye compare with that of JWST?
We can compare using a ratio of \(\theta_{\rm JWST}/\theta_{\rm eye}\) and we’ll assume that \(\lambda\) is same in both cases. As a result, we find
This means that JWST has \({\sim}1,000\) times the resolving power than the human eye.
import numpy as np
lamb_green = 550 #green light at 550 nm
D_eye = 6 #diameter of a human pupil (in mm)
lamb_green_mm = lamb_green/1e6
theta_arcsec = 2.06e5*lamb_green_mm/D_eye
print("The angular resolution of the human eye (at 550 nm) is %i arcsec." % np.round(theta_arcsec))
print("----------------")
D_JWST = 6.5 #effective diameter of JWST
D_eye_m = 0.006 #diamter of a human pupil (in m)
res_ratio = D_JWST/D_eye_m
print("The resolution ratio betwen JWST and the human eye is %i." % res_ratio)
The angular resolution of the human eye (at 550 nm) is 19 arcsec.
----------------
The resolution ratio betwen JWST and the human eye is 1083.