Big Bang, Big Iron: CMB Data Analysis at the Petascale and Beyond

Size: px
Start display at page:

Download "Big Bang, Big Iron: CMB Data Analysis at the Petascale and Beyond"

Transcription

1 Big Bang, Big Iron: CMB Data Analysis at the Petascale and Beyond Julian Borrill Computational Cosmology Center, LBL & Space Sciences Laboratory, UCB with Christopher Cantalupo, Theodore Kisner, Radek Stompor et al and the BOOMERanG, EBEX, MAXIMA, Planck & PolarBear teams

2 The Cosmic Microwave Background About 400,000 years after the Big Bang, the expanding Universe cools through the ionization temperature of hydrogen: p + + e - => H. Without free electrons to scatter off, the photons free-stream to us today. COSMIC - filling all of space. MICROWAVE - redshifted by the expansion of the Universe from 3000K to 3K. BACKGROUND - primordial photons coming from behind all astrophysical sources.

3 CMB Science Primordial photons give the earliest possible image of the Universe. The existence of the CMB supports a Big Bang over a Steady State cosmology (NP1). Tiny fluctuations in the CMB temperature (NP2) and polarization encode the fundamentals of Cosmology geometry, topology, composition, history, Highest energy physics grand unified theories, the dark sector, inflation, Current goals: definitive T measurement provides complementary constraints for all dark energy experiments. detection of cosmological B-mode gives energy scale of inflation from primordial gravity waves. (NP3)

4 The Concordance Cosmology High-z Supernova & Supernova Cosmology (1998): Cosmic Dynamics (Ω Λ - Ω m ) BOOMERanG & MAXIMA (2000): Cosmic Geometry (Ω Λ + Ω m ) 70% Dark Energy + 25% Dark Matter + 5% Baryons 95% Ignorance What (and why) is the Dark Universe?

5 Observing the CMB With very sensitive, very cold, detectors coloured noise. Scanning all of the sky from space, or some of the sky from the stratosphere or high dry ground.

6 Analysing The CMB

7 CMB Satellite Evolution Evolving science goals require (i) higher resolution & (ii) polarization sensitivity.

8 CMB Data Analysis In principle very simple Assume Gaussianity and maximize the likelihood 1. of maps given the observations and their noise statistics (analytic). 2. of power spectra given maps and their noise statistics (iterative). In practice very complex Foregrounds, glitches, asymmetric beams, non-gaussian noise, etc. Algorithm & implementation scaling with evolution of CMB data-set size HPC architecture

9 The CMB Data Challenge Extracting fainter signals (polarization, high resolution) from the data requires: larger data volumes to provide higher signal-to-noise. more complex analyses to control fainter systematic effects. Experiment Start Date Goals N t N p COBE 1989 All-sky, low res, T BOOMERanG 1997 Cut-sky, high-res, T WMAP 2001 All-sky, mid-res, T+E Planck 2009 All-sky, high-res, T+E(+B) PolarBear 2012 Cut-sky, high-res, T+E+B QUIET-II 2015 Cut-sky, high-res, T+E+B CMBpol All-sky, high-res, T+E+B x increase in data volume over past & future 15 years need linear analysis algorithms to scale through M-foldings!

10 CMB Data Analysis Evolution Data volume & computational capability dictate analysis approach. Date Data System Map Power Spectrum B98 Cray T3E x 700 Explicit Maximum Likelihood (Matrix Invert - N p3 ) Explicit Maximum Likelihood (Matrix Cholesky + Tri-solve - N p3 ) B2K2 IBM SP3 x 3,000 Explicit Maximum Likelihood (Matrix Invert - N p3 ) Explicit Maximum Likelihood (Matrix Invert + Multiply - N p3 ) Algorithms Planck SF IBM SP3 x 6,000 PCG Maximum Likelihood (band-limited FFT few N t ) Monte Carlo (Sim + Map - many N t ) Planck AF EBEX Planck MC PolarBear Cray XT4 x 40,000 Cray XE6 x 150,000 PCG Maximum Likelihood (band-limited FFT few N t ) PCG Maximum Likelihood (band-limited FFT few N t ) Monte Carlo (SimMap - many N t ) Monte Carlo (Hybrid SimMap - many N t ) Implementations

11 Scaling In Practice 2000: BOOMERanG T-map 10 8 samples => 10 5 pixels 128 Cray T3E processors; 2005: Planck T-map samples => 10 8 pixels 6000 IBM SP3 processors; 2008: EBEX T/P-maps samples, 10 6 pixels Cray XT4 cores. 2010: Planck Monte Carlo 1000 noise T-maps samples => pixels Cray XT4 cores.

12 Simulation & Mapping: Calculations Given the instrument noise statistics & beams, a scanning strategy, and a sky: 1) SIMULATION: d t = n t + s t = n t + P tp s p A realization of the piecewise stationary noise time-stream: Pseudo-random number generation & FFT A signal time-stream scanned & beam-smoothed from the sky map: SHT 2) MAPPING: (P T N -1 P) d p = P T N -1 d t (A x = b) Build the RHS FFT & sparse matrix-vector multiply Solve for the map PCG over FFT & sparse matrix-vector multiply

13 Simulation & Mapping: Scaling In theory such analyses should scale Perfectly to arbitrary numbers of cores (strong within an experiment). Linearly with number of observations (weak between experiments). In practice this does not happen because of IO (reading pointing, writing time-streams; reading time-streams, writing maps) Communication (gathering maps from all processes) Calculation inefficiency (linear operations only, minimal data re-use) Ultimately all comes down to delivering data to cores fast enough. Code development has been an ongoing history of addressing this challenge anew with each new CMB data volume and HPC system/scale.

