#set document(title: "4.3 Double-Slit Diffraction", author: "OpenStax / XYZ Homework") #set page(width: 8.5in, height: auto, margin: 1in) #import "@preview/cetz:0.5.2" #set text(font: ("STIX Two Text", "Libertinus Serif", "New Computer Modern"), size: 10.5pt, lang: "en") #show math.equation: set text(font: ("STIX Two Math", "New Computer Modern Math")) #set par(justify: true, leading: 0.62em, spacing: 0.9em) #set enum(spacing: 1.1em) // room between list items so tall inline fractions don't collide #set list(spacing: 1.1em) #set table(stroke: 0.5pt + rgb("#c7ccd3")) #let BLUE = rgb("#183B6F") // brand navy — section bars + example/solution labels (white on navy 11.09:1) #let ORANGE = rgb("#A94509") // brand primary-700 — AA-safe deep orange for TEXT (5.93:1 on white; raw brand #F37021 is 2.94:1 and must never carry text) #let RED = rgb("#DC2626") // brand error-600 #let GREEN = rgb("#059669") // brand success-600 (decoration only; small green text uses green-text #007942) #show heading.where(level: 1): it => block(width: 100%, above: 0pt, below: 16pt, fill: gradient.linear(BLUE, rgb("#2C5AA0")), inset: (x: 14pt, y: 12pt), radius: 3pt, text(fill: white, weight: "bold", size: 19pt, it.body)) #show heading.where(level: 2): it => block(width: 100%, above: 18pt, below: 10pt, fill: BLUE, inset: (x: 10pt, y: 6pt), radius: 2pt, text(fill: white, weight: "bold", size: 12pt, it.body)) #show heading.where(level: 3): it => text(fill: ORANGE, weight: "bold", size: 12.5pt, it.body) #show heading.where(level: 4): it => text(fill: BLUE, weight: "bold", size: 10.5pt, it.body) #let examplebox(label, title, body) = block(width: 100%, breakable: true, fill: rgb("#EFF1F5"), stroke: 0.5pt + rgb("#CFDDF0"), radius: 4pt, inset: 10pt, above: 12pt, below: 12pt)[ #block(below: 6pt)[#box(fill: BLUE, inset: (x: 6pt, y: 2pt), radius: 2pt, text(fill: white, weight: "bold", size: 8.5pt, label)) #h(0.4em) #strong[#title]] #body] // rail = decorative left rule (raw brand token); labelcolor = AA-safe label text shade #let notebox(label, rail, labelcolor, tint, body) = block(width: 100%, breakable: true, fill: tint, stroke: (left: 3pt + rail), inset: (left: 10pt, rest: 8pt), radius: (right: 4pt), above: 11pt, below: 11pt)[ #text(fill: labelcolor, weight: "bold", size: 7.5pt, tracking: 0.5pt)[#upper(label)] #linebreak() #body] #let solutionbox(body) = block(above: 4pt, below: 8pt)[ #text(fill: BLUE, weight: "bold", size: 8.5pt)[Solution] #linebreak() #body] #let figph(msg) = block(width: 100%, height: 60pt, fill: rgb("#f6f7f9"), stroke: (paint: rgb("#c7ccd3"), dash: "dashed"), radius: 4pt, inset: 10pt)[ #align(center + horizon, text(fill: rgb("#889"), style: "italic", size: 9pt, msg))] // Standardize inlined figure sizes: measure the natural CeTZ canvas, then scale to a // consistent envelope (aspect-aware; see build_typst.py FIG_* constants). Unlike the // print preamble, dimensions are FLOORED: in an editor a user can trim a figure to a // degenerate 1-D shape (a bare line), and w/h or tw/w would then divide by zero. #let _STD_W = 3.5 #let _WIDE_W = 5.6 #let _MAX_H = 3.4 #let _ASPECT_WIDE = 2.2 #let _UPSCALE_MAX = 1.15 #let stdfig(body) = context { let m = measure(body) let w = calc.max(m.width / 1in, 0.01) let h = calc.max(m.height / 1in, 0.01) let tw = if w / h > _ASPECT_WIDE { _WIDE_W } else { _STD_W } let s = calc.min(tw / w, _MAX_H / h, _UPSCALE_MAX) align(center, box(scale(x: s * 100%, y: s * 100%, reflow: true, body))) } #show figure: set block(breakable: false) #set figure(gap: 8pt) #show figure.caption: set text(size: 8.5pt, fill: rgb("#555")) == 4.3#h(0.6em)Double-Slit Diffraction When we studied interference in Young’s double-slit experiment, we ignored the diffraction effect in each slit. We assumed that the slits were so narrow that on the screen you saw only the interference of light from just two point sources. If the slit is smaller than the wavelength, then (a) shows that there is just a spreading of light and no peaks or troughs on the screen. Therefore, it was reasonable to leave out the diffraction effect in that chapter. However, if you make the slit wider, (b) and (c) show that you cannot ignore diffraction. In this section, we study the complications to the double-slit experiment that arise when you also need to take into account the diffraction effect of each slit. To calculate the diffraction pattern for two (or any number of) slits, we need to generalize the method we just used for a single slit. That is, across each slit, we place a uniform distribution of point sources that radiate Huygens wavelets, and then we sum the wavelets from all the slits. This gives the intensity at any point on the screen. Although the details of that calculation can be complicated, the final result is quite simple: #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Two-Slit Diffraction Pattern] The diffraction pattern of two slits of width #emph[a] that are separated by a distance #emph[d] is the interference pattern of two point sources separated by #emph[d] multiplied by the diffraction pattern of a slit of width #emph[a]. ] In other words, the #emph[locations] of the interference fringes are given by the equation #math.equation(block: false, alt: "d sin θ equals m λ")[$d #h(0.2em) "sin" #h(0.2em) θ = m λ$], the same as when we considered the slits to be point sources, but the #emph[intensities] of the fringes are now reduced by diffraction effects, according to . \[Note that in the chapter on interference, we wrote #math.equation(block: false, alt: "d sin θ equals m λ")[$d #h(0.2em) "sin" #h(0.2em) θ = m λ$] and used the integer #emph[m] to refer to interference fringes. also uses #emph[m], but this time to refer to diffraction minima. If both equations are used simultaneously, it is good practice to use a different variable (such as #emph[n]) for one of these integers in order to keep them distinct.\] Interference and diffraction effects operate simultaneously and generally produce minima at different angles. This gives rise to a complicated pattern on the screen, in which some of the maxima of interference from the two slits are missing if the maximum of the interference is in the same direction as the minimum of the diffraction. We refer to such a missing peak as a #strong[missing order]. One example of a diffraction pattern on the screen is shown. The solid line with multiple peaks of various heights is the intensity observed on the screen. It is a product of the interference pattern of waves from separate slits and the diffraction of waves from within one slit. The section's rule made visible: two slits of width a a distance d apart give the two-point interference pattern cos²(πd sin θ/λ) multiplied by the single-slit envelope (sin(πa sin θ/λ)/(πa sin θ/λ))². Both are percentages of the central maximum; the envelope is dashed, and the slit width is held at the example's a = 2λ so that only d moves. At the example's d = 6λ the m = 1 fringe sits at 9.59° and reaches 68% of the centre — the value the example computes — because the envelope has already dropped that far, and the m = 3 fringe is a missing order: it wants to sit at 30°, which is exactly where the envelope's first zero is, so nothing is there. Slide d and the fringes crowd together while the envelope, which depends only on a, never moves. Every time d/a comes out a whole number a fringe lands on an envelope zero and that whole family of orders goes missing.{"functions":\[{"color":"\#1f4e79","domain":\[-90,90\],"expression":"100\*(cos(pi\*dw\*sin(theta\*pi/180)))^2\*(sin(2\*pi\*sin(theta\*pi/180)+0.0000001)/(2\*pi\*sin(theta\*pi/180)+0.0000001))^2","expression2":"","id":"pattern","inequality":"lt","lineDash":\[\],"lineWidth":2,"mode":"cartesian","tMax":10,"tMin":-10,"variable":"theta","visible":true},{"color":"\#b8442a","domain":\[-90,90\],"expression":"100\*(sin(2\*pi\*sin(theta\*pi/180)+0.0000001)/(2\*pi\*sin(theta\*pi/180)+0.0000001))^2","expression2":"","id":"envelope","inequality":"lt","lineDash":\[6,4\],"lineWidth":2,"mode":"cartesian","tMax":10,"tMin":-10,"variable":"theta","visible":true}\],"grid":{"axisColor":"\#333333","gridColor":"\#cccccc","majorSpacing":10,"minorGridColor":"\#eeeeee","showAxes":true,"showLabels":true},"parameters":\[{"id":"up3-4-4-dw","label":"Slit separation in wavelengths d/\\u03bb (slit width fixed at a = 2\\u03bb)","max":12,"min":2,"name":"dw","step":0.5,"unit":"","value":6}\],"title":"Double-slit diffraction and missing orders","version":1,"viewport":{"centerX":0,"centerY":45,"scale":4.1228}}#figure(figph[Figure shows a graph of I by I0 versus theta. Three curves are shown on the graph. Interference curve has a smaller wavelength. Diffraction curve has a larger wavelength and a y value of 1 at x equal to 0. Resultant curve has the same wavelength as the interference and its amplitude is modified according to the diffraction curve. Each wave crest of the interference wave is labeled m equal to 1, m equal to 2 and so on. The diffraction wave has a zero at m equal to 3, and theta equal to 30 degrees. Hence, the resultant wave, too, has a zero. This is labeled missing order m equal to 3.], alt: "Figure shows a graph of I by I0 versus theta. Three curves are shown on the graph. Interference curve has a smaller wavelength. Diffraction curve has a larger wavelength and a y value of 1 at x equal to 0. Resultant curve has the same wavelength as the interference and its amplitude is modified according to the diffraction curve. Each wave crest of the interference wave is labeled m equal to 1, m equal to 2 and so on. The diffraction wave has a zero at m equal to 3, and theta equal to 30 degrees. Hence, the resultant wave, too, has a zero. This is labeled missing order m equal to 3.", caption: [Diffraction from a double slit. The purple line with peaks of the same height are from the interference of the waves from two slits; the blue line with one big hump in the middle is the diffraction of waves from within one slit; and the thick red line is the product of the two, which is the pattern observed on the screen. The plot shows the expected result for a slit width #math.equation(block: false, alt: "a equals 2 λ")[$a = 2 "λ"$] and slit separation #math.equation(block: false, alt: "d equals 6 λ")[$d = 6 "λ"$]. The maximum of #math.equation(block: false, alt: "m equals plus or minus 3")[$m = ± 3$] order for the interference is missing because the minimum of the diffraction occurs in the same direction.]) #examplebox("Example 1")[Intensity of the Fringes][ shows that the intensity of the fringe for #math.equation(block: false, alt: "m equals 3")[$m = 3$] is zero, but what about the other fringes? Calculate the intensity for the fringe at #math.equation(block: false, alt: "m equals 1")[$m = 1$] relative to #math.equation(block: false, alt: "I sub 0 ,")[$I_(0) ,$] the intensity of the central peak. Strategy Determine the angle for the double-slit interference fringe, using the equation from Interference, then determine the relative intensity in that direction due to diffraction by using . Solution From the chapter on interference, we know that the bright interference fringes occur at #math.equation(block: false, alt: "d sin θ equals m λ")[$d #h(0.2em) "sin" #h(0.2em) θ = m λ$], or #math.equation(block: true, alt: "sin θ equals the fraction m λ over d .")[$"sin" #h(0.2em) θ = frac(m λ, d) .$] From , #math.equation(block: true, alt: "I equals I sub 0 open parenthesis the fraction sin β over β close parenthesis squared , where β equals the fraction ϕ over 2 equals the fraction π a sin θ over λ .")[$I = I_(0) attach(( frac("sin" #h(0.2em) β, β) ), t: 2) , #h(0.2em) "where" #h(0.2em) β = frac(ϕ, 2) = frac(π a #h(0.2em) "sin" #h(0.2em) θ, λ) .$] Substituting from above, #math.equation(block: true, alt: "β equals the fraction π a sin θ over λ equals the fraction π a over λ times the fraction m λ over d equals the fraction m π a over d .")[$β = frac(π a #h(0.2em) "sin" #h(0.2em) θ, λ) = frac(π a, λ) · frac(m λ, d) = frac(m π a, d) .$] For #math.equation(block: false, alt: "a equals 2 λ")[$a = 2 λ$], #math.equation(block: false, alt: "d equals 6 λ")[$d = 6 λ$], and #math.equation(block: false, alt: "m equals 1")[$m = 1$], #math.equation(block: true, alt: "β equals the fraction open parenthesis 1 close parenthesis π open parenthesis 2 λ close parenthesis over open parenthesis 6 λ close parenthesis equals the fraction π over 3 .")[$β = frac(( 1 ) π ( 2 λ ), ( 6 λ )) = frac(π, 3) .$] Then, the intensity is #math.equation(block: true, alt: "I equals I sub 0 open parenthesis the fraction sin β over β close parenthesis squared equals I sub 0 open parenthesis the fraction sin open parenthesis π / 3 close parenthesis over π / 3 close parenthesis squared equals 0.684 I sub 0 .")[$I = I_(0) attach(( frac("sin" #h(0.2em) β, β) ), t: 2) = I_(0) attach(( frac("sin" #h(0.2em) ( π "/" 3 ), π "/" 3) ), t: 2) = 0.684 I_(0) .$] Significance Note that this approach is relatively straightforward and gives a result that is almost exactly the same as the more complicated analysis using phasors to work out the intensity values of the double-slit interference (thin line in ). The phasor approach accounts for the downward slope in the diffraction intensity (blue line) so that the peak #emph[near] #math.equation(block: false, alt: "m equals 1")[$m = 1$] occurs at a value of #math.equation(block: false, alt: "θ")[$θ$] ever so slightly smaller than we have shown here. ] #examplebox("Example 2")[Two-Slit Diffraction][ Suppose that in Young’s experiment, slits of width 0.020 mm are separated by 0.20 mm. If the slits are illuminated by monochromatic light of wavelength 500 nm, how many bright fringes are observed in the central peak of the diffraction pattern? Solution From , the angular position of the first diffraction minimum is #math.equation(block: false, alt: "θ approximately equals sin θ equals the fraction λ over a equals the fraction 5.0 times 10 to the power −7 m over 2.0 times 10 to the power −5 m equals 2.5 times 10 to the power −2 rad .")[$θ ≈ #h(0.2em) "sin" #h(0.2em) θ = frac(λ, a) = frac(5.0 #h(0.2em) × #h(0.2em) 10^(−7) #h(0.2em) "m", 2.0 #h(0.2em) × #h(0.2em) 10^(−5) #h(0.2em) "m") = 2.5 #h(0.2em) × #h(0.2em) 10^(−2) #h(0.2em) "rad" .$] Using #math.equation(block: false, alt: "d sin θ equals m λ")[$d #h(0.2em) "sin" #h(0.2em) θ = m λ$] for #math.equation(block: false, alt: "θ equals 2.5 times 10 to the power −2 rad")[$θ = 2.5 #h(0.2em) × #h(0.2em) 10^(−2) #h(0.2em) "rad"$], we find #math.equation(block: true, alt: "m equals the fraction d sin θ over λ equals the fraction open parenthesis 0.20 mm close parenthesis open parenthesis 2.5 times 10 to the power −2 rad close parenthesis over open parenthesis 5.0 times 10 to the power −7 m close parenthesis equals 10 ,")[$m = frac(d #h(0.2em) "sin" #h(0.2em) θ, λ) = frac(( 0.20 #h(0.2em) "mm" ) ( 2.5 #h(0.2em) × #h(0.2em) 10^(−2) #h(0.2em) "rad" ), ( 5.0 #h(0.2em) × #h(0.2em) 10^(−7) #h(0.2em) "m" )) = 10 ,$] which is the maximum interference order that fits inside the central peak. We note that #math.equation(block: false, alt: "m equals plus or minus 10")[$m = ± 10$] are missing orders as #math.equation(block: false, alt: "θ")[$θ$] matches exactly. Accordingly, we observe bright fringes for #math.equation(block: true, alt: "m equals −9 , −8 , −7 , −6 , −5 , −4 , −3 , −2 , −1 , 0 , plus 1 , plus 2 , plus 3 , plus 4 , plus 5 , plus 6 , plus 7 , plus 8 , and plus 9")[$m = −9 , −8 , −7 , −6 , −5 , −4 , −3 , −2 , −1 , 0 , + 1 , + 2 , + 3 , + 4 , + 5 , + 6 , + 7 , + 8 , #h(0.2em) "and" #h(0.2em) + 9$] for a total of 19 bright fringes. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ For the experiment in , show that #math.equation(block: false, alt: "m equals 20")[$m = 20$] is also a missing order. #solutionbox[ From #math.equation(block: false, alt: "d sin θ equals m λ")[$d #h(0.2em) "sin" #h(0.2em) θ = m λ$], the interference maximum occurs at #math.equation(block: false, alt: "2.87 °")[$2.87 "°"$] for #math.equation(block: false, alt: "m equals 20 .")[$m = 20 .$] From , this is also the angle for the second diffraction minimum. (#emph[Note:] Both equations use the index #emph[m] but they refer to separate phenomena.) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Explore the effects of double-slit diffraction. In #link("https://openstax.org/l/21doubslitdiff")[this simulation] written by Fu-Kwun Hwang, select #math.equation(block: false, alt: "N equals 2")[$N = 2$] using the slider and see what happens when you control the slit width, slit separation and the wavelength. Can you make an order go “missing?” ] === Summary - With real slits with finite widths, the effects of interference and diffraction operate simultaneously to form a complicated intensity pattern. - Relative intensities of interference fringes within a diffraction pattern can be determined. - Missing orders occur when an interference maximum and a diffraction minimum are located together. === Conceptual Questions Shown below is the central part of the interference pattern for a pure wavelength of red light projected onto a double slit. The pattern is actually a combination of single- and double-slit interference. Note that the bright spots are evenly spaced. Is this a double- or single-slit characteristic? Note that some of the bright spots are dim on either side of the center. Is this a single- or double-slit characteristic? Which is smaller, the slit width or the separation between slits? Explain your responses. #figure(figph[Figure is an image showing red interference pattern on a black background. The central part has brighter lines. The lines are cut off at the top and bottom, seemingly enclosed between two sinusoidal waves of opposite phase.], alt: "Figure is an image showing red interference pattern on a black background. The central part has brighter lines. The lines are cut off at the top and bottom, seemingly enclosed between two sinusoidal waves of opposite phase.", caption: [(credit: PASCO)]) === Problems Two slits of width #math.equation(block: false, alt: "2 μ m,")[$2 #h(0.2em) μ "m,"$] each in an opaque material, are separated by a center-to-center distance of #math.equation(block: false, alt: "6 μ m .")[$6 #h(0.2em) μ "m" .$] A monochromatic light of wavelength 450 nm is incident on the double-slit. One finds a combined interference and diffraction pattern on the screen. (a) How many peaks of the interference will be observed in the central maximum of the diffraction pattern? (b) How many peaks of the interference will be observed if the slit width is doubled while keeping the distance between the slits same? (c) How many peaks of interference will be observed if the slits are separated by twice the distance, that is, #math.equation(block: false, alt: "12 μ m,")[$12 #h(0.2em) μ "m,"$] while keeping the widths of the slits same? (d) What will happen in (a) if instead of 450-nm light another light of wavelength 680 nm is used? (e) What is the value of the ratio of the intensity of the central peak to the intensity of the next bright peak in (a)? (f) Does this ratio depend on the wavelength of the light? (g) Does this ratio depend on the width or separation of the slits? A double slit produces a diffraction pattern that is a combination of single- and double-slit interference. Find the ratio of the width of the slits to the separation between them, if the first minimum of the single-slit pattern falls on the fifth maximum of the double-slit pattern. (This will greatly reduce the intensity of the fifth maximum.) #solutionbox[ 0.200 ] For a double-slit configuration where the slit separation is four times the slit width, how many interference fringes lie in the central peak of the diffraction pattern? Light of wavelength 500 nm falls normally on 50 slits that are #math.equation(block: false, alt: "2.5 times 10 to the power −3 mm")[$2.5 #h(0.2em) × #h(0.2em) 10^(−3) #h(0.2em) "mm"$] wide and spaced #math.equation(block: false, alt: "5.0 times 10 to the power −3 mm")[$5.0 #h(0.2em) × #h(0.2em) 10^(−3) #h(0.2em) "mm"$] apart. How many interference fringes lie in the central peak of the diffraction pattern? #solutionbox[ 3 ] A monochromatic light of wavelength 589 nm incident on a double slit with slit width #math.equation(block: false, alt: "2.5 μ m")[$2.5 #h(0.2em) μ "m"$] and unknown separation results in a diffraction pattern containing nine interference peaks inside the central maximum. Find the separation of the slits. When a monochromatic light of wavelength 430 nm incident on a double slit of slit separation #math.equation(block: false, alt: "5 μ m")[$5 #h(0.2em) μ "m"$], there are 11 interference fringes in its central maximum. How many interference fringes will be in the central maximum of a light of the same wavelength and slit widths, but a new slit separation of #math.equation(block: false, alt: "4 μ m")[$4 #h(0.2em) μ "m"$]? #solutionbox[ 9 ] Determine the intensities of two interference peaks other than the central peak in the central maximum of the diffraction, if possible, when a light of wavelength 628 nm is incident on a double slit of width 500 nm and separation 1500 nm. Use the intensity of the central spot to be #math.equation(block: false, alt: "1 mW/cm squared")[$attach(1 #h(0.2em) "mW/cm", t: 2)$].