#set document(title: "10.2 Nuclear Binding Energy", 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")) == 10.2#h(0.6em)Nuclear Binding Energy The forces that bind nucleons together in an atomic nucleus are much greater than those that bind an electron to an atom through electrostatic attraction. This is evident by the relative sizes of the atomic nucleus and the atom #math.equation(block: false, alt: "open parenthesis 10 to the power −15 and 10 to the power −10 m ,")[$\( 10^(−15) #h(0.2em) "and" #h(0.2em) 10^(−10) #h(0.2em) "m" ,$] respectively). The energy required to pry a nucleon from the nucleus is therefore much larger than that required to remove (or ionize) an electron in an atom. In general, all nuclear changes involve large amounts of energy per particle undergoing the reaction. This has numerous practical applications. === Mass Defect According to nuclear particle experiments, the total mass of a nucleus #math.equation(block: false, alt: "open parenthesis m sub nuc close parenthesis")[$( m_("nuc") )$] is #emph[less] than the sum of the masses of its constituent nucleons (protons and neutrons). The mass difference, or #strong[mass defect], is given by #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "Δ m equals Z m sub p plus open parenthesis A minus Z close parenthesis m sub n minus m sub nuc")[$"Δ" m = Z m_(p) + ( A − Z ) m_(n) − m_("nuc")$] ] where #math.equation(block: false, alt: "Z m sub p")[$Z m_(p)$] is the total mass of the protons, #math.equation(block: false, alt: "open parenthesis A minus Z close parenthesis m sub n")[$( A − Z ) m_(n)$] is the total mass of the neutrons, and #math.equation(block: false, alt: "m sub nuc")[$m_("nuc")$] is the mass of the nucleus. According to Einstein’s special theory of relativity, mass is a measure of the total energy of a system (#math.equation(block: false, alt: "E equals m c squared")[$E = m c^(2)$]). Thus, the total energy of a nucleus is less than the sum of the energies of its constituent nucleons. The formation of a nucleus from a system of isolated protons and neutrons is therefore an exothermic reaction—meaning that it releases energy. The energy emitted, or radiated, in this process is #math.equation(block: false, alt: "open parenthesis Δ m close parenthesis c squared .")[$( "Δ" m ) c^(2) .$] Now imagine this process occurs in reverse. Instead of forming a nucleus, energy is put into the system to break apart the nucleus . The amount of energy required is called the total #strong[binding energy (BE)], #math.equation(block: false, alt: "E sub b .")[$E_("b") .$] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Binding Energy] The binding energy is equal to the amount of energy released in forming the nucleus, and is therefore given by #math.equation(block: true, alt: "E sub b equals open parenthesis Δ m close parenthesis c squared .")[$E_("b") = ( "Δ" m ) c^(2) .$] ] Experimental results indicate that the binding energy for a nucleus with mass number #math.equation(block: false, alt: "A greater than 8")[$A > 8$] is roughly proportional to the total number of nucleons in the nucleus, #emph[A]. The binding energy of a magnesium nucleus (#math.equation(block: false, alt: "to the power 24 Mg")[$24 "Mg"$]), for example, is approximately two times greater than for the carbon nucleus (#math.equation(block: false, alt: "to the power 12 C")[$12 "C"$]). #figure(figph[The figure shows a reaction. The LHS shows a nucleus plus binding energy. This nucleus is a cluster of closely packed protons and neutrons and is labeled, smaller mass. On the RHS is a nucleus with loosely packed protons and neutrons, labeled, separated nucleons, greater mass.], alt: "The figure shows a reaction. The LHS shows a nucleus plus binding energy. This nucleus is a cluster of closely packed protons and neutrons and is labeled, smaller mass. On the RHS is a nucleus with loosely packed protons and neutrons, labeled, separated nucleons, greater mass.", caption: [The binding energy is the energy required to break a nucleus into its constituent protons and neutrons. A system of separated nucleons has a greater mass than a system of bound nucleons.]) #examplebox("Example 1")[Mass Defect and Binding Energy of the Deuteron][ Calculate the mass defect and the binding energy of the deuteron. The mass of the deuteron is #math.equation(block: false, alt: "m sub D equals 3.34359 times 10 to the power −27 kg")[$m_("D") = 3.34359 #h(0.2em) × #h(0.2em) 10^(−27) "kg"$] or #math.equation(block: false, alt: "1875.61 MeV/ c squared .")[$1875.61 #h(0.2em) "MeV/" c^(2) .$] Solution From , the mass defect for the deuteron is #math.equation(block: true, alt: "Δ m, equals m sub p plus m sub n minus m sub D; equals 938.28 MeV / c squared plus 939.57 MeV / c squared minus 1875.61 MeV / c squared; equals 2.24 MeV / c squared .")[$"Δ" m & = m_(p) + m_(n) − m_("D") \ & = 938.28 #h(0.2em) "MeV" "/" c^(2) + 939.57 #h(0.2em) "MeV" "/" c^(2) − 1875.61 #h(0.2em) "MeV" "/" c^(2) \ & = 2.24 #h(0.2em) "MeV" "/" c^(2) .$] The binding energy of the deuteron is then #math.equation(block: true, alt: "E sub b equals open parenthesis Δ m close parenthesis c squared equals open parenthesis 2.24 MeV / c squared close parenthesis open parenthesis c squared close parenthesis equals 2.24 MeV .")[$E_("b") = ( "Δ" m ) c^(2) = ( 2.24 #h(0.2em) "MeV" "/" c^(2) ) ( c^(2) ) = 2.24 #h(0.2em) "MeV" .$] Over two million electron volts are needed to break apart a deuteron into a proton and a neutron. This very large value indicates the great strength of the nuclear force. By comparison, the greatest amount of energy required to liberate an electron bound to a hydrogen atom by an attractive Coulomb force (an electromagnetic force) is about 10 eV. ] === Graph of Binding Energy per Nucleon In nuclear physics, one of the most important experimental quantities is the #strong[binding energy per nucleon (BEN)], which is defined by #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #math.equation(block: true, alt: "B E N equals the fraction E sub b over A")[$B E N = frac(E_("b"), A)$] ] This quantity is the average energy required to remove an individual nucleon from a nucleus—analogous to the ionization energy of an electron in an atom. If the BEN is relatively large, the nucleus is relatively stable. BEN values are estimated from nuclear scattering experiments. A graph of binding energy per nucleon versus mass number #emph[A] is given in . This graph is considered by many physicists to be one of the most important graphs in physics. Two notes are in order. First, typical BEN values range from 6–10 MeV, with an average value of about 8 MeV. In other words, it takes several million electron volts to pry a nucleon from a typical nucleus, as compared to just 13.6 eV to ionize an electron in the ground state of hydrogen. This is why nuclear force is referred to as the “strong” nuclear force. Second, the graph rises at low #emph[A], peaks very near iron #math.equation(block: false, alt: "open parenthesis Fe , A equals 56 close parenthesis ,")[$( "Fe" , A = 56 ) ,$] and then tapers off at high #emph[A]. The peak value suggests that the iron nucleus is the most stable nucleus in nature (it is also why nuclear fusion in the cores of stars ends with Fe). The reason the graph rises and tapers off has to do with competing forces in the nucleus. At low values of #emph[A], attractive nuclear forces between nucleons dominate over repulsive electrostatic forces between protons. But at high values of #emph[A], repulsive electrostatic forces between forces begin to dominate, and these forces tend to break apart the nucleus rather than hold it together. #figure(figph[Graph of binding energy per nucleon, MeV, versus mass number, A. The graph starts close to point 2,1 and peaks close to element 56 Fe, which has an MeV value of between 8 and 9. After this, the graph tapers off to an MeV value of roughly 7. 56 Fe is labeled most stable nucleus. A vertical bar at A = 60 is labeled region of very stable nuclides. Both sides of this bar have an arrow pointing to it. The left one is labeled fusion and the right one is labeled fission.], alt: "Graph of binding energy per nucleon, MeV, versus mass number, A. The graph starts close to point 2,1 and peaks close to element 56 Fe, which has an MeV value of between 8 and 9. After this, the graph tapers off to an MeV value of roughly 7. 56 Fe is labeled most stable nucleus. A vertical bar at A = 60 is labeled region of very stable nuclides. Both sides of this bar have an arrow pointing to it. The left one is labeled fusion and the right one is labeled fission.", caption: [In this graph of binding energy per nucleon for stable nuclei, the BEN is greatest for nuclei with a mass near #math.equation(block: false, alt: "to the power 56 Fe")[$56 "Fe"$]. Therefore, fusion of nuclei with mass numbers much less than that of Fe, and fission of nuclei with mass numbers greater than that of Fe, are exothermic processes.]) As we will see, the BEN-versus-#emph[A] graph implies that nuclei divided or combined release an enormous amount of energy. This is the basis for a wide range of phenomena, from the production of electricity at a nuclear power plant to sunlight. #examplebox("Example 2")[Tightly Bound Alpha Nuclides][ Calculate the binding energy per nucleon of an #math.equation(block: false, alt: "to the power 4 He open parenthesis α particle close parenthesis")[$4 "He" #h(0.2em) ( "α particle" )$]. Strategy Determine the total binding energy (BE) using the equation #math.equation(block: false, alt: "BE equals open parenthesis Δ m close parenthesis c squared ,")[$"BE" = ( "Δ" m ) c^(2) ,$] where #math.equation(block: false, alt: "Δ m")[$"Δ" m$] is the mass defect. The binding energy per nucleon (BEN) is BE divided by #emph[A]. Solution For #math.equation(block: false, alt: "to the power 4 He")[$4 "He"$], we have #math.equation(block: false, alt: "Z equals N equals 2 .")[$Z = N = 2 .$] The total binding energy is #math.equation(block: true, alt: "BE equals { [ 2 m sub p plus 2 m sub n ] minus m open parenthesis to the power 4 He close parenthesis } c squared .")[$"BE" = \{ [ 2 m_(p) + 2 m_(n) ] − m ( 4 "He" ) \} c^(2) .$] These masses are #math.equation(block: false, alt: "m open parenthesis to the power 4 He close parenthesis equals 4.002602 u ,")[$m ( 4 "He" ) = 4.002602 #h(0.2em) "u" #h(0.2em) ,$] #math.equation(block: false, alt: "m sub p equals 1.0072765 u ,")[$m_(p) = 1.0072765 #h(0.2em) "u" ,$] and #math.equation(block: false, alt: "m sub n equals 1.008665 u .")[$m_(n) = 1.008665 #h(0.2em) "u" .$] Thus we have, #math.equation(block: true, alt: "BE equals open parenthesis 0.029281 u close parenthesis c squared .")[$"BE" = ( 0.029281 #h(0.2em) "u" ) c^(2) .$] Noting that #math.equation(block: false, alt: "1 u equals 931.5 MeV / c squared ,")[$1 #h(0.2em) "u" = 931.5 #h(0.2em) "MeV" "/" c^(2) ,$] we find #math.equation(block: true, alt: "BE, equals open parenthesis 0.029281 close parenthesis open parenthesis 931.5 MeV / c squared close parenthesis c squared; equals 27.3 MeV .")[$"BE" & = ( 0.029281 ) ( 931.5 #h(0.2em) "MeV" "/" c^(2) ) c^(2) \ & = 27.3 #h(0.2em) "MeV" .$] Since #math.equation(block: false, alt: "A equals 4 ,")[$A = 4 ,$] the total binding energy per nucleon is #math.equation(block: true, alt: "BEN equals 6.82 MeV / nucleon .")[$"BEN" = 6.82 #h(0.2em) "MeV" "/" "nucleon" .$] Significance Notice that the binding energy per nucleon for #math.equation(block: false, alt: "to the power 4 He")[$4 "He"$] is much greater than for the hydrogen isotopes #math.equation(block: false, alt: "open parenthesis only approximately equals 3 MeV / nucleon close parenthesis .")[$( "only" ≈ 3 #h(0.2em) "MeV" "/" "nucleon" ) .$] Therefore, helium nuclei cannot break down into hydrogen isotopes without energy being put into the system. ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ If the binding energy per nucleon is large, does this make it harder or easier to strip off a nucleon from a nucleus? #solutionbox[ harder ] ] === Summary - The mass defect of a nucleus is the difference between the total mass of a nucleus and the sum of the masses of all its constituent nucleons. - The binding energy (BE) of a nucleus is equal to the amount of energy released in forming the nucleus, or the mass defect multiplied by the speed of light squared. - A graph of binding energy per nucleon (BEN) versus atomic number #emph[A] implies that nuclei divided or combined release an enormous amount of energy. - The binding energy of a nucleon in a nucleus is analogous to the ionization energy of an electron in an atom. === Conceptual Questions Explain why a bound system should have less mass than its components. Why is this not observed traditionally, say, for a building made of bricks? #solutionbox[ A bound system should have less mass than its components because of energy-mass equivalence #math.equation(block: false, alt: "open parenthesis E equals m c squared close parenthesis .")[$( E = m c^(2) ) .$] If the energy of a system is reduced, the total mass of the system is reduced. If two bricks are placed next to one another, the attraction between them is purely gravitational, assuming the bricks are electrically neutral. The gravitational force between the bricks is relatively small (compared to the strong nuclear force), so the mass defect is much too small to be observed. If the bricks are glued together with cement, the mass defect is likewise small because the electrical interactions between the electrons involved in the bonding are still relatively small. ] Why is the number of neutrons greater than the number of protons in stable nuclei that have an #emph[A] greater than about 40? Why is this effect more pronounced for the heaviest nuclei? To obtain the most precise value of the binding energy per nucleon, it is important to take into account forces between nucleons at the surface of the nucleus. Will surface effects increase or decrease estimates of BEN? #solutionbox[ Nucleons at the surface of a nucleus interact with fewer nucleons. This reduces the binding energy per nucleon, which is based on an average over all the nucleons in the nucleus. ] === Problems How much energy would be released if six hydrogen atoms and six neutrons were combined to form #math.equation(block: false, alt: "6 12 C ?")[$#h(0.5em) 6 12 "C" ?$] #solutionbox[ 92.4 MeV ] Find the mass defect and the binding energy for the helium-4 nucleus. #math.equation(block: false, alt: "to the power 56 Fe")[$56 "Fe"$] is among the most tightly bound of all nuclides. It makes up more than #math.equation(block: false, alt: "90 %")[$90 "%"$] of natural iron. Note that #math.equation(block: false, alt: "to the power 56 Fe")[$56 "Fe"$] has even numbers of protons and neutrons. Calculate the binding energy per nucleon for #math.equation(block: false, alt: "to the power 56 Fe")[$56 "Fe"$] and compare it with the approximate value obtained from the graph in . #solutionbox[ #math.equation(block: true, alt: "8.790 MeV approximately equals graph’s value")[$8.790 #h(0.2em) "MeV" ≈ "graph’s value"$] ] #math.equation(block: false, alt: "to the power 209 Bi")[$209 "Bi"$] is the heaviest stable nuclide, and its BEN is low compared with medium-mass nuclides. Calculate BEN for this nucleus and compare it with the approximate value obtained from the graph in . (a) Calculate BEN for #math.equation(block: false, alt: "to the power 235 U")[$235 "U"$], the rarer of the two most common uranium isotopes; (b) Calculate BEN for #math.equation(block: false, alt: "to the power 238 U")[$238 "U"$]. (Most of uranium is #math.equation(block: false, alt: "to the power 238 U")[$238 "U"$].) #solutionbox[ a. #math.equation(block: false, alt: "7.591 MeV approximately equals graph’s value")[$7.591 #h(0.2em) "MeV" ≈ "graph’s value"$]; b. 7.570 MeV ] The fact that BEN peaks at roughly #math.equation(block: false, alt: "A equals 60")[$A = 60$] implies that the #emph[range] of the strong nuclear force is about the diameter of this nucleus. (a) Calculate the diameter of #math.equation(block: false, alt: "A equals 60")[$A = 60$] nucleus. (b) Compare BEN for #math.equation(block: false, alt: "to the power 58 Ni and to the power 90 Sr")[$58 "Ni and" #h(0.2em) 90 "Sr"$]. The first is one of the most tightly bound nuclides, whereas the second is larger and less tightly bound.