14 IO - Before For each MC realization For each detector Read detector pointing Write detector timestream For all detectors Read detector timestream & pointing Write map Sim Map Read: 56 x Realizations x Detectors x Observations bytes Write: 8 x Realizations x (Detectors x Observations + Pixels) bytes E.g. for Planck, read 500PB & write 70PB.

15 IO - Optimizations Read sparse telescope pointing instead of dense detector pointing Calculate individual detector pointing on the fly. Remove redundant write/read of time-streams between simulation & mapping Generate simulations on the fly only when map-maker requests data. Put MC loop inside map-maker Amortize common data reads over all realizations.

16 IO After Read telescope pointing For each detector Calculate detector pointing For each MC realization For all detectors Simulate time-stream Write map SimMap Read: 24 x Sparse Observations bytes Write: 8 x Realizations x Pixels bytes E.g. for Planck, read 2GB & write 70TB (10 8 read & 10 3 write compression).

17 Communication Details The time-ordered data from all the detectors are distributed over the processes subject to: Load-balance Common telescope pointing Each process therefore holds some of the observations for some of the pixels. In each PCG iteration, each process solves with its observations. At the end of each iteration, each process needs to gather the total result for all of the pixels it observed.

18 Communication Implementation Initialize a process & MPI task on every core Distribute time-stream data & hence pixels After each PCG iteration Each process creates a full map vector by zero-padding Call MPI_Allreduce(map, world) Each process extracts the pixels of interest to it & discards the rest

19 Communication Challenge

20 Communication Optimizations Reduce the number of MPI tasks (hybridize) Use MPI only for off-node communication Use threads for on-node communication Minimize the total message volume Determine the pixel overlap for every process pair. One-time initialization cost If the total overlap data volume is smaller than a full map, use Alltoallv in place of Allreduce Typically Alltoallv for all-sky, Allreduce for part-sky surveys

21 Communication Improvement

22 Communication Evaluation Which enhancement is more important? Is this system-dependent? Compare unthreaded/threaded allreduce/alltoallv on Cray XT4, XT5 & XE6 on ,000 cores: Alltoallv at low end Threads at high end

23 Petascale Communication (I)

24 HPC System Evolution Clock speed is no longer able to maintain Moore s Law. Multi-core CPU and GPGPU are two major approaches. Both of these will require performance modeling, experiment & auto-tuning E.g. NERSC s new XE6 system Hopper 6384 nodes 2 MagnyCours processors per node 2 NUMA nodes per processor 6 cores per NUMA node What is the best way to run hybrid code on such a system? wisdom says 4 processes x 6 threads to avoid NUMA effects.

25 Petascale Communication (II)

26 Current Status Calculation scale with #observations. IO & communication scale with #pixels. Observations/pixel ~ S/N: science goals will help scaling! Planck: O(10 3 ) observations per pixel PolarBear: O(10 6 ) observations per pixel For each experiment, fixed data volume => strong scaling. Across experiments, growing data volume => weak scaling.

27 Petascale Communication (III)

28 Conclusions The CMB provides a unique window onto the early Universe probe fundamental cosmology & physics. CMB data analysis is a long-standing, computationally-challenging, problem requiring state-of-the-art HPC capabilities. The science we can extract from CMB data sets is determined by the absolute limits on our computational capability, and our practical ability to exploit this. Both the CMB data sets we gather and the HPC systems we analyze them on are evolving analysis algorithms & implementations are a process not a state.

Data analysis of massive data sets a Planck example

Data analysis of massive data sets a Planck example Data analysis of massive data sets a Planck example Radek Stompor (APC) LOFAR workshop, Meudon, 29/03/06 Outline 1. Planck mission; 2. Planck data set; 3. Planck data analysis plan and challenges; 4. Planck

More information

Science exploitation of CMB data. Paolo Natoli Università di Ferrara and INFN on behalf of the Italian CMB community

Science exploitation of CMB data. Paolo Natoli Università di Ferrara and INFN on behalf of the Italian CMB community Science exploitation of CMB data Paolo Natoli Università di Ferrara and INFN on behalf of the Italian CMB community Overview Rich, complex datasets for many science targets State of the art Role and expertise

More information

A5682: Introduction to Cosmology Course Notes. 11. CMB Anisotropy

A5682: Introduction to Cosmology Course Notes. 11. CMB Anisotropy Reading: Chapter 9, sections 9.4 and 9.5 11. CMB Anisotropy Gravitational instability and structure formation Today s universe shows structure on scales from individual galaxies to galaxy groups and clusters

More information

Astr 2320 Thurs. May 7, 2015 Today s Topics Chapter 24: New Cosmology Problems with the Standard Model Cosmic Nucleosynthesis Particle Physics Cosmic

Astr 2320 Thurs. May 7, 2015 Today s Topics Chapter 24: New Cosmology Problems with the Standard Model Cosmic Nucleosynthesis Particle Physics Cosmic Astr 2320 Thurs. May 7, 2015 Today s Topics Chapter 24: New Cosmology Problems with the Standard Model Cosmic Nucleosynthesis Particle Physics Cosmic Inflation Galaxy Formation 1 Chapter 24: #3 Chapter

More information

CMB Polarization Experiments: Status and Prospects. Kuo Assistant Professor of Physics Stanford University, SLAC

CMB Polarization Experiments: Status and Prospects. Kuo Assistant Professor of Physics Stanford University, SLAC CMB Polarization Experiments: Status and Prospects Chao-Lin Kuo Assistant Professor of Physics Stanford University, SLAC Remaining questions in fundamental Cosmology Spectral index of the initial perturbations,

More information

The Expanding Universe

