Physics Forums Insights
  • Physics
    • Physics Articles
    • Physics Tutorials
    • Physics Guides
    • Physics FAQs
  • Math
    • Math Articles
    • Math Tutorials
    • Math Guides
    • Math FAQs
  • Bio/Chem/Tech
    • Bio/Chem Articles
    • Computer Science Tutorials
    • Technology Guides
  • Education
    • Education Articles
    • Education Guides
  • Interviews
  • Quizzes
  • Forums
  • Click to open the search input field Click to open the search input field Search
  • Menu Menu
dark energy supernova

Dark Energy Part 3: Fitting the SCP Union 2.1 Supernova Data

April 25, 2020/0 Comments/in Physics Articles/by Mark Stuckey
📖Read Time: 7 minutes
📊Readability: Advanced 📐 (Technical knowledge needed)
🔖Core Topics: distanceedscosmologyequationfit

In Part 1 of this 3-part series, I explained kinematics in Einstien-deSitter (EdS) cosmology and in Part 2, I explained kinematics in ##\Lambda##CDM cosmology (essentially EdS plus a cosmological constant ##\Lambda##). Now I will bring those models to bear on the Supernova Cosmology Project (SCP) Union2.1 type Ia supernova data. This will show clearly how the EdS fit of the supernova data is greatly improved by adding ##\Lambda## to Einstein’s equations (EEs) of general relativity (GR). This fact convinced the astronomy community that a cosmological constant is indeed needed in EEs. This cosmological constant ##\Lambda## is often referred to as “dark energy,” as I explained in Part 2. I’ll start by explaining the concept of “distance modulus.”

astronomy H-R diagram

In order to obtain distances in astronomy, astronomers use the “cosmic distance ladder.” That is, they obtain farther distances using information obtained at smaller distances. For example, using the Earth-Sun distance astronomers measure the parallax angle to relatively nearby stars to obtain the distance to those stars (see picture below and this Insight by Janus). The distance to a star with a parallax angle of one arcsecond is defined to be 1 parsec (pc). Using the known Earth-Sun distance you can compute 1pc = 3.26cy (again, read “cy” as “light-years”). They can use this method on thousands of stars in our galactic neighborhood. Once they know how far away a star is, they can figure out how intrinsically bright it is, i.e., how bright it would appear at a particular reference distance (chosen here to be 10pc). Doing that for many stars allows them to build a table of information on types of stars (called the H-R diagram).

