16. Evolution of Low-mass Stars#

16.1. Estimating Main-Sequence Lifetimes#

Since we know the how long the Sun should last (i.e., its lifetime \(\tau_\odot\)) from 14.1, we can estimate the main sequence lifetime of other stars. This is done by comparing the energy production rate (relative to the Sun) and mass available (compared to the Sun’s mass). This can be expressed mathematically as

(16.1)#\[\begin{align} \frac{\tau_\star}{\tau_\odot} &= \left(\frac{M_\star}{M_\odot}\right) \times \left(\frac{L_\odot}{L_\star}\right), \\ \tau_\star &= \left(\frac{M_\star}{M_\odot}\right)\times \left(\frac{L_\odot}{L_\star}\right) \times 10^{10}\ {\rm yr}. \end{align}\]

There is also a relationship between the mass and luminosity of stars. Since the star’s mass provides the fuel for the luminosity, this should make sense.

Note

The mass-luminosity relation is defined empirically, which means that the known values for the mass and luminosity of many stars are compared and fit to a power-law. Depending on how the power law is constructed (i.e., how the stars are binned), the exponents may vary.

The mass-luminosity relationship for main-sequence (FGK) stars is given as

(16.2)#\[\begin{align} \frac{L_\star}{L_\odot} = \left(\frac{M_\star}{M_\odot}\right)^{3.5}. \end{align}\]

With a little algebra, we can estimate the lifetime for main-sequence (FGK) stars soley based upon their mass. This is given as

(16.3)#\[\begin{align} \tau_\star &= \left(\frac{M_\star}{M_\odot}\right)\times \left(\frac{M_\star}{M_\odot}\right)^{{-3.5}} \times 10^{10}\ {\rm yr} = \left(\frac{M_\star}{M_\odot}\right)^{{-2.5}} \times 10^{10}\ {\rm yr}. \end{align}\]

What is the main-sequence lifetime for a \(\rm K5\) main-sequence star? From our textbook, the mass of a \(\rm K5\) star is \(0.67\ M_\odot\). We directly substitute into our above equation:

(16.4)#\[\begin{align} \tau_{\rm K5}= \left(\frac{1}{0.67}\right)^{2.5} \times 10^{10}\ {\rm yr} = 2.7 \times 10^{10}\ {\rm yr}. \end{align}\]

A \(\rm K5\) star has a main-sequence lifetime of \(27\ {\rm billion\ years}\), which is \(2.7\times\) longer than the Sun’s lifetime. Even though a \(\rm K5\) starts with less fuel, it uses it more slowly and thus, lives longer.

tau_sun = 1e10 #main-sequence lifetime for the Sun

M_K5 = 0.67 #mass of a K5 star in Msun
tau_K5 = M_K5**(-2.5)*tau_sun 
print("The main-sequence lifetime of a K5 star is %1.1e yr or %d Gyr." % (tau_K5,tau_K5/1e9))
The main-sequence lifetime of a K5 star is 2.7e+10 yr or 27 Gyr.

16.2. Escaping the Surface of an Evolved Star#

In Chapter 4 and Chapter 9, we discussed ways for atoms (or rockets) to escape the gravity of a planet. Recall that the escape velocity from the surface of body is

(16.5)#\[\begin{align} v_{\rm esc} = \sqrt{\frac{2GM}{R}}, \end{align}\]

where \(M\) is the mass of the body and \(R\) is the radius of the body.

At the end of a star’s lifetime, it can become a red giant, where the stellar atmosphere swells to many times its size on the main-sequence. Let’s first calculate the escape velocity of the Sun on the main-sequence \(v_{\odot,\ \rm esc}^{\rm MS}\) as,

(16.6)#\[\begin{align} v_{\odot,\ \rm esc}^{\rm MS} &= \sqrt{\frac{2GM_\odot}{R_\odot}}, \\ &= \sqrt{\frac{2\times \left[6.67\times 10^{-11}\ {\rm m^3/(kg\ s^2)}\right] \times(1.989 \times 10^{30}\ {\rm kg})}{6.96 \times 10^8\ {\rm m}}}, \\ &= 6.17 \times 10^5\ {\rm m/s} = 617\ {\rm km/s}. \end{align}\]

This is about \(56\times\) the escape velocity for the Earth!

What will the escape velocity be when the Sun becomes a red giant (\(R=50\ R_\odot,\ M=0.9\ M_\odot\))? We can now write the escape velocity equation relative to the Sun so that we can compare with other stars, as well as when the Sun becomes a red giant. Using ratios, we have

(16.7)#\[\begin{align} \left(\frac{v}{v^{\rm MS}_\odot}\right)_{\rm esc} = \sqrt{\left(\frac{M}{M_\odot}\right)\times \left(\frac{R_\odot}{R}\right)}, \end{align}\]

where this is similar (in form) to when we compared the circular velocities in 4.2. Substituting the values for the Sun as a red giant into the above equation, we get

(16.8)#\[\begin{align} \left(\frac{v}{v^{\rm MS}_\odot}\right)_{\rm esc} &= \sqrt{\left(0.9\right)\times \left(\frac{1}{50}\right)} = 0.13, \\ v_{\rm esc} &=0.13\ v_{\odot,\ \rm esc}^{\rm MS}, \\ & = 83\ {\rm km/s}. \end{align}\]

The escape velocity from the red giant’s surface is only \(13\%\) of when it was a main-sequence star. That is part of the reason that red giant and AGB stars lose mass. The Sun may eventually lose \(50\%\) of its mass.

import numpy as np
from scipy.constants import G

M_sun = 1.989e30 #mass of the Sun in kg
R_sun = 6.96e8 #radius of the Sun in m

v_esc_MS = np.sqrt(2*G*M_sun/R_sun)
print("The escape velocity of the Sun on the main sequence is: %1.3e m/s or %3d km/s." % (v_esc_MS,v_esc_MS/1e3))
print("------")

M_RG = 0.9 #mass of red giant in Msun
R_RG = 50 # radius of red giant in Rsun
v_esc_RG = np.sqrt(M_RG/R_RG)
print("The escape velocity is %2d percent of the main-sequence value or %2i km/s." % (v_esc_RG*100,np.round(v_esc_RG*v_esc_MS/1e3,0)))
The escape velocity of the Sun on the main sequence is: 6.176e+05 m/s or 617 km/s.
------
The escape velocity is 13 percent of the main-sequence value or 83 km/s.