The Expanding Universe Cosmology Expanding Universe History of the Universe Cosmic Background Radiation The Cosmological Principle Cosmology and General Relativity Dark Matter and Dark Energy Primitive Cosmology If the universe

More information

A5682: Introduction to Cosmology Course Notes. 11. CMB Anisotropy

A5682: Introduction to Cosmology Course Notes. 11. CMB Anisotropy Reading: Chapter 8, sections 8.4 and 8.5 11. CMB Anisotropy Gravitational instability and structure formation Today s universe shows structure on scales from individual galaxies to galaxy groups and clusters

More information

MADCAP The Microwave Anisotropy Dataset Computational Analysis Package

MADCAP The Microwave Anisotropy Dataset Computational Analysis Package MADCAP The Microwave Anisotropy Dataset Computational Analysis Package Julian Borrill Scientific Computing Group, National Energy Research Scientific Computing Center, Lawrence Berkeley National Laboratory

More information

A100 Exploring the Universe Big Bang Theory and the Early Universe. Martin D. Weinberg UMass Astronomy

A100 Exploring the Universe Big Bang Theory and the Early Universe. Martin D. Weinberg UMass Astronomy A100 Exploring the Universe and the Martin D. Weinberg UMass Astronomy astron100-mdw@courses.umass.edu December 02, 2014 Read: Chap 23 12/04/14 slide 1 Assignment on Chaps 22 23, at the end of next week,

More information

(Astro)Physics 343 Lecture # 13: cosmic microwave background (and cosmic reionization!)

(Astro)Physics 343 Lecture # 13: cosmic microwave background (and cosmic reionization!) (Astro)Physics 343 Lecture # 13: cosmic microwave background (and cosmic reionization!) Welcome back! (four pictures on class website; add your own to http://s304.photobucket.com/albums/nn172/rugbt/) Results:

More information

Physics 661. Particle Physics Phenomenology. October 2, Physics 661, lecture 2

Physics 661. Particle Physics Phenomenology. October 2, Physics 661, lecture 2 Physics 661 Particle Physics Phenomenology October 2, 2003 Evidence for theory: Hot Big Bang Model Present expansion of the Universe Existence of cosmic microwave background radiation Relative abundance

More information

Astronomy 162, Week 10 Cosmology Patrick S. Osmer Spring, 2006

Astronomy 162, Week 10 Cosmology Patrick S. Osmer Spring, 2006 Astronomy 162, Week 10 Cosmology Patrick S. Osmer Spring, 2006 Information Makeup quiz Wednesday, May 31, 5-6PM, Planetarium Review Session, Monday, June 5 6PM, Planetarium Cosmology Study of the universe

More information

Physics of CMB Polarization and Its Measurement

Physics of CMB Polarization and Its Measurement Physics of CMB Polarization and Its Measurement HEP seminar at Kyoto University April 13 th, 2007 Akito KUSAKA University of Tokyo Outline Physics of CMB and its Polarization What does WMAP shed light

More information

The cosmic background radiation II: The WMAP results. Alexander Schmah

The cosmic background radiation II: The WMAP results. Alexander Schmah The cosmic background radiation II: The WMAP results Alexander Schmah 27.01.05 General Aspects - WMAP measures temperatue fluctuations of the CMB around 2.726 K - Reason for the temperature fluctuations

More information

Brief Introduction to Cosmology

Brief Introduction to Cosmology Brief Introduction to Cosmology Matias Zaldarriaga Harvard University August 2006 Basic Questions in Cosmology: How does the Universe evolve? What is the universe made off? How is matter distributed? How

More information

The Millennium Simulation: cosmic evolution in a supercomputer. Simon White Max Planck Institute for Astrophysics

The Millennium Simulation: cosmic evolution in a supercomputer. Simon White Max Planck Institute for Astrophysics The Millennium Simulation: cosmic evolution in a supercomputer Simon White Max Planck Institute for Astrophysics The COBE satellite (1989-1993) Two instruments made maps of the whole sky in microwaves

More information

The first light in the universe

The first light in the universe The first light in the universe Aniello Mennella Università degli Studi di Milano Dipartimento di Fisica Photons in the early universe Early universe is a hot and dense expanding plasma 14 May 1964, 11:15

More information

A100H Exploring the Universe: Big Bang Theory. Martin D. Weinberg UMass Astronomy

A100H Exploring the Universe: Big Bang Theory. Martin D. Weinberg UMass Astronomy A100H Exploring the : Martin D. Weinberg UMass Astronomy astron100h-mdw@courses.umass.edu April 21, 2016 Read: Chap 23 04/26/16 slide 1 Early Final Exam: Friday 29 Apr at 10:30 am 12:30 pm, here! Emphasizes

More information

Galaxies 626. Lecture 3: From the CMBR to the first star

Galaxies 626. Lecture 3: From the CMBR to the first star Galaxies 626 Lecture 3: From the CMBR to the first star Galaxies 626 Firstly, some very brief cosmology for background and notation: Summary: Foundations of Cosmology 1. Universe is homogenous and isotropic

More information

Lecture #24: Plan. Cosmology. Expansion of the Universe Olber s Paradox Birth of our Universe

Lecture #24: Plan. Cosmology. Expansion of the Universe Olber s Paradox Birth of our Universe Lecture #24: Plan Cosmology Expansion of the Universe Olber s Paradox Birth of our Universe Reminder: Redshifts and the Expansion of the Universe Early 20 th century astronomers noted: Spectra from most

More information

Introduction. How did the universe evolve to what it is today?

Introduction. How did the universe evolve to what it is today? Cosmology 8 1 Introduction 8 2 Cosmology: science of the universe as a whole How did the universe evolve to what it is today? Based on four basic facts: The universe expands, is isotropic, and is homogeneous.

More information

Cosmology. Jörn Wilms Department of Physics University of Warwick.

Cosmology. Jörn Wilms Department of Physics University of Warwick. Cosmology Jörn Wilms Department of Physics University of Warwick http://astro.uni-tuebingen.de/~wilms/teach/cosmo Contents 2 Old Cosmology Space and Time Friedmann Equations World Models Modern Cosmology

More information

Cosmology with CMB & LSS:

Cosmology with CMB & LSS: Cosmology with CMB & LSS: the Early universe VSP08 lecture 4 (May 12-16, 2008) Tarun Souradeep I.U.C.A.A, Pune, India Ω +Ω +Ω +Ω + Ω +... = 1 0 0 0 0... 1 m DE K r r The Cosmic Triangle (Ostriker & Steinhardt)

More information

Astronomy 182: Origin and Evolution of the Universe

Astronomy 182: Origin and Evolution of the Universe Astronomy 182: Origin and Evolution of the Universe Prof. Josh Frieman Lecture 11 Nov. 13, 2015 Today Cosmic Microwave Background Big Bang Nucleosynthesis Assignments This week: read Hawley and Holcomb,

More information

Astr 102: Introduction to Astronomy. Lecture 16: Cosmic Microwave Background and other evidence for the Big Bang

Astr 102: Introduction to Astronomy. Lecture 16: Cosmic Microwave Background and other evidence for the Big Bang Astr 102: Introduction to Astronomy Fall Quarter 2009, University of Washington, Željko Ivezić Lecture 16: Cosmic Microwave Background and other evidence for the Big Bang 1 Outline Observational Cosmology:

More information

Lecture 37 Cosmology [not on exam] January 16b, 2014

Lecture 37 Cosmology [not on exam] January 16b, 2014 1 Lecture 37 Cosmology [not on exam] January 16b, 2014 2 Structure of the Universe Does clustering of galaxies go on forever? Looked at very narrow regions of space to far distances. On large scales the

More information

Implications of the Hubble Law: - it is not static, unchanging - Universe had a beginning!! - could not have been expanding forever HUBBLE LAW:

Implications of the Hubble Law: - it is not static, unchanging - Universe had a beginning!! - could not have been expanding forever HUBBLE LAW: Cosmology and the Evolution of the Universe Edwin Hubble, 1929: -almost all galaxies have a redshift -moving away from us -greater distance greater redshift Implications of the Hubble Law: - Universe is

More information

Cosmology and the Evolution of the Universe. Implications of the Hubble Law: - Universe is changing (getting bigger!) - it is not static, unchanging

Cosmology and the Evolution of the Universe. Implications of the Hubble Law: - Universe is changing (getting bigger!) - it is not static, unchanging Cosmology and the Evolution of the Edwin Hubble, 1929: -almost all galaxies have a redshift -moving away from us -exceptions in Local Group -with distance measurements - found a relationship greater distance

More information

Imprint of Scalar Dark Energy on CMB polarization

Imprint of Scalar Dark Energy on CMB polarization Imprint of Scalar Dark Energy on CMB polarization Kin-Wang Ng ( 吳建宏 ) Institute of Physics & Institute of Astronomy and Astrophysics, Academia Sinica, Taiwan Cosmology and Gravity Pre-workshop NTHU, Apr

More information

Chapter 22 Lecture. The Cosmic Perspective. Seventh Edition. The Birth of the Universe Pearson Education, Inc.

Chapter 22 Lecture. The Cosmic Perspective. Seventh Edition. The Birth of the Universe Pearson Education, Inc. Chapter 22 Lecture The Cosmic Perspective Seventh Edition The Birth of the Universe The Birth of the Universe 22.1 The Big Bang Theory Our goals for learning: What were conditions like in the early universe?

More information

Formation of the Universe. What evidence supports current scientific theory?

Formation of the Universe. What evidence supports current scientific theory? Formation of the Universe What evidence supports current scientific theory? Cosmology Cosmology is the study of the Nature, Structure, Origin, And fate of the universe. How did it all begin? Astronomers

More information

n=0 l (cos θ) (3) C l a lm 2 (4)

n=0 l (cos θ) (3) C l a lm 2 (4) Cosmic Concordance What does the power spectrum of the CMB tell us about the universe? For that matter, what is a power spectrum? In this lecture we will examine the current data and show that we now have

More information

Really, really, what universe do we live in?

Really, really, what universe do we live in? Really, really, what universe do we live in? Fluctuations in cosmic microwave background Origin Amplitude Spectrum Cosmic variance CMB observations and cosmological parameters COBE, balloons WMAP Parameters

More information

The Cosmic Microwave Background

The Cosmic Microwave Background The Cosmic Microwave Background Our probe of the birth of the universe Will Handley wh260@cam.ac.uk Astrophysics Department Cavendish Laboratory University of Cambridge 20 th March 2013 Overview Light

More information

Chapter 27: The Early Universe

Chapter 27: The Early Universe Chapter 27: The Early Universe The plan: 1. A brief survey of the entire history of the big bang universe. 2. A more detailed discussion of each phase, or epoch, from the Planck era through particle production,

More information

Lecture 03. The Cosmic Microwave Background

Lecture 03. The Cosmic Microwave Background The Cosmic Microwave Background 1 Photons and Charge Remember the lectures on particle physics Photons are the bosons that transmit EM force Charged particles interact by exchanging photons But since they

More information

The Cosmic Microwave Background

The Cosmic Microwave Background The Cosmic Microwave Background The Cosmic Microwave Background Key Concepts 1) The universe is filled with a Cosmic Microwave Background (CMB). 2) The microwave radiation that fills the universe is nearly

More information

Cosmic Background Radiation

Cosmic Background Radiation Cosmic Background Radiation The Big Bang generated photons, which scattered frequently in the very early Universe, which was opaque. Once recombination happened the photons are scattered one final time

More information

Announcements. Homework. Set 8now open. due late at night Friday, Dec 10 (3AM Saturday Nov. 11) Set 7 answers on course web site.

Announcements. Homework. Set 8now open. due late at night Friday, Dec 10 (3AM Saturday Nov. 11) Set 7 answers on course web site. Homework. Set 8now. due late at night Friday, Dec 10 (3AM Saturday Nov. 11) Set 7 answers on course web site. Review for Final. In class on Thursday. Course Evaluation. https://rateyourclass.msu.edu /

More information

Cosmic Microwave Background

Cosmic Microwave Background Cosmic Microwave Background Following recombination, photons that were coupled to the matter have had very little subsequent interaction with matter. Now observed as the cosmic microwave background. Arguably

More information

Cosmology. An Analogy 11/28/2010. Cosmology Study of the origin, evolution and future of the Universe

Cosmology. An Analogy 11/28/2010. Cosmology Study of the origin, evolution and future of the Universe Cosmology Cosmology Study of the origin, evolution and future of the Universe Obler s Paradox If the Universe is infinite why is the sky dark at night? Newtonian Universe The Universe is infinite and unchanging

More information

Chapter 22 Reading Quiz Clickers. The Cosmic Perspective Seventh Edition. The Birth of the Universe Pearson Education, Inc.

Chapter 22 Reading Quiz Clickers. The Cosmic Perspective Seventh Edition. The Birth of the Universe Pearson Education, Inc. Reading Quiz Clickers The Cosmic Perspective Seventh Edition The Birth of the Universe 22.1 The Big Bang Theory What were conditions like in the early universe? How did the early universe change with time?

More information

Where we left off last time...

Where we left off last time... Where we left off last time... The Planck Era is pure speculation about topics that are being explored in detail today (gravity, string theory, etc.) The GUT era matches what physicists see in particle

More information

Concordance Cosmology and Particle Physics. Richard Easther (Yale University)

Concordance Cosmology and Particle Physics. Richard Easther (Yale University) Concordance Cosmology and Particle Physics Richard Easther (Yale University) Concordance Cosmology The standard model for cosmology Simplest model that fits the data Smallest number of free parameters

More information

What is the evidence that Big Bang really occurred

What is the evidence that Big Bang really occurred What is the evidence that Big Bang really occurred Hubble expansion of galaxies Microwave Background Abundance of light elements but perhaps most fundamentally... Darkness of the night sky!! The very darkness

More information

Galaxy A has a redshift of 0.3. Galaxy B has a redshift of 0.6. From this information and the existence of the Hubble Law you can conclude that

Galaxy A has a redshift of 0.3. Galaxy B has a redshift of 0.6. From this information and the existence of the Hubble Law you can conclude that Galaxy A has a redshift of 0.3. Galaxy B has a redshift of 0.6. From this information and the existence of the Hubble Law you can conclude that A) Galaxy B is two times further away than Galaxy A. B) Galaxy

More information

MIT Exploring Black Holes

MIT Exploring Black Holes THE UNIVERSE and Three Examples Alan Guth, MIT MIT 8.224 Exploring Black Holes EINSTEIN'S CONTRIBUTIONS March, 1916: The Foundation of the General Theory of Relativity Feb, 1917: Cosmological Considerations

More information

THE PLANCK MISSION The most accurate measurement of the oldest electromagnetic radiation in the Universe

THE PLANCK MISSION The most accurate measurement of the oldest electromagnetic radiation in the Universe THE PLANCK MISSION The most accurate measurement of the oldest electromagnetic radiation in the Universe Rodrigo Leonardi Planck Science Office ESTEC/ESA OVERVIEW Planck observational objective & science.

More information

What can we Learn from the Cosmic Microwave Background

What can we Learn from the Cosmic Microwave Background What can we Learn from the Cosmic Microwave Background Problem Set #3 will be due in part on April 8 and in full on April 11 Solutions to Problem Set #2 are online... graded versions soon Again I m asking

More information

Planetarium/Observing: the clock is ticking! Don t forget to fill out your Planetarium/ Observing impression online.

Planetarium/Observing: the clock is ticking! Don t forget to fill out your Planetarium/ Observing impression online. Announcements HW #5 Due Wed, Dec. 10th. Planetarium/Observing: the clock is ticking! Don t forget to fill out your Planetarium/ Observing impression online. NOTE: Planetarium: Large dome you sit inside.

More information

Hubble's Law. H o = 71 km/s / Mpc. The further a galaxy is away, the faster it s moving away from us. V = H 0 D. Modern Data.

Hubble's Law. H o = 71 km/s / Mpc. The further a galaxy is away, the faster it s moving away from us. V = H 0 D. Modern Data. Cosmology Cosmology is the study of the origin and evolution of the Universe, addressing the grandest issues: How "big" is the Universe? Does it have an "edge"? What is its large-scale structure? How did

More information

Chapter 27 The Early Universe Pearson Education, Inc.

Chapter 27 The Early Universe Pearson Education, Inc. Chapter 27 The Early Universe Units of Chapter 27 27.1 Back to the Big Bang 27.2 The Evolution of the Universe More on Fundamental Forces 27.3 The Formation of Nuclei and Atoms 27.4 The Inflationary Universe

More information

OUSSEP Final Week. If we run out of time you can look at uploaded slides Pearson Education, Inc.

