Lesson 2 of 15
Mass Defect and Binding Energy
Mass Defect and Binding Energy
One of the most profound results of nuclear physics is that a nucleus weighs less than the sum of its parts. This missing mass is converted into the energy that holds the nucleus together.
Mass Defect
For a nucleus with protons and neutrons, the mass defect is:
where all masses are in atomic mass units (u):
- u (proton mass)
- u (neutron mass)
- is the measured nuclear mass
Binding Energy
By Einstein's , the mass defect corresponds to an energy:
The conversion factor MeV/u comes from .
Binding Energy Per Nucleon
The binding energy per nucleon is a measure of nuclear stability:
| Nucleus | (MeV) | (MeV/nucleon) |
|---|---|---|
| He-4 | 27.27 | 6.82 |
| C-12 | 89.09 | 7.42 |
| Fe-56 | 478.96 | 8.55 ← most stable |
| U-238 | 1754.65 | 7.37 |
Iron-56 sits at the peak of the binding energy curve — lighter nuclei release energy by fusion, heavier nuclei by fission.
Your Task
Implement three functions. All constants must be defined inside each function.
mass_defect(Z, N, M_nucleus_u)— returns in ubinding_energy_MeV(Z, N, M_nucleus_u)— returns in MeVbinding_energy_per_nucleon(Z, N, M_nucleus_u)— returns in MeV/nucleon
Use u, u, and MeV/.
Python runtime loading...
Loading...
Click "Run" to execute your code.