Now, when they see a star of a particular type that is too far away to exhibit a measurable parallax angle, they can deduce its distance by using its intrinsic brightness from the H-R diagram (given a number ##M## called its “absolute visual magnitude,” as I will explain below) and comparing that to its apparent brightness (given a number ##m## called its “apparent visual magnitude,” as I will explain below). This method is good as long as you know an object’s intrinsic brightness and the object is bright enough to be seen at all. It turns out that for your average star this method isn’t good for cosmological distances because stars just aren’t bright enough to be seen at cosmological distances. What Perlmutter, Schmitt, and Riess did to win the 2011 Nobel Prize in Physics was to figure out ##M## for a very bright object that can be seen billions of light-years away — the type Ia supernova. Specifically, they were able to obtain the “distance modulus” ##m\, – M## and redshift for hundreds of distant supernovae. That is the SCP Union2.1 data I will fit using EdS and ##\Lambda##CDM kinematics obtained in Parts 1 and 2 of this series. To get started, I need to explain distance modulus quantitatively.

The apparent visual magnitudes ##m_1## and ##m_2## of two objects with luminosities ##L_1## and ##L_2##, respectively, are related by this equation

\begin{equation} m_1 – m_2 = -2.5 \log{\left(\frac{L_1}{L_2}\right)} \label{m1m2} \end{equation}

This is defined so that when ##m_2## is larger than ##m_1## by 5, ##L_1 = 100L_2##. You will notice that this seems backwards because the larger the apparent visual magnitude, the dimmer (less luminous) the object appears. That obtains for historical reasons. Apparently, long ago, astronomers ranked stars with the brightest stars being ranked the highest and that system became the magnitude system. Ugh. Anyway, this magnitude system is used to find the distance to an object by using Eq. (\ref{m1m2}) for one object at two distances. Since luminosity (power per unit area) goes as ##\frac{1}{d^2}## we have

\begin{equation} m_1 – m_2 = -2.5 \log{\left(\frac{d_{2}^2}{d_{1}^2}\right)} \label{d1d2} \end{equation}

Now if we’re talking about the apparent visual magnitude (##m##) of one object at an unknown distance ##d## compared to its apparent visual magnitude (##M##) at a known reference distance 10pc, then we have

\begin{equation} \mu := m\, – M = 5 \log{\left(\frac{d}{10pc}\right)} \label{mu1} \end{equation}

where ##\mu## is called the “distance modulus.” In cosmology, this luminosity distance ##d## is related to the proper distance ##r_o## by ##d = (1+z)r_o##, so when using a particular cosmology model we have

\begin{equation} \mu = 5 \log{\left(\frac{(1+z)r_o}{10pc}\right)} \label{mu} \end{equation}

We obtain ##r_o## as a function of ##z## (redshift) and ##t_o## (age of the universe) in EdS cosmology while we obtain ##r_o## as a function of ##z##, ##t_o##, and ##\Omega_m## (or equivalently, ##\Omega_\Lambda##) in ##\Lambda##CDM cosmology. Therefore, the Union2.1 data (##\mu## versus ##z##) is to be fit using ##t_o## in EdS cosmology while it is fit using ##t_o## and ##\Omega_m## (or equivalently, ##\Omega_\Lambda##) in ##\Lambda##CDM cosmology. We found

\begin{equation} r_o = 3ct_o\left(1 – \frac{1}{\sqrt{1+z}}\right) \label{EdSro}\end{equation}

for EdS cosmology and

\begin{equation} r_o = \frac{ct_o}{H_ot_o}\int_{a_e}^{1}\frac{da}{a\sqrt{\frac{\Omega_m}{a} + \Omega_\Lambda a^2}}  \label{Lambdaro} \end{equation}

for ##\Lambda##CDM cosmology. I will enter ##t_o## in Gy and ##r_o## in Gcy for both models. Eq. (\ref{mu}) is then

\begin{equation} \mu = 5 \log{\left(\frac{(1+z)r_o}{3.26}\right) + 40} \label{mu2} \end{equation}

The data can be obtained at the Supernova Cosmology Project website (see “Union2.1 Compilation Magnitude vs. Redshift Table (for your own cosmology fitter)” in “Cosmology Tables”). I have the relevant data in this txt file and this xlsx Excel file. In both cases, ##z## is column 1 and ##\mu## is column 2. Here is my MATLAB code for doing the comparison fits:

%First I import my data. Note that your Workspace in MATLAB will have to contain the proper file names.
z = table2array(SCPUnion2);
mu = table2array(SCPUnion1);

%We need to transpose the data into columns as it was imported as rows.
z = z’;
mu = mu’;

%These are the two functions in the scaling factor “a” that I will be integrating. Om is ##\Omega_m## and OL is ##\Omega_\Lambda##.
Afunc = @(a,Om,OL) 1./sqrt(Om./a + OL*a.^2);
Rfunc = @(a,Om,OL) 1./sqrt(Om.*a + OL*a.^4);

%Here are the best fit ##\Omega## values for the ##\Lambda##CDM fit shown.
%I varied ##\Omega_m## to 3 sig figs to find the smallest root mean square error (RMSE) for the ##\Lambda##CDM fit (I found 6.3963).
Om = 0.283;
OL = 1 – Om;

%Here are the ages of the universe for ##\Lambda##CDM and EdS, respectively, used for the fits.
%I varied the EdS value to 3 sig figs to find the smallest RMSE for the EdS fit (I found 8.1897).
%I did not vary ##t_o## for ##\Lambda##CDM. Since EdS has only one fitting parameter I wanted
%##\Lambda##CDM to have only one fitting parameter (##\Omega_m##). In reality, both would be varied of course.
to = 13.82;
toEdS = 10.8;

%This is the numerical integral for ##H_o## times ##t_o##.
Hoto = integral(@(a) Afunc(a,Om,OL),0,1);

%This is ##a_e## for each of the 580 values of ##z##.
ae = 1./(1 + z);

%This loop computes ##r_o## for the ##\Lambda##CDM model for all 580 values of ##z##.
for ii = 1:580
Ro(ii) = to*integral(@(a) Rfunc(a,Om,OL),ae(ii),1)/Hoto;
end

%This computes ##r_o## for the EdS model for all 580 values of ##z##.
RoEdS = 3*toEdS*(1 – 1./sqrt(1 + z));

%Here are the theory values for ##\mu##.
TheoryMuLCDM = 5*log10((1 + z).*Ro/3.26) + 40;
TheoryMuEdS = 5*log10((1 + z).*RoEdS/3.26) + 40;

%I am using root mean square error for obtaining the best fit.
RMSE_LCDM = sqrt(sum((TheoryMuLCDM – mu).^2))
RMSE_EdS = sqrt(sum((TheoryMuEdS – mu).^2))

%This is where I do my plots (shown below).
plot(z,mu,’o’,’color’,’black’)
hold
plot(z,TheoryMuLCDM,’*’,’color’,’red’)
plot(z,TheoryMuEdS,’*’,’color’,’green’)
title({‘\LambdaCDM (red) and EdS (green) Fits of’;’SCP Union2.1 Supernova Data (black)’},’FontSize’,17,’FontWeight’,’bold’)
xlabel(‘Redshift z’,’FontSize’,15,’FontWeight’,’bold’)
ylabel(‘Distance Modulus \mu’,’FontSize’,15,’FontWeight’,’bold’)
hold off

Using RMSE is a crude way to determine the best fit, but it results qualitatively in precisely what is publicized about the role of ##\Lambda##. That is, ##\Lambda## plus EdS produces a greater ##\mu## at large redshifts than EdS alone (see my plots below). This discovery by Perlmutter, Schmitt, and Riess caused quite a stir in astronomy when it was announced in 1998, but today the use of ##\Lambda## in the concordance model for cosmology is unquestioned. The quantum source of this so-called “dark energy” remains a mystery however.

supernova redshift graph

Comment Thread

Mark Stuckey

PhD in general relativity (1987), researching foundations of physics since 1994. Coauthor of “Beyond the Dynamical Universe” (Oxford UP, 2018) and “Einstein’s Entanglement” (Oxford UP, 2024).

More Related Articles

  • Rindler Motion in Special Relativity: Rindler Coordinates
  • Modern Physics Understood as an Unrecognized Kuhnian Revolution
  • Learn About the Friedmann Equation and the Cosmos
  • The LCDM Cosmological Model in Simplified Math (Part 3)
  • The Schwarzschild Geometry: Coordinates
  • Struggles with the Continuum: General Relativity
Tags: astronomy, cosmology, dark matter, supernova
Share this entry
  • Share on Facebook
  • Share on X
  • Share on WhatsApp
  • Share on LinkedIn
  • Share on Reddit
  • Share by Mail
https://www.physicsforums.com/insights/wp-content/uploads/2020/04/dark-energy-supernova.png 135 240 Mark Stuckey https://www.physicsforums.com/insights/wp-content/uploads/2019/02/Physics_Forums_Insights_logo.png Mark Stuckey2020-04-25 04:52:252021-01-04 20:42:27Dark Energy Part 3: Fitting the SCP Union 2.1 Supernova Data
You might also like
What is Mass Inflation Mass Inflation Inside Black Holes — Explanation & Equations
mary Somerville Mary Somerville: Scottish Polymath & RAS Honorary Member
pluto Pluto Quiz: Think You Know Pluto?
Gaia search for black holes Gaia Astrometry: Detecting Gravitational Waves Guide
Dark Energy Cosmology Part 1 Dark Energy Part 1: Einstein-deSitter Cosmology
Sagittarius A Calculate Sgr A* Spin from QPOs — Kerr Metric Derivation
0 replies

Leave a Reply

Want to join the discussion?
Feel free to contribute!

Leave a Reply Cancel reply

You must be logged in to post a comment.

Trending Articles

  • Quantum Mechanics and the Famous Double-slit Experiment
  • Explosion-Generated Collapsing Vacuum Bubbles Reach 20,000 Kelvin
  • Can We See an Atom?
  • Why Entangled Photon-Polarization Qubits Violate Bell’s Inequality per Quantum Information Theory
  • Why the Quantum | A Response to Wheeler’s 1986 Paper
  • Inventions and Inventors Quiz and Trivia
  • Have Scientists Seen an Electron? How We Detect Them
  • How to Apply Newton’s Second Law to Variable Mass Systems
  • John Baez Interview — Mathematical Physicist & Networks
  • The Fundamental Difference in Interpretations of Quantum Mechanics

Physics Forums

  • Classical Physics
  • Atomic and Condensed Matter
  • Quantum Physics
  • Special and General Relativity
  • Beyond the Standard Model
  • High Energy, Nuclear, Particle Physics
  • Astronomy and Astrophysics
  • Cosmology
  • Other Physics Topics

Receive Insights Articles to Your Inbox

Enter your email address:

Blog Information

  • Become a Member!
  • Write for Us!
  • Table of Contents
  • Blog Author List

Popular Topics

astronomy (17) black holes (17) classical physics (35) cosmology (16) education (23) electromagnetism (19) general relativity (19) gravity (24) interview (21) mathematics (39) mathematics self-study (21) Physicist (26) programming (18) Quantum Field Theory (31) quantum mechanics (36) quantum physics (24) relativity (40) Special Relativity (16) technology (19) universe (21)
2026 © Physics Forums, ALL RIGHTS RESERVED - Contact Us - Privacy Policy - About PF Insights
  • Link to X
  • Link to Facebook
  • Link to LinkedIn
  • Link to Youtube
Link to: Dark Energy Part 2: LCDM Cosmology Link to: Dark Energy Part 2: LCDM Cosmology Dark Energy Part 2: LCDM Cosmologydark energy cosmology lcdmLink to: The Analytic Continuation of the Lerch and the Zeta Functions Link to: The Analytic Continuation of the Lerch and the Zeta Functions lerch and zeta functionsThe Analytic Continuation of the Lerch and the Zeta Functions
Scroll to top Scroll to top Scroll to top