OUSSEP Final Week. If we run out of time you can look at uploaded slides Pearson Education, Inc. OUSSEP Final Week Last week hopefully read Holiday-Week 23rd November Lecture notes Hand in your Hubble Deep Field Reports today! (If not today then in my mail box @ International College.) Today we will

More information

Early (Expanding) Universe. Average temperature decreases with expansion.

Early (Expanding) Universe. Average temperature decreases with expansion. Early (Expanding) Universe Average temperature decreases with expansion. Particles & Anti-Particles Very short wavelength photons collide and form electron-positron pairs. E=mc 2 electron=matter positron=antimatter

More information

The Early Universe John Peacock ESA Cosmic Vision Paris, Sept 2004

The Early Universe John Peacock ESA Cosmic Vision Paris, Sept 2004 The Early Universe John Peacock ESA Cosmic Vision Paris, Sept 2004 The history of modern cosmology 1917 Static via cosmological constant? (Einstein) 1917 Expansion (Slipher) 1952 Big Bang criticism (Hoyle)

More information

Astroparticle physics

Astroparticle physics Timo Enqvist University of Oulu Oulu Southern institute lecture cource on Astroparticle physics 15.09.2009 15.12.2009 10 Cosmic microwave background Content 10.0 Small introduction 10.1 Cosmic microwave

More information

Chapter 26: Cosmology

Chapter 26: Cosmology Chapter 26: Cosmology Cosmology means the study of the structure and evolution of the entire universe as a whole. First of all, we need to know whether the universe has changed with time, or if it has

More information

Cosmology. Clusters of galaxies. Redshift. Late 1920 s: Hubble plots distances versus velocities of galaxies. λ λ. redshift =

Cosmology. Clusters of galaxies. Redshift. Late 1920 s: Hubble plots distances versus velocities of galaxies. λ λ. redshift = Cosmology Study of the structure and origin of the universe Observational science The large-scale distribution of galaxies Looking out to extremely large distances The motions of galaxies Clusters of galaxies

More information

Modern Cosmology / Scott Dodelson Contents

Modern Cosmology / Scott Dodelson Contents Modern Cosmology / Scott Dodelson Contents The Standard Model and Beyond p. 1 The Expanding Universe p. 1 The Hubble Diagram p. 7 Big Bang Nucleosynthesis p. 9 The Cosmic Microwave Background p. 13 Beyond

More information

The oldest science? One of the most rapidly evolving fields of modern research. Driven by observations and instruments

The oldest science? One of the most rapidly evolving fields of modern research. Driven by observations and instruments The oldest science? One of the most rapidly evolving fields of modern research. Driven by observations and instruments Intersection of physics (fundamental laws) and astronomy (contents of the universe)

More information

Anisotropy in the CMB

Anisotropy in the CMB Anisotropy in the CMB Antony Lewis Institute of Astronomy & Kavli Institute for Cosmology, Cambridge http://cosmologist.info/ Hanson & Lewis: 0908.0963 Evolution of the universe Opaque Transparent Hu &

More information

Cosmic Microwave Background. Eiichiro Komatsu Guest Lecture, University of Copenhagen, May 19, 2010

Cosmic Microwave Background. Eiichiro Komatsu Guest Lecture, University of Copenhagen, May 19, 2010 Cosmic Microwave Background Eiichiro Komatsu Guest Lecture, University of Copenhagen, May 19, 2010 1 Cosmology: The Questions How much do we understand our Universe? How old is it? How big is it? What

More information

Lecture #25: Plan. Cosmology. The early Universe (cont d) The fate of our Universe The Great Unanswered Questions

Lecture #25: Plan. Cosmology. The early Universe (cont d) The fate of our Universe The Great Unanswered Questions Lecture #25: Plan Cosmology The early Universe (cont d) The fate of our Universe The Great Unanswered Questions Announcements Course evaluations: CourseEvalUM.umd.edu Review sheet #3 was emailed to you

More information

Planck. Report on the status of the mission Carlo Baccigalupi, SISSA

Planck. Report on the status of the mission Carlo Baccigalupi, SISSA Planck Report on the status of the mission Carlo Baccigalupi, SISSA Outline CMB The Planck satellite Data processing center Expectations from Planck Planck data CMB CMB angular power spectrum Angle 200/l

More information

Instrumental Systematics on Lensing Reconstruction and primordial CMB B-mode Diagnostics. Speaker: Meng Su. Harvard University

Instrumental Systematics on Lensing Reconstruction and primordial CMB B-mode Diagnostics. Speaker: Meng Su. Harvard University Instrumental Systematics on Lensing Reconstruction and primordial CMB B-mode Diagnostics Speaker: Meng Su Harvard University Collaborators: Amit P.S. Yadav, Matias Zaldarriaga Berkeley CMB Lensing workshop

More information

20 Lecture 20: Cosmic Microwave Background Radiation continued

20 Lecture 20: Cosmic Microwave Background Radiation continued PHYS 652: Astrophysics 103 20 Lecture 20: Cosmic Microwave Background Radiation continued Innocent light-minded men, who think that astronomy can be learnt by looking at the stars without knowledge of

More information

Power spectrum exercise

Power spectrum exercise Power spectrum exercise In this exercise, we will consider different power spectra and how they relate to observations. The intention is to give you some intuition so that when you look at a microwave

More information

Algorithms for Higher Order Spatial Statistics

Algorithms for Higher Order Spatial Statistics Algorithms for Higher Order Spatial Statistics István Szapudi Institute for Astronomy University of Hawaii Future of AstroComputing Conference, SDSC, Dec 16-17 Outline Introduction 1 Introduction 2 Random

More information

Astronomy 182: Origin and Evolution of the Universe

