#set document(title: "7.3 The Schrӧdinger Equation", 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")) == 7.3#h(0.6em)The Schrӧdinger Equation In the preceding two sections, we described how to use a quantum mechanical wave function and discussed Heisenberg’s uncertainty principle. In this section, we present a complete and formal theory of quantum mechanics that can be used to make predictions. In developing this theory, it is helpful to review the wave theory of light. For a light wave, the electric field #emph[E] (#emph[x],#emph[t]) obeys the relation #math.equation(block: true, alt: "the fraction ∂ squared E over ∂ x squared equals the fraction 1 over c squared the fraction ∂ squared E over ∂ t squared ,")[$frac(∂^(2) E, ∂ x^(2)) = frac(1, c^(2)) #h(0.2em) frac(∂^(2) E, ∂ t^(2)) ,$] where #emph[c] is the speed of light and the symbol #math.equation(block: false, alt: "∂")[$∂$] represents a #emph[partial derivative]. (Recall from Oscillations that a partial derivative is closely related to an ordinary derivative, but involves functions of more than one variable. When taking the partial derivative of a function by a certain variable, all other variables are held constant.) A light wave consists of a very large number of photons, so the quantity #math.equation(block: false, alt: "| E open parenthesis x , t close parenthesis | squared")[$attach(| E ( x , t ) |, t: 2)$] can interpreted as a probability density of finding a single photon at a particular point in space (for example, on a viewing screen). There are many solutions to this equation. One solution of particular importance is #math.equation(block: true, alt: "E open parenthesis x , t close parenthesis equals A sin open parenthesis k x minus ω t close parenthesis ,")[$E ( x , t ) = A #h(0.2em) "sin" ( k x − ω t ) ,$] where #emph[A] is the amplitude of the electric field, #emph[k] is the wave number, and #math.equation(block: false, alt: "ω")[$ω$] is the angular frequency. Combing this equation with gives #math.equation(block: true, alt: "k squared equals the fraction ω squared over c squared .")[$k^(2) = frac(ω^(2), c^(2)) .$] According to de Broglie’s equations, we have #math.equation(block: false, alt: "p equals ℏ k")[$p = ℏ k$] and #math.equation(block: false, alt: "E equals ℏ ω")[$E = ℏ ω$]. Substituting these equations in gives #math.equation(block: true, alt: "p equals the fraction E over c ,")[$p = frac(E, c) ,$] or #math.equation(block: true, alt: "E equals p c .")[$E = p c .$] Therefore, according to Einstein’s general energy-momentum equation , describes a particle with a zero rest mass. This is consistent with our knowledge of a photon. This process can be reversed. We can begin with the energy-momentum equation of a particle and then ask what wave equation corresponds to it. The energy-momentum equation of a nonrelativistic particle in one dimension is #math.equation(block: true, alt: "E equals the fraction p squared over 2 m plus U open parenthesis x , t close parenthesis ,")[$E = frac(p^(2), 2 m) + U ( x , t ) ,$] where #emph[p] is the momentum, #emph[m] is the mass, and #emph[U] is the potential energy of the particle. The wave equation that goes with it turns out to be a key equation in quantum mechanics, called #strong[Schrӧdinger’s time-dependent equation]. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[The Schrӧdinger Time-Dependent Equation] The equation describing the energy and momentum of a wave function is known as the Schrӧdinger equation: #math.equation(block: true, alt: "minus the fraction ℏ squared over 2 m the fraction ∂ squared Ψ open parenthesis x , t close parenthesis over ∂ x squared plus U open parenthesis x , t close parenthesis Ψ open parenthesis x , t close parenthesis equals i ℏ the fraction ∂ Ψ open parenthesis x , t close parenthesis over ∂ t .")[$− frac(ℏ^(2), 2 m) #h(0.2em) frac(∂^(2) "Ψ" ( x , t ), ∂ x^(2)) + U ( x , t ) "Ψ" ( x , t ) = i ℏ frac(∂ "Ψ" ( x , t ), ∂ t) .$] ] As described in Potential Energy and Conservation of Energy, the force on the particle described by this equation is given by #math.equation(block: true, alt: "F equals minus the fraction ∂ U open parenthesis x , t close parenthesis over ∂ x .")[$F = − frac(∂ U ( x , t ), ∂ x) .$] This equation plays a role in quantum mechanics similar to Newton’s second law in classical mechanics. Once the potential energy of a particle is specified—or, equivalently, once the force on the particle is specified—we can solve this differential equation for the wave function. The solution to Newton’s second law equation (also a differential equation) in one dimension is a function #emph[x] (#emph[t]) that specifies where an object is at any time #emph[t]. The solution to Schrӧdinger’s time-dependent equation provides a tool—the wave function—that can be used to determine where the particle is #emph[likely] to be. This equation can be also written in two or three dimensions. Solving Schrӧdinger’s time-dependent equation often requires the aid of a computer. Consider the special case of a free particle. A free particle experiences no force #math.equation(block: false, alt: "open parenthesis F equals 0 close parenthesis .")[$( F = 0 ) .$] Based on , this requires only that #math.equation(block: true, alt: "U open parenthesis x , t close parenthesis equals U sub 0 equals constant .")[$U ( x , t ) = U_(0) = "constant" .$] For simplicity, we set #math.equation(block: false, alt: "U sub 0 equals 0")[$U_(0) = 0$]. Schrӧdinger’s equation then reduces to #math.equation(block: true, alt: "minus the fraction ℏ squared over 2 m the fraction ∂ squared Ψ open parenthesis x , t close parenthesis over ∂ x squared equals i ℏ the fraction ∂ Ψ open parenthesis x , t close parenthesis over ∂ t .")[$− frac(ℏ^(2), 2 m) #h(0.2em) frac(∂^(2) "Ψ" ( x , t ), ∂ x^(2)) = i ℏ frac(∂ "Ψ" ( x , t ), ∂ t) .$] A valid solution to this equation is #math.equation(block: true, alt: "Ψ open parenthesis x , t close parenthesis equals A e to the power i open parenthesis k x minus ω t close parenthesis .")[$"Ψ" ( x , t ) = A e^(i ( k x − ω t )) .$] Not surprisingly, this solution contains an #strong[imaginary number] #math.equation(block: false, alt: "open parenthesis i equals the square root of −1 close parenthesis")[$( i = sqrt(−1) )$] because the differential equation itself contains an imaginary number. As stressed before, however, quantum-mechanical predictions depend only on #math.equation(block: false, alt: "| Ψ open parenthesis x , t close parenthesis | squared")[$attach(| "Ψ" ( x , t ) |, t: 2)$], which yields completely real values. Notice that the real plane-wave solutions, #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A sin open parenthesis k x minus ω t close parenthesis")[$"Ψ" ( x , t ) = A #h(0.2em) "sin" ( k x − ω t )$] and #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A cos open parenthesis k x minus ω t close parenthesis ,")[$"Ψ" ( x , t ) = A #h(0.2em) "cos" ( k x − ω t ) ,$] do not obey Schrödinger’s equation. The temptation to think that a wave function can be seen, touched, and felt in nature is eliminated by the appearance of an imaginary number. In Schrӧdinger’s theory of quantum mechanics, the wave function is merely a tool for calculating things. If the potential energy function (#emph[U]) does not depend on time, it is possible to show that #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "Ψ open parenthesis x , t close parenthesis equals ψ open parenthesis x close parenthesis e to the power − i ω t")[$"Ψ" ( x , t ) = ψ ( x ) e^("−" i ω t)$] ] satisfies Schrӧdinger’s time-dependent equation, where #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis")[$ψ ( x )$] is a #emph[time]-independent function and #math.equation(block: false, alt: "e to the power − i ω t")[$e^("−" i ω t)$] is a #emph[space]-independent function. In other words, the wave function is #emph[separable] into two parts: a space-only part and a time-only part. The factor #math.equation(block: false, alt: "e to the power − i ω t")[$e^("−" i ω t)$] is sometimes referred to as a #strong[time-modulation factor] since it modifies the space-only function. According to de Broglie, the energy of a matter wave is given by #math.equation(block: false, alt: "E equals ℏ ω")[$E = ℏ ω$], where #emph[E] is its total energy. Thus, the above equation can also be written as #math.equation(block: true, alt: "Ψ open parenthesis x , t close parenthesis equals ψ open parenthesis x close parenthesis e to the power − i E t / ℏ .")[$"Ψ" ( x , t ) = ψ ( x ) e^("−" i E t "/" ℏ) .$] Any linear combination of such states (mixed state of energy or momentum) is also valid solution to this equation. Such states can, for example, describe a localized particle #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ A particle with mass #emph[m] is moving along the #emph[x]-axis in a potential given by the potential energy function #math.equation(block: false, alt: "U open parenthesis x close parenthesis equals 0.5 m ω squared x squared")[$U ( x ) = 0.5 m ω^(2) x^(2)$]. Compute the product #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis to the power * U open parenthesis x close parenthesis Ψ open parenthesis x , t close parenthesis .")[$"Ψ" attach(( x , t ), t: *) U ( x ) "Ψ" ( x , t ) .$] Express your answer in terms of the time-independent wave function, #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis .")[$ψ ( x ) .$] #solutionbox[ #math.equation(block: true, alt: "0.5 m ω squared x squared ψ open parenthesis x close parenthesis to the power * ψ open parenthesis x close parenthesis")[$0.5 m ω^(2) x^(2) ψ attach(( x ), t: *) ψ ( x )$] ] ] Combining and , Schrödinger’s time-dependent equation reduces to #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "minus the fraction ℏ squared over 2 m the fraction d squared ψ open parenthesis x close parenthesis over d x squared plus U open parenthesis x close parenthesis ψ open parenthesis x close parenthesis equals E ψ open parenthesis x close parenthesis ,")[$− frac(ℏ^(2), 2 m) #h(0.2em) frac(d^(2) ψ ( x ), d x^(2)) + U ( x ) ψ ( x ) = E ψ ( x ) ,$] ] where #emph[E] is the total energy of the particle (a real number). This equation is called #strong[Schrӧdinger’s time-independent equation]. Notice that we use “big psi” #math.equation(block: false, alt: "open parenthesis Ψ close parenthesis")[$( "Ψ" )$] for the time-dependent wave function and “little psi” #math.equation(block: false, alt: "open parenthesis ψ close parenthesis")[$( ψ )$] for the time-independent wave function. The wave-function solution to this equation must be multiplied by the time-modulation factor to obtain the time-dependent wave function. In the next sections, we solve Schrӧdinger’s time-independent equation for three cases: a quantum particle in a box, a simple harmonic oscillator, and a quantum barrier. These cases provide important lessons that can be used to solve more complicated systems. The time-independent wave function #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis")[$ψ ( x )$] solutions must satisfy three conditions: - #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis")[$ψ ( x )$] must be a continuous function. - The first derivative of #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis")[$ψ ( x )$] with respect to space, #math.equation(block: false, alt: "d ψ open parenthesis x close parenthesis / d x")[$d ψ ( x ) "/" d x$], must be continuous, unless #math.equation(block: false, alt: "V open parenthesis x close parenthesis equals ∞")[$V ( x ) = ∞$]. - #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis")[$ψ ( x )$] must not diverge (“blow up”) at #math.equation(block: false, alt: "x equals ± ∞ .")[$x = "±" ∞ .$] The first condition avoids sudden jumps or gaps in the wave function. The second condition requires the wave function to be smooth at all points, except in special cases. (In a more advanced course on quantum mechanics, for example, potential spikes of infinite depth and height are used to model solids). The third condition requires the wave function be normalizable. This third condition follows from Born’s interpretation of quantum mechanics. It ensures that #math.equation(block: false, alt: "| ψ open parenthesis x close parenthesis | squared")[$attach(| ψ ( x ) |, t: 2)$] is a finite number so we can use it to calculate probabilities. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Which of the following wave functions is a valid wave-function solution for Schrӧdinger’s equation? #figure(figph[Three graphs of Psi of x versus x are shown. The first rises then drops discontinuously to a lower value, rises again and then has a constant value. The second function looks like a breaking wave, with a crest overtaking the base. The third increases exponentially to infinity.], alt: "Three graphs of Psi of x versus x are shown. The first rises then drops discontinuously to a lower value, rises again and then has a constant value. The second function looks like a breaking wave, with a crest overtaking the base. The third increases exponentially to infinity.", caption: none) #solutionbox[ None. The first function has a discontinuity; the second function is double-valued; and the third function diverges so is not normalizable. ] ] === Summary - The Schrӧdinger equation is the fundamental equation of wave quantum mechanics. It allows us to make predictions about wave functions. - When a particle moves in a time-independent potential, a solution of the time-dependent Schrӧdinger equation is a product of a time-independent wave function and a time-modulation factor. - The Schrӧdinger equation can be applied to many physical situations. === Conceptual Questions What is the difference between a wave function #math.equation(block: false, alt: "ψ open parenthesis x , y , z close parenthesis")[$ψ ( x , y , z )$] and a wave function #math.equation(block: false, alt: "Ψ open parenthesis x , y , z , t close parenthesis")[$"Ψ" ( x , y , z , t )$] for the same particle? If a quantum particle is in a stationary state, does it mean that it does not move? #solutionbox[ No, it means that predictions about the particle (expressed in terms of probabilities) are time-independent. ] Explain the difference between time-dependent and -independent Schrӧdinger’s equations. Suppose a wave function is discontinuous at some point. Can this function represent a quantum state of some physical particle? Why? Why not? #solutionbox[ No, because the probability of the particle existing in a narrow (infinitesimally small) interval at the discontinuity is undefined. ] === Problems Combine and to show #math.equation(block: false, alt: "k squared equals the fraction ω squared over c squared .")[$k^(2) = frac(ω^(2), c^(2)) .$] #solutionbox[ Carrying out the derivatives yields #math.equation(block: false, alt: "k squared equals the fraction ω squared over c squared .")[$k^(2) = frac(ω^(2), c^(2)) .$] ] Show that #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A e to the power i open parenthesis k x minus ω t close parenthesis")[$"Ψ" ( x , t ) = A e^(i ( k x − ω t ))$] is a valid solution to Schrӧdinger’s time-dependent equation. Show that #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A sin open parenthesis k x minus ω t close parenthesis")[$"Ψ" ( x , t ) = A #h(0.2em) "sin" ( k x − ω t )$] and #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A cos open parenthesis k x minus ω t close parenthesis")[$"Ψ" ( x , t ) = A #h(0.2em) "cos" ( k x − ω t )$] do not obey Schrӧdinger’s time-dependent equation. #solutionbox[ Carrying out the derivatives (as above) for the sine function gives a cosine on the right side the equation, so the equality fails. The same occurs for the cosine solution. ] Show that when #math.equation(block: false, alt: "Ψ sub 1 open parenthesis x , t close parenthesis")[$"Ψ"_(1) ( x , t )$] and #math.equation(block: false, alt: "Ψ sub 2 open parenthesis x , t close parenthesis")[$"Ψ"_(2) ( x , t )$] are solutions to the time-dependent Schrӧdinger equation and #emph[A],#emph[B] are numbers, then a function #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis")[$"Ψ" ( x , t )$] that is a superposition of these functions is also a solution: #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A Ψ sub 1 open parenthesis x , t close parenthesis plus B Ψ sub 2 open parenthesis x , t close parenthesis")[$"Ψ" ( x , t ) = A "Ψ"_(1) ( x , t ) + B "Ψ"_(2) ( x , t )$]. A particle with mass #emph[m] is described by the following wave function: #math.equation(block: false, alt: "ψ open parenthesis x close parenthesis equals A cos k x plus B sin k x")[$ψ ( x ) = A #h(0.2em) "cos" #h(0.2em) k x + B #h(0.2em) "sin" #h(0.2em) k x$], where #emph[A], #emph[B], and #emph[k] are constants. Assuming that the particle is free, show that this function is the solution of the stationary Schrӧdinger equation for this particle and find the energy that the particle has in this state. #solutionbox[ #math.equation(block: true, alt: "E equals ℏ squared k squared / 2 m")[$E = ℏ^(" " 2) k^(2) "/" 2 m$] ] Find the expectation value of the kinetic energy for the particle in the state, #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A e to the power i open parenthesis k x minus ω t close parenthesis")[$"Ψ" ( x , t ) = A e^(i ( k x − ω t ))$]. What conclusion can you draw from your solution? Find the expectation value of the square of the momentum squared for the particle in the state, #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A e to the power i open parenthesis k x minus ω t close parenthesis")[$"Ψ" ( x , t ) = A e^(i ( k x − ω t ))$]. What conclusion can you draw from your solution? #solutionbox[ #math.equation(block: false, alt: "ℏ squared k squared")[$ℏ^(" " 2) k^(" " 2)$]; The particle has definite momentum and therefore definite momentum squared. ] A free proton has a wave function given by #math.equation(block: false, alt: "Ψ open parenthesis x , t close parenthesis equals A e to the power i open parenthesis 5.02 times 10 to the power 11 x minus 8.00 times 10 to the power 15 t close parenthesis")[$"Ψ" ( x , t ) = A e^(" " i " " ( 5.02 #h(0.2em) × #h(0.2em) 10^(11) x − 8.00 #h(0.2em) × #h(0.2em) 10^(15) t ))$]. The coefficient of #emph[x] is inverse meters #math.equation(block: false, alt: "open parenthesis m to the power −1 close parenthesis")[$( "m"^(−1) )$] and the coefficient on #emph[t] is inverse seconds #math.equation(block: false, alt: "open parenthesis s to the power −1 close parenthesis .")[$( "s"^(−1) ) .$] Find its momentum and energy.