Astronomy 182: Origin and Evolution of the Universe Astronomy 182: Origin and Evolution of the Universe Prof. Josh Frieman Lecture 10 Nov. 11, 2015 Today Hot Big Bang I: Cosmic Microwave Background Assignments This week: read Hawley and Holcomb, Chapter

More information

If there is an edge to the universe, we should be able to see our way out of the woods. Olber s Paradox. This is called Olber s Paradox

If there is an edge to the universe, we should be able to see our way out of the woods. Olber s Paradox. This is called Olber s Paradox Suppose the Universe were not expanding, but was in some kind of steady state. How should galaxy recession velocities correlate with distance? They should a) be directly proportional to distance. b) reverse

More information

Constraints on Anisotropic Cosmic Expansion from Supernovae

Constraints on Anisotropic Cosmic Expansion from Supernovae Constraints on Anisotropic Cosmic Expansion from Supernovae Based on BK, Schwarz, Seikel, Wiegand, arxiv:1212.3691 Benedict Kalus Bielefeld University 2 / 12 8. Kosmologietag 25 th April, 2013 IBZ, Bielefeld

More information

Cosmology The Road Map

Cosmology The Road Map Cosmology The Road Map Peter Schneider Institut für Astrophysik, Bonn University on behalf of the Astronomy Working Group Cosmology s Themes Fundamental Cosmology Probing inflation Investigating Dark Energy

More information

The Big Bang The Beginning of Time

The Big Bang The Beginning of Time The Big Bang The Beginning of Time What were conditions like in the early universe? The early universe must have been extremely hot and dense Photons converted into particle-antiparticle pairs and vice-versa

More information

Assignments. Read all (secs ) of DocOnotes-cosmology. HW7 due today; accepted till Thurs. w/ 5% penalty

Assignments. Read all (secs ) of DocOnotes-cosmology. HW7 due today; accepted till Thurs. w/ 5% penalty Assignments Read all (secs. 25-29) of DocOnotes-cosmology. HW7 due today; accepted till Thurs. w/ 5% penalty Term project due last day of class, Tues. May 17 Final Exam Thurs. May 19, 3:30 p.m. here Olber

More information

Constraints on inflationary models of the Universe based on CMB data

Constraints on inflationary models of the Universe based on CMB data Astrophysics Group Cavendish Laboratory Constraints on inflationary models of the Universe based on CMB data Andrés Curto Martín Enrique Martínez González 8 th RES User Conference, Santander, 23/Sept/2014

More information

Inflationary Universe and. Quick survey about iclickers Review of Big Bang model of universe Review of Evidence for Big Bang Examining Inflation

Inflationary Universe and. Quick survey about iclickers Review of Big Bang model of universe Review of Evidence for Big Bang Examining Inflation Inflationary Universe and Quick survey about iclickers Review of Big Bang model of universe Review of Evidence for Big Bang Examining Inflation Survey questions 1. The iclickers used in class encouraged

More information

Survey questions. Inflationary Universe and. Survey Questions. Survey questions. Survey questions

Survey questions. Inflationary Universe and. Survey Questions. Survey questions. Survey questions Inflationary Universe and Quick survey about iclickers Review of Big Bang model of universe Review of Evidence for Big Bang Examining Inflation Survey questions 1. The iclickers used in class encouraged

More information

Theory of galaxy formation

Theory of galaxy formation Theory of galaxy formation Bibliography: Galaxy Formation and Evolution (Mo, van den Bosch, White 2011) Lectures given by Frank van den Bosch in Yale http://www.astro.yale.edu/vdbosch/teaching.html Theory

More information

Island Universes. Up to 1920 s, many thought that Milky Way encompassed entire universe.

Island Universes. Up to 1920 s, many thought that Milky Way encompassed entire universe. Island Universes Up to 1920 s, many thought that Milky Way encompassed entire universe. Observed three types of nebulas (clouds): - diffuse, spiral, elliptical - many were faint, indistinct - originally

More information

Chapter 21 Evidence of the Big Bang. Expansion of the Universe. Big Bang Theory. Age of the Universe. Hubble s Law. Hubble s Law

Chapter 21 Evidence of the Big Bang. Expansion of the Universe. Big Bang Theory. Age of the Universe. Hubble s Law. Hubble s Law Chapter 21 Evidence of the Big Bang Hubble s Law Universal recession: Slipher (1912) and Hubble found that all galaxies seem to be moving away from us: the greater the distance, the higher the redshift

More information

Data Intensive Computing meets High Performance Computing

Data Intensive Computing meets High Performance Computing Data Intensive Computing meets High Performance Computing Kathy Yelick Associate Laboratory Director for Computing Sciences, Lawrence Berkeley National Laboratory Professor of Electrical Engineering and

More information

Ringing in the New Cosmology

Ringing in the New Cosmology Ringing in the New Cosmology 80 T (µk) 60 40 20 Boom98 CBI Maxima-1 DASI 500 1000 1500 l (multipole) Acoustic Peaks in the CMB Wayne Hu Temperature Maps CMB Isotropy Actual Temperature Data COBE 1992 Dipole

More information

1920s 1990s (from Friedmann to Freedman)

1920s 1990s (from Friedmann to Freedman) 20 th century cosmology 1920s 1990s (from Friedmann to Freedman) theoretical technology available, but no data 20 th century: birth of observational cosmology Hubble s law ~1930 Development of astrophysics

More information

Dark Energy and the Accelerating Universe

Dark Energy and the Accelerating Universe Dark Energy and the Accelerating Universe Dragan Huterer Department of Physics University of Michigan The universe today presents us with a grand puzzle: What is 95% of it made of? Shockingly, we still

More information

The cosmic microwave background radiation

The cosmic microwave background radiation The cosmic microwave background radiation László Dobos Dept. of Physics of Complex Systems dobos@complex.elte.hu É 5.60 May 18, 2018. Origin of the cosmic microwave radiation Photons in the plasma are

More information

The first 400,000 years

The first 400,000 years The first 400,000 years All about the Big Bang Temperature Chronology of the Big Bang The Cosmic Microwave Background (CMB) The VERY early universe Our Evolving Universe 1 Temperature and the Big Bang

More information

The Big Bang. Olber s Paradox. Hubble s Law. Why is the night sky dark? The Universe is expanding and We cannot see an infinite Universe

The Big Bang. Olber s Paradox. Hubble s Law. Why is the night sky dark? The Universe is expanding and We cannot see an infinite Universe The Big Bang Olber s Paradox Why is the night sky dark? The Universe is expanding and We cannot see an infinite Universe Hubble s Law v = H0 d v = recession velocity in km/sec d = distance in Mpc H 0 =

More information

Cosmology. Big Bang and Inflation

Cosmology. Big Bang and Inflation Cosmology Big Bang and Inflation What is the Universe? Everything we can know about is part of the universe. Everything we do know about is part of the universe. Everything! The Universe is expanding If

More information

Cosmology with CMB: the perturbed universe

Cosmology with CMB: the perturbed universe Cosmology with CMB: the perturbed universe Utkal Univ. (Jan 11-12, 2008) Tarun Souradeep I.U.C.A.A, Pune, India How do we know so much now about this model Universe? Cosmic Microwave Background Pristine

More information

AST5220 lecture 2 An introduction to the CMB power spectrum. Hans Kristian Eriksen

AST5220 lecture 2 An introduction to the CMB power spectrum. Hans Kristian Eriksen AST5220 lecture 2 An introduction to the CMB power spectrum Hans Kristian Eriksen Cosmology in ~five slides The basic ideas of Big Bang: 1) The Big Bang model The universe expands today Therefore it must

More information

Growth of structure in an expanding universe The Jeans length Dark matter Large scale structure simulations. Large scale structure

Growth of structure in an expanding universe The Jeans length Dark matter Large scale structure simulations. Large scale structure Modern cosmology : The Growth of Structure Growth of structure in an expanding universe The Jeans length Dark matter Large scale structure simulations effect of cosmological parameters Large scale structure

More information

What forms AGN Jets? Magnetic fields are ferociously twisted in the disk.

What forms AGN Jets? Magnetic fields are ferociously twisted in the disk. What forms AGN Jets? Magnetic fields are ferociously twisted in the disk. Charged particles are pulled out of the disk and accelerated like a sling-shot. Particles are bound to the magnetic fields, focussed

More information

Nucleosíntesis primordial

Nucleosíntesis primordial Tema 5 Nucleosíntesis primordial Asignatura de Física Nuclear Curso académico 2009/2010 Universidad de Santiago de Compostela Big Bang cosmology 1.1 The Universe today The present state of the Universe

More information

Cosmology. Thermal history of the universe Primordial nucleosynthesis WIMPs as dark matter Recombination Horizon problem Flatness problem Inflation

Cosmology. Thermal history of the universe Primordial nucleosynthesis WIMPs as dark matter Recombination Horizon problem Flatness problem Inflation Cosmology Thermal history of the universe Primordial nucleosynthesis WIMPs as dark matter Recombination Horizon problem Flatness problem Inflation Energy density versus scale factor z=1/a-1 Early times,

More information

Chapter 1 Introduction. Particle Astrophysics & Cosmology SS

Chapter 1 Introduction. Particle Astrophysics & Cosmology SS Chapter 1 Introduction Particle Astrophysics & Cosmology SS 2008 1 Ptolemäus (85 165 b.c.) Kopernicus (1473 1543) Kepler (1571 1630) Newton (1643 1727) Kant (1724 1630) Herschel (1738 1822) Einstein (1917)

More information

Cosmology. Thornton and Rex, Ch. 16

Cosmology. Thornton and Rex, Ch. 16 Cosmology Thornton and Rex, Ch. 16 Expansion of the Universe 1923 - Edwin Hubble resolved Andromeda Nebula into separate stars. 1929 - Hubble compared radial velocity versus distance for 18 nearest galaxies.

More information

AST5220 lecture 2 An introduction to the CMB power spectrum. Hans Kristian Eriksen

AST5220 lecture 2 An introduction to the CMB power spectrum. Hans Kristian Eriksen AST5220 lecture 2 An introduction to the CMB power spectrum Hans Kristian Eriksen Cosmology in ~five slides The basic ideas of Big Bang: 1) The Big Bang model The universe expands today Therefore it must

More information

Chapter 22 Back to the Beginning of Time

Chapter 22 Back to the Beginning of Time Chapter 22 Back to the Beginning of Time Expansion of Universe implies dense, hot start: Big Bang Back to the Big Bang The early Universe was both dense and hot. Equivalent mass density of radiation (E=mc

More information

Structure in the CMB

Structure in the CMB Cosmic Microwave Background Anisotropies = structure in the CMB Structure in the CMB Boomerang balloon flight. Mapped Cosmic Background Radiation with far higher angular resolution than previously available.

More information

CH 14 MODERN COSMOLOGY The Study of Nature, origin and evolution of the universe Does the Universe have a center and an edge? What is the evidence

CH 14 MODERN COSMOLOGY The Study of Nature, origin and evolution of the universe Does the Universe have a center and an edge? What is the evidence CH 14 MODERN COSMOLOGY The Study of Nature, origin and evolution of the universe Does the Universe have a center and an edge? What is the evidence that the Universe began with a Big Bang? How has the Universe

More information