Exponential Profile Fitting on the Unusual SAB(s)bc galaxy M106 Alex K Chen Astronomy Department, University of Washington

Size: px
Start display at page:

Download "Exponential Profile Fitting on the Unusual SAB(s)bc galaxy M106 Alex K Chen Astronomy Department, University of Washington"

Transcription

1 Exponential Profile Fitting on the Unusual SAB(s)bc galaxy M106 Alex K Chen Astronomy Department, University of Washington Abstract M106 is a late type spiral galaxy with an inclination of 64 degrees. In this paper, we will discuss how the surface brightness profile of the galaxy varies as a function of semimajor axis. We used an Arcsat telescope to take pictures of M106 through three different filters and then used IRAF to reduce the images. We then used the task ELLIPSE to take measurements of both the surface brightness profile and the length of the semimajor axis of the galaxy so that we could see how the surface brightness profile fell as a function of semimajor axis. We then used MATLAB to create an exponential function whose coefficients determined the galaxy s falloff with respect to time. Our results showed that our galaxy s brightness fell off with a Sersic parameter of 3.05, which is closer to the Sersic parameter for ellipticals than the Sersic parameter for spirals. Future studies should examine whether the inclination has an effect to the fitting, as well as on new functional forms that might better approximate the falloff of surface brightness in a more varied distribution of galaxies. Introduction M106 is a Seyfert spiral galaxy in the constellation Canes Venatici, at a distance of 7.3 Mpc from Earth. Other specifications are listed below. Right Ascension 12h, 18m, 57.5s Declination +47:18:14 Type SAB(s)bc Inclination 64 degrees Apparent magnitude (Visual) 9.1 Table 1: Basic Information about our object. Much of our data comes from [4]. We collected flux counts from the object in 3 different filters. As in the case with other spiral galaxies, we expect the intensity of the disk component to fall off as according to the exponential profile I( r) =I(0)exp[-R/R e ], and we expect the intensity of the bulge component to fall off as according to devaucouleur s profile I(r ) = I e exp(-7.67*((r/r e ) 1/4-1)), where R e is the effective radius and I e is the intensity at such radius. These profiles are merely special cases of the Sersic profile. I(r ) = I e exp(- 7.67*((R/R e ) 1/n -1)), which has a key parameter of n that distinguishes between elliptical galaxies and spiral galaxies. Here, the exponential profile would have a parameter of n=1, and the devaucoleur s profile would have a parameter of n=4. In this paper, we will first describe how we obtained our image and the conditions that affected the image that we retrieved. We will then go into how we obtained the Sersic parameter of our galaxy. Finally, we will discuss the potential flaws of our research, and the research gaps that may give us a more informed view of why we obtained the Sersic parameter we had. Description of Observations We remotely controlled an 2.5-meter Arcsat telescope in New Mexico on 9:23 PM (MST) on May 24 th, The weather conditions were very clear and the object was almost overhead, as the hour angle

2 was only +0h 10 min and the airmass was The CCD temperature was -30 degrees Celsius. We collected 3 60-second observations of the target one for each filter (G, U, and I). These correspond to the green, ultraviolet, and infrared SDSS filters. We also took 60 minute flat frames, 60 second dark frames, and 60 second frames of our object. Telescope Brand ARCSAT Aperture(cm) 250 Focal ratio f/5 Focal length(mm) 12,500 CCD Camera brand Alta U47 CCD Dimensions 13.3 x 13.3 mm Pixel Size(microns) 13 x 13 Plate Scale(arcsec/pixel) 2.1 Field of View(arcseconds) x Dark Current 0.2 e-/pixel/sec Read Noise 9 e- RMS Filter Types SDSS u, g, I filters Table 2: Description of our CCD and telescope. Much of our data is found in references [1] and [3]. Our signal to noise ratio could be found through the formula S/N = N*/Sqrt[N*+n pix *(N s +N D +N R 2 )] (Howell 73). Here, we use 1 pixel, and a representative value of N* was 1800 for regions around the center of the galaxy. A good value for N D is 0.2*60 = 12. N R = 9, and N S = 980. So plugging our values into the formula, we get a S/N of around for regions around the center of the galaxy. For the spiral arms, however, with values of N* around 1100, we get a S/N of Reduction We calibrated the data using the program IRAF. We averaged the 60-second darks by running imcombine on all of our dark frames. Then we used imarith to subtract the averaged dark from each flat. We used imcombine to average the dark-subtracted flats. We then used imarith to divide the darksubtracted flats by the mode of the dark subtracted flats to get the normalized flats. We subtracted the 60-second darks from the 3 science images and then divided each of the 3 science images by the new normalized flats. This produced our calibrated science images that we would then use for our analysis. Analysis The inclination of our galaxy was 64 degrees, which is an intermediate inclination that does not easily lend itself to an analysis as easy as edge-on galaxies or face-on galaxies. We then ran the task ellipse to get isophotes of our galaxy. This generated an output file that we could then use with IDL to plot a graph of surface brightness with respect to semimajor axis. We generated isophotes through all three filters, which are displayed below as red ellipses.

3 Figure 1: Our object in the G filter Figure 2: Our object in the U filter

4 Figure 3: Our object in the I filter We concluded that the green filter would be the best filter to use for our analysis, as it shows a clear image of the spiral arms and clearly differentiates the galaxy's spatial structures from each other. So we ran the task stsdas.analysis.isophote.ellipse in order to get the falloff with respect to semimajor axis of the ellipse (corresponding to a rough distance, although this distance is smaller on the semiminor axis than the semimajor axis). For the most part, we used default arguments, although we set the step size to 3, linear scaling to yes, x0 to 255, y0 to 210, and sma0 to 5. The ellipse task generates an output file that contains numerous columns. The columns relevant for our analysis were the semimajor axis length and the total magnitude enclosed by the ellipse. We used MATLAB to extract the columns. There were 60 ellipses, which was why we set the iteration counts to 60. The code was as follows: clear all; load gfilt.txt x = gfilt(:,1); flux = gfilt(:,21); tmag = gfilt(:,23); npix = gfilt(:,25); diffflux = diff(flux); diffarea = diff(npix); diffmag = -diff(tmag); for i=1:1:60 timestep(i) = i; fluxperpixel(i) = diffflux(i)/diffarea(i); magperpixel(i) = diffmag(i)/diffarea(i); mag(i) = 2.5*log10(fluxperpixel(i)/fluxperpixel(1)) + 9.5; end x = gfilt(:,1); x = x(1:i);

5 Magnitude figure(4), plot(x,mag) Since the total flux enclosed by the ellipse included the flux counts enclosed by all smaller ellipses, we had to subtract the flux counts of ellipse n-1 from ellipse n in order to get the additional flux added by the additional ellipse. So we subtracted the flux of ellipse n-1 from ellipse n. This could easily be done through MATLAB s diff(flux) command. We also subtracted the area of ellipse n-1 from the area of ellipse n (which we did through diff(npix)).we then had to convert fluxes into magnitudes, so we used the formula mag(i) = 2.5*log10(fluxperpixel(i)/fluxperpixel(1)), where the magnitude of the first ellipse would be set to 0, and where we would want the magnitude to be a decreasing curve. We also added a constant value of 9.5 to the magnitude of the first ellipse. The magnitude of M106 is 9.1, and although the magnitude of the first ellipse is probably not 9.5, we used 9.5 as an approximation that is more accurate than 0. We then graphed the enclosed magnitude with respect to semimajor axis and tried to see which parameters would best achieve a fit to the Sersic profile with the general form f(x) = a*exp(b*x^d)). While a generalized Sersic profile is of the form I e exp(-7.67*((r/r e ) 1/n -1)), we did not need to include the extra argument of -1 to our fitting, as it gets absorbed in the coefficient of a. We used the MATLAB toolbox Curve Fitting to achieve a fit to the exponential curve. We had to add a constant c to the fit, where constant c is the value that the exponential curve would fall off towards. Otherwise the outputted curve would have a positive value of b and a negative value of d, as the curve a*exp(b/x^d) falls off towards a constant nonzero value, unlike the curve a*exp(b*x^d) with negative b and positive d, which falls off towards Falloff of Magnitude with Semimajor Axis Semimajor Axis Figure 4: Curve fitting with a decreasing exponential function. X-axis is semimajor axis (in pixels), y- axis is magnitude. Our fit is in green, and our raw data in blue. General model: f(x) = a*exp(b*x^d)+11.1 Coefficients (with 95% confidence bounds): a = (-5.65, ) b = (-1.013, ) d = (0.2814, 0.375) Goodness of fit: SSE: R-square: 0.988

6 Adjusted R-square: RMSE: So here, our profile has an exponent of , corresponding to a Sersic parameter of 1/ = This parameter is larger than the Sersic parameter with an exponent of 1 (which would be expected for the disk of the galaxy) but smaller than the Sersic parameter of 4 for elliptical galaxies (which would be expected for elliptical galaxies and the bulges of spirals). Discussion Why does our model fail to predict an exponential falloff profile, which we would predict in a spiral galaxy? Our galaxy is a late-type spiral, which would imply a smaller Sersic parameter than most other spirals. The high inclination of our galaxy may explain why our galaxy s Sersic parameter did not match the parameter we expected. The inclination made the galaxy look somewhat more elliptical than it would look face-on. We also used the task ellipse, which is specifically designed for elliptical galaxies and not spiral galaxies. While people use the task ellipse on spiral galaxies as well as ellipticals, it may create some complications in the analysis, perhaps making the galaxy look more elliptical than it already is. Our semimajor axes and semimajor axes were significantly different from each other, but they should not be too different from each other in a face-on spiral galaxy. This may have caused some stars in a face-on isophote to switch isophotes when viewed from an inclination as high as M106 s. There is a usercreated SPIRAL package that is ported to the IRAF program, although it is not installed on the astronomy computers at the University of Washington. Perhaps there could be different falloff profiles for different filters. We do not believe that this complicates our situation, however. Our observing conditions were nearly optimal and our S/N ratio was decent, so we do not think these would be factors in our discrepancy. Summary Our analysis suggests that the Sersic profile makes our galaxy appear more elliptical than it really is, with a Sersic parameter of Of course, our analysis was very basic, and our results may be an artifact of the ellipse task as applied to spiral galaxies. In short, we believe that there is a lack of literature that explores how inclination affects the Sersic profiles of various galaxies. For our next steps, we suggest that we should measure the Sersic profile parameters for similar galaxies of various inclinations, just so that we can see how inclination affects the Sersic profile of a specific type of galaxy, such as the SAB(bc) galaxy that we observed. We should also carry out this analysis to different filters, especially the radio filter of M106, as M106 has arms in the radio wavelengths that cannot be seen in other wavelengths. Appendix

7 Figure 5: Quantum Efficiency of our CCD as a function of wavelength. We see that the quantum efficiency is near its maximum in the green filter (510 nm). [1] References [1] Apogee Instruments. Alta Series CCD Cameras. Retrieved 9 June [2] Howell, Steve B. Handbook of CCD Astronomy. Cambridge: Cambridge UP, [3] James E. Gunn et al 2006 The Astronomical Journal [4] "NASA/IPAC Extragalactic Database". Results for Messier Retrieved

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1

OPTICAL PHOTOMETRY. Observational Astronomy (2011) 1 OPTICAL PHOTOMETRY Observational Astronomy (2011) 1 The optical photons coming from an astronomical object (star, galaxy, quasar, etc) can be registered in the pixels of a frame (or image). Using a ground-based

More information

1 The Preliminary Processing

1 The Preliminary Processing AY 257 Modern Observational Techniques...23 1 The Preliminary Processing Frames must be corrected for a bias level and quantum efficiency variations on all scales. For a minority of CCDs and most near-ir

More information

Data Reduction - Optical / NIR Imaging. Chian-Chou Chen Ph319

Data Reduction - Optical / NIR Imaging. Chian-Chou Chen Ph319 Data Reduction - Optical / NIR Imaging Chian-Chou Chen (T.C.) @ Ph319 Images at different wavelengths... Images at different wavelengths... However, the raw data are always not as pretty Why? The total

More information

Journal Club Presentation on The BIMA Survey of Nearby Galaxies. I. The Radial Distribution of CO Emission in Spiral Galaxies by Regan et al.

Journal Club Presentation on The BIMA Survey of Nearby Galaxies. I. The Radial Distribution of CO Emission in Spiral Galaxies by Regan et al. Journal Club Presentation on The BIMA Survey of Nearby Galaxies. I. The Radial Distribution of CO Emission in Spiral Galaxies by Regan et al. ApJ, 561:218-237, 2001 Nov 1 1 Fun With Acronyms BIMA Berkely

More information

Measuring the Redshift of M104 The Sombrero Galaxy

Measuring the Redshift of M104 The Sombrero Galaxy Measuring the Redshift of M104 The Sombrero Galaxy Robert R. MacGregor 1 Rice University Written for Astronomy Laboratory 230 Department of Physics and Astronomy, Rice University May 3, 2004 2 Abstract

More information

Classifying Galaxy Morphology using Machine Learning

Classifying Galaxy Morphology using Machine Learning Julian Kates-Harbeck, Introduction: Classifying Galaxy Morphology using Machine Learning The goal of this project is to classify galaxy morphologies. Generally, galaxy morphologies fall into one of two

More information

Photometric Products. Robert Lupton, Princeton University LSST Pipeline/Calibration Scientist PST/SAC PST/SAC,

Photometric Products. Robert Lupton, Princeton University LSST Pipeline/Calibration Scientist PST/SAC PST/SAC, Photometric Products Robert Lupton, Princeton University LSST Pipeline/Calibration Scientist PST/SAC 2018-02-27 PST/SAC, 2018-02-27 LSST2017 Tucson, AZ August 14-18, 2017 1 Outline Photometry Point Sources

More information

Transiting Exoplanet in the Near Infra-red for the XO-3 System

Transiting Exoplanet in the Near Infra-red for the XO-3 System Transiting Exoplanet in the Near Infra-red for the XO-3 System Nathaniel Rodriguez August 26, 2009 Abstract Our research this summer focused on determining if sufficient precision could be gained from

More information

NAOYUKI TAMURA Subaru Instrument Astronomer Subaru Telescope, NAOJ

NAOYUKI TAMURA Subaru Instrument Astronomer Subaru Telescope, NAOJ FMOS status tt report Science workshop 2011.02.2802 28-03.0202 NAOYUKI TAMURA Subaru Instrument Astronomer Subaru Telescope, NAOJ * Overview * Recent history & current status t * Schedule & future plan

More information

Homework 1. Astronomy 202a. Fall 2009

Homework 1. Astronomy 202a. Fall 2009 Homework 1 Astronomy 0a Fall 009 Solutions Problems: 1. A galaxy has an integrated blue magnitude of 6.5, a rotation velocity (essentially flat) of 107 km s 1, and is ellptical in overall shape with major

More information

Doing astronomy with SDSS from your armchair

Doing astronomy with SDSS from your armchair Doing astronomy with SDSS from your armchair Željko Ivezić, University of Washington & University of Zagreb Partners in Learning webinar, Zagreb, 15. XII 2010 Supported by: Microsoft Croatia and the Croatian

More information

Analyzing Spiral Galaxies Observed in Near-Infrared

Analyzing Spiral Galaxies Observed in Near-Infrared Analyzing Spiral Galaxies Observed in Near-Infrared Preben Grosbøl European Southern Observatory Karl-Schwarzschild-Str. 2, D-85748 Garching, Germany Abstract A sample of 54 spiral galaxies was observed

More information

Astronomy IRAF Tutorial for Exercise II Quick-look Photometry with Imexamine

Astronomy IRAF Tutorial for Exercise II Quick-look Photometry with Imexamine Astronomy 480 - IRAF Tutorial for Exercise II Quick-look Photometry with Imexamine Learning Objectives Files Used Define apparent and absolute magnitude. Explain how the magnitude scale is defined. Summarize

More information

Dark Rate of the STIS NUV Detector

Dark Rate of the STIS NUV Detector SPACE TELESCOPE SCIENCE INSTITUTE Operated for NASA by AURA Instrument Science Report STIS 2011-03 Dark Rate of the STIS NUV Detector Wei Zheng 1, Charles Proffitt 2, and David Sahnow 1 1 Department of

More information

PROJECT GLOBULAR CLUSTERS

PROJECT GLOBULAR CLUSTERS PROJECT 5 GLOBULAR CLUSTERS Objective: The objective of this exercise is the calculation of the core and tidal radius of a globular cluster in the Milky Way. Measure the tidal radius of a globular cluster

More information

Midterm Observing Project: RR Lyrae, Rapidly Pulsating Stars

Midterm Observing Project: RR Lyrae, Rapidly Pulsating Stars AY 145: Topics in Astrophysics Spring, 2005 Midterm Observing Project: RR Lyrae, Rapidly Pulsating Stars Observations: March 21-24, 2005 Lab Report Due: Friday April 15, 2005 Purpose: In place of a midterm

More information

STUDIES OF SELECTED VOIDS. SURFACE PHOTOMETRY OF FAINT GALAXIES IN THE DIRECTION OF IN HERCULES VOID

STUDIES OF SELECTED VOIDS. SURFACE PHOTOMETRY OF FAINT GALAXIES IN THE DIRECTION OF IN HERCULES VOID STUDIES OF SELECTED VOIDS. SURFACE PHOTOMETRY OF FAINT GALAXIES IN THE DIRECTION OF 1600+18 IN HERCULES VOID G.Petrov [1], A.Y.Kniazev [2], and J.W. Fried [2] 1 Institute of Astronomy, Bulgarian Academy

More information

Lab 4: Stellar Spectroscopy

Lab 4: Stellar Spectroscopy Name:... Astronomy 101: Observational Astronomy Fall 2006 Lab 4: Stellar Spectroscopy 1 Observations 1.1 Objectives and Observation Schedule During this lab each group will target a few bright stars of

More information

Figure 1: (Image Credit)

Figure 1: (Image Credit) Ricky Leon Murphy HET609 Semester 1 2005 Project 83 May 30, 2005 Spiral Galaxy Morphology and a Comparison of Four Spiral Galaxies Stars are grouped into island universes called galaxies and there are

More information

Infra-red imaging of perpendicular nested bars in spiral galaxies with the Infra-red Camera at the Carlos Sanchez Telescope

Infra-red imaging of perpendicular nested bars in spiral galaxies with the Infra-red Camera at the Carlos Sanchez Telescope Infra-red imaging of perpendicular nested bars in spiral galaxies with the Infra-red Camera at the Carlos Sanchez Telescope S.N. Kemp (skemp@ll.iac.es) Instituto de Astrofísica de Canarias, E-38200 La

More information

Assignment #12 The Milky Way

Assignment #12 The Milky Way Name Date Class Assignment #12 The Milky Way For thousands of years people assumed that the stars they saw at night were the entire universe. Even after telescopes had been invented, the concept of a galaxy

More information

Life Cycle of Stars. Photometry of star clusters with SalsaJ. Authors: Daniel Duggan & Sarah Roberts

Life Cycle of Stars. Photometry of star clusters with SalsaJ. Authors: Daniel Duggan & Sarah Roberts Photometry of star clusters with SalsaJ Authors: Daniel Duggan & Sarah Roberts Photometry of star clusters with SalsaJ Introduction Photometry is the measurement of the intensity or brightness of an astronomical

More information

Detection of Exoplanets Using the Transit Method

Detection of Exoplanets Using the Transit Method Detection of Exoplanets Using the Transit Method De nnis A fanase v, T h e Geo rg e W a s h i n g t o n Un i vers i t y, Washington, DC 20052 dennisafa@gwu.edu Abstract I conducted differential photometry

More information

SKINAKAS OBSERVATORY. Astronomy Projects for University Students PROJECT GALAXIES

SKINAKAS OBSERVATORY. Astronomy Projects for University Students PROJECT GALAXIES PROJECT 7 GALAXIES Objective: The topics covered in the previous lessons target celestial objects located in our neighbourhood, i.e. objects which are within our own Galaxy. However, the Universe extends

More information

Exploring Data. Keck LRIS spectra. Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6

Exploring Data. Keck LRIS spectra. Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6 Exploring Data Keck LRIS spectra Handbook of CCD Astronomy by Steve Howell Chap. 4, parts of 6 FITS: Flexible Image Transport System Digital file format used to store astronomical images, data, and catalogs.

More information

ASTRO 310: Galac/c & Extragalac/c Astronomy Prof. Jeff Kenney. Class 17 Mar 30, 2016 Starlight Distribu/ons in Disk Galaxies

ASTRO 310: Galac/c & Extragalac/c Astronomy Prof. Jeff Kenney. Class 17 Mar 30, 2016 Starlight Distribu/ons in Disk Galaxies ASTRO 310: Galac/c & Extragalac/c Astronomy Prof. Jeff Kenney Class 17 Mar 30, 2016 Starlight Distribu/ons in Disk Galaxies reminder no class next Monday, April 3!! 3 Color op/cal image of spiral galaxy

More information

Point Spread Functions. Aperture Photometry. Obs Tech Obs Tech 26 Sep 2017

Point Spread Functions. Aperture Photometry. Obs Tech Obs Tech 26 Sep 2017 Point Spread Functions & Aperture Photometry Obs Tech Obs Tech 26 Sep 2017 Point Spread Functions (PSFs) Stars are far away (typically d >> 3x10 15 km) Stars are relatively small (D ~ 10 6 km) Angular

More information

ASTRONOMY II Spring 1995 FINAL EXAM. Monday May 8th 2:00pm

ASTRONOMY II Spring 1995 FINAL EXAM. Monday May 8th 2:00pm ASTRONOMY II - 79202 Spring 1995 FINAL EXAM Monday May 8th 2:00pm Name: You have three hours to complete this exam. I suggest you read through the entire exam before you spend too much time on any one

More information

Active Nuclei and their Host Galaxies: Observations of Seyfert Galaxies

Active Nuclei and their Host Galaxies: Observations of Seyfert Galaxies Active Nuclei and their Host Galaxies: Observations of Seyfert Galaxies Samuel Harrold 1 and Joel Kajubi 1 1 Department of Physics and Astronomy, University of Rochester, Rochester, NY 14627 Abstract We

More information

Basics of Photometry

Basics of Photometry Basics of Photometry Photometry: Basic Questions How do you identify objects in your image? How do you measure the flux from an object? What are the potential challenges? Does it matter what type of object

More information

Astronomy 114. Lecture 27: The Galaxy. Martin D. Weinberg. UMass/Astronomy Department

Astronomy 114. Lecture 27: The Galaxy. Martin D. Weinberg. UMass/Astronomy Department Astronomy 114 Lecture 27: The Galaxy Martin D. Weinberg weinberg@astro.umass.edu UMass/Astronomy Department A114: Lecture 27 18 Apr 2007 Read: Ch. 25,26 Astronomy 114 1/23 Announcements Quiz #2: we re

More information

Millimagnitude Accuracy Photometry of Extra solar Planets Transits using Small Telescopes

Millimagnitude Accuracy Photometry of Extra solar Planets Transits using Small Telescopes Millimagnitude Accuracy Photometry of Extra solar Planets Transits using Small Telescopes S. Kozłowski 1, 2, A. Szary 1, M. Zub 1, G. Melikidze 1, K. Maciesiak 1, J. A. Gil 1 1 Institute of Astronomy University

More information

Comparing Ultraviolet and Infrared Star Formation Tracers

Comparing Ultraviolet and Infrared Star Formation Tracers Comparing Ultraviolet and Infrared Star Formation Tracers George J. Bendo and Rebecca Freestone Jodrell Bank Centre for Astrophysics, The University of Manchester 15 February 2018 Overview The DS9 image

More information

Astronomical "color"

Astronomical color Astronomical "color" What color is the star Betelgeuse? It's the bright star at upper left in this picture of Orion taken by a student at the RIT Observatory. Orange? Red? Yellow? These are all reasonable

More information

AUTOMATIC MORPHOLOGICAL CLASSIFICATION OF GALAXIES. 1. Introduction

AUTOMATIC MORPHOLOGICAL CLASSIFICATION OF GALAXIES. 1. Introduction AUTOMATIC MORPHOLOGICAL CLASSIFICATION OF GALAXIES ZSOLT FREI Institute of Physics, Eötvös University, Budapest, Pázmány P. s. 1/A, H-1117, Hungary; E-mail: frei@alcyone.elte.hu Abstract. Sky-survey projects

More information

GALAXIES. Hello Mission Team members. Today our mission is to learn about galaxies.

GALAXIES. Hello Mission Team members. Today our mission is to learn about galaxies. GALAXIES Discussion Hello Mission Team members. Today our mission is to learn about galaxies. (Intro slide- 1) Galaxies span a vast range of properties, from dwarf galaxies with a few million stars barely

More information

A Cluster of Galaxies, Abell 496

A Cluster of Galaxies, Abell 496 A Cluster of Galaxies, Abell 496 F. Nobels and W. Mulder MSc Astronomy & Kapteyn Astronomical Institute, University of Groningen (Dated: November 11, 2015) As part of the course High-Energy Astrophysics,

More information

The Extragalactic Distance Database: Hawaii Photometry Catalog

The Extragalactic Distance Database: Hawaii Photometry Catalog The Extragalactic Distance Database: Hawaii Photometry Catalog Hélène M. Courtois Université Lyon, CNRS/IN2P3/INSU, Institut de Physique Nucléaire, Lyon, France and Institute for Astronomy, University

More information

Open Cluster Photometry: Part II

Open Cluster Photometry: Part II Project 4 Open Cluster Photometry: Part II Observational Astronomy ASTR 310 Fall 2005 1 Introduction The objective of this and the previous project is to learn how to produce color-magnitude diagrams of

More information

Performance of the NICMOS ETC Against Archived Data

Performance of the NICMOS ETC Against Archived Data Performance of the NICMOS ETC Against Archived Data M. Sosey June 19, 2001 ABSTRACT A robust test of the newest version of the NICMOS Exposure Time Calculator (ETC) was conducted in order to assess its

More information

Surface Photometry Quantitative description of galaxy morphology. Hubble Sequence Qualitative description of galaxy morphology

Surface Photometry Quantitative description of galaxy morphology. Hubble Sequence Qualitative description of galaxy morphology Hubble Sequence Qualitative description of galaxy morphology Surface Photometry Quantitative description of galaxy morphology Galaxy structure contains clues about galaxy formation and evolution Point

More information

SKINAKAS OBSERVATORY Astronomy Projects for University Students COLOUR IN ASTRONOMY

SKINAKAS OBSERVATORY Astronomy Projects for University Students COLOUR IN ASTRONOMY P R O J E C T 3 COLOUR IN ASTRONOMY Objective: Explain what colour means in an astronomical context and its relationship with the temperature of a star. Learn how to create colour-colour diagrams and how

More information

Inferring Galaxy Morphology Through Texture Analysis

Inferring Galaxy Morphology Through Texture Analysis Inferring Galaxy Morphology Through Texture Analysis 1 Galaxy Morphology Kinman Au, Christopher Genovese, Andrew Connolly Galaxies are not static objects; they evolve by interacting with the gas, dust

More information

A Tour of the Messier Catalog. ~~ in ~~ Eight Spellbinding and Enlightening Episodes. ~~ This Being Episode Three ~~

A Tour of the Messier Catalog. ~~ in ~~ Eight Spellbinding and Enlightening Episodes. ~~ This Being Episode Three ~~ A Tour of the Messier Catalog ~~ in ~~ Eight Spellbinding and Enlightening Episodes ~~ This Being Episode Three ~~ Globulars and Galaxies Warm-up for The Realm M83 Spiral Galaxy Constellation Hydra

More information

Energy Sources of the Far IR Emission of M33

Energy Sources of the Far IR Emission of M33 Energy Sources of the Far IR Emission of M33 Hinz, Reike et al., ApJ 154: S259 265 (2004). Presented by James Ledoux 24 µm 70 µm 160 µm Slide 1 M33 Properties Distance 840kpc = 2.7 Mlyr (1'' ~ 4 pc) Also

More information

Gemini Integration Time Calculators

Gemini Integration Time Calculators Gemini Integration Time Calculators Phil Puxley SPE-C-G0076 Version 1.1; June 1998 Version History: 1.0 June 1998; first draft. 1.1 June 1998; following comments from Ted von Hippel and Joe Jensen. 1.

More information

The Galaxy. (The Milky Way Galaxy)

The Galaxy. (The Milky Way Galaxy) The Galaxy (The Milky Way Galaxy) Which is a picture of the Milky Way? A A is what we see from Earth inside the Milky Way while B is what the Milky Way might look like if we were far away looking back

More information

Cross-Talk in the ACS WFC Detectors. I: Description of the Effect

Cross-Talk in the ACS WFC Detectors. I: Description of the Effect Cross-Talk in the ACS WFC Detectors. I: Description of the Effect Mauro Giavalisco August 10, 2004 ABSTRACT Images acquired with the Wide Field Channel (WFC) of the Advanced Camera for Surveys (ACS) are

More information

AS750 Observational Astronomy

AS750 Observational Astronomy Lecture 9 0) Poisson! (quantum limitation) 1) Diffraction limit 2) Detection (aperture) limit a)simple case b)more realistic case 3) Atmosphere 2) Aperture limit (More realistic case) Aperture has m pixels

More information

Deep fields around bright stars ( Galaxies around Stars )

Deep fields around bright stars ( Galaxies around Stars ) Deep fields around bright stars ( Galaxies around Stars ) Scientific context: the morphological evolution of faint field galaxies Near-IR observations ground-based observations with AO: PUEO/CFHT deep

More information

Search for Extra-Solar Planets using the Transit Method. Kyle Bernier. Advisor Dr. Yelena Prok. PCSE Cap Stone Project

Search for Extra-Solar Planets using the Transit Method. Kyle Bernier. Advisor Dr. Yelena Prok. PCSE Cap Stone Project Search for Extra-Solar Planets using the Transit Method by Kyle Bernier Advisor Dr. Yelena Prok PCSE Cap Stone Project Christopher Newport University 2012 Abstract Search for Extra-Solar Planets using

More information

Corotation Resonance of Nonbarred Spiral Galaxies. A Research work By Arjun Karki with Prof. Marc Seigar (Research advisor)

Corotation Resonance of Nonbarred Spiral Galaxies. A Research work By Arjun Karki with Prof. Marc Seigar (Research advisor) Corotation Resonance of Nonbarred Spiral Galaxies A Research work By Arjun Karki with Prof. Marc Seigar (Research advisor) Outline Motivation / Objective Introduction - Density Wave Theory - Corotation

More information

New Observation Results from A Rotating-drift-scan CCD System

New Observation Results from A Rotating-drift-scan CCD System New Observation Results from A Rotating-drift-scan CCD System TANG Zheng-Hong, MAO Yin-Dun, LI Yan, YU Yong Shanghai Astronomical Observatory, Chinese Academy of Sciences Abstract: A Rotating-drift-scan

More information

APPLICATIONS OF KEPLER'S LAWS

APPLICATIONS OF KEPLER'S LAWS APPLICATIONS OF KEPLER'S LAWS Revealing the existence of a Black Hole (Sagittarius A*) in the center of our Galaxy - the Milky Way - and determining its mass 1. Introduction - A little bit of History The

More information

1.4 Galaxy Light Distributions

1.4 Galaxy Light Distributions 26 1.4 Galaxy Light Distributions List of topics Hubble classification scheme see Binney & Merrifield text Galaxy surface brightness profiles (JL 2.3.1, plus additional material) Galaxy luminosity function

More information

Reduction procedure of long-slit optical spectra. Astrophysical observatory of Asiago

Reduction procedure of long-slit optical spectra. Astrophysical observatory of Asiago Reduction procedure of long-slit optical spectra Astrophysical observatory of Asiago Spectrograph: slit + dispersion grating + detector (CCD) It produces two-dimension data: Spatial direction (x) along

More information

Low Surface Brightness Observations of Galaxy Disk Truncation with Different Obliquities

Low Surface Brightness Observations of Galaxy Disk Truncation with Different Obliquities Yale Observing Proposal Standard proposal Semester: 2014B Date: April 9, 2018 Low Surface Brightness Observations of Galaxy Disk Truncation with Different Obliquities PI: Professor Pieter Van DokkumStatus:

More information

The TV3 ground calibrations of the WFC3 NIR grisms

The TV3 ground calibrations of the WFC3 NIR grisms The TV3 ground calibrations of the WFC3 NIR grisms H. Kuntschner, H. Bushouse, J. R. Walsh, M. Kümmel July 10, 2008 ABSTRACT Based on thermal vacuum tests (TV3; March/April 2008), the performance of the

More information

Corotation Resonance of Non-barred Spiral Galaxies

Corotation Resonance of Non-barred Spiral Galaxies Corotation Resonance of Non-barred Spiral Galaxies A Research work By Arjun Karki Kark with Prof. Marc Seigar (Research advisor) Outline Motivation / Objective Introduction - Density wave theory - Corotation

More information

UNIVERSITY OF SOUTHAMPTON

UNIVERSITY OF SOUTHAMPTON UNIVERSITY OF SOUTHAMPTON PHYS2013W1 SEMESTER 1 EXAMINATION 2012/13 GALAXIES Duration: 120 MINS Answer all questions in Section A and two and only two questions in Section B. Section A carries 1/3 of the

More information

Globular Clusters in M87

Globular Clusters in M87 Globular Clusters in M87 Tutor: Søren S. Larsen First NEON Archive Observing School 2004 Avet Harutyunyan Saskia Hekker Anatoliy Ivantsov Loredana Vetere Contents Globular Clusters Introduction Data Retrieving

More information

INT Proposal. Santos; Loukotová. Measurement of the Hα flux in the nearby early-type galaxy NGC Abstract

INT Proposal. Santos; Loukotová. Measurement of the Hα flux in the nearby early-type galaxy NGC Abstract Santos; Loukotová INT Proposal Measurement of the Hα flux in the nearby early-type galaxy NGC 4203 Abstract The evolution of galaxies is one of the most rich fields of research on current Astronomy, and

More information

Determining the Orbital Period of the Cataclysmic Variable CSS1204 Using Data from the Vatican Advanced Technology Telescope

Determining the Orbital Period of the Cataclysmic Variable CSS1204 Using Data from the Vatican Advanced Technology Telescope Determining the Orbital Period of the Cataclysmic Variable CSS1204 Using Data from the Vatican Advanced Technology Telescope Amy Applegate 2012 NSF/REU Program Physics Department, University of Notre Dame

More information

Particle Physics and Telescopes

Particle Physics and Telescopes Particle Physics and Telescopes November 18, 2002 1) Dark Matter 2) Particle Physics 3) Telescopes Announcements Final Exam will be held in Ruby Diamond Auditorium NOTE THIS!!! not UPL Dec. 11, 2002 10am-noon

More information

WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD

WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD WHAT PHOTOMETRIC PRECISION CAN I ACHIEVE? DAVID BOYD If you start using a CCD camera to carry out photometry on variable stars, this is a question that sooner or later you will ask yourself. Prompted by

More information

Astronomy: Division C Science Olympiad, Round 1 Tryout Test

Astronomy: Division C Science Olympiad, Round 1 Tryout Test Astronomy: Division C Science Olympiad, Round 1 Tryout Test Student Name : Student Number : DIRECTIONS 1. Write the answers that you want graded legibly on the answer sheet, along with your name and student

More information

Galaxy Classification and the Hubble Deep Field

Galaxy Classification and the Hubble Deep Field Galaxy Classification and the Hubble Deep Field A. The Hubble Galaxy Classification Scheme Adapted from the UW Astronomy Dept., 1999 Introduction A galaxy is an assembly of between a billion (10 9 ) and

More information

BHS Astronomy: Galaxy Classification and Evolution

BHS Astronomy: Galaxy Classification and Evolution Name Pd Date BHS Astronomy: Galaxy Classification and Evolution This lab comes from http://cosmos.phy.tufts.edu/~zirbel/ast21/homework/hw-8.pdf (Tufts University) The word galaxy, having been used in English

More information

Galaxies. Hubble's measurement of distance to M31 Normal versus other galaxies Classification of galaxies Ellipticals Spirals Scaling relations

Galaxies. Hubble's measurement of distance to M31 Normal versus other galaxies Classification of galaxies Ellipticals Spirals Scaling relations Galaxies Hubble's measurement of distance to M31 Normal versus other galaxies Classification of galaxies Ellipticals Spirals Scaling relations Cepheids in M31 Up to 1920s, the Milky Way was thought by

More information

Observational Cosmology

Observational Cosmology Astr 102: Introduction to Astronomy Fall Quarter 2009, University of Washington, Željko Ivezić Lecture 15: Observational Cosmology 1 Outline Observational Cosmology: observations that allow us to test

More information

GALAXIES. I. Morphologies and classification 2. Successes of Hubble scheme 3. Problems with Hubble scheme 4. Galaxies in other wavelengths

GALAXIES. I. Morphologies and classification 2. Successes of Hubble scheme 3. Problems with Hubble scheme 4. Galaxies in other wavelengths GALAXIES I. Morphologies and classification 2. Successes of Hubble scheme 3. Problems with Hubble scheme 4. Galaxies in other wavelengths 5. Properties of spirals and Irregulars. Hubble tuning-fork diagram.

More information

IN REPORT: Plate Scale and FOV of CCD for Each Telescope using Albireo Stars

IN REPORT: Plate Scale and FOV of CCD for Each Telescope using Albireo Stars USE ASTROIMAGEJ NOT AIP4WIN To download ALL the public data from Canvas, go to Files, then click the 3 dots next to the Public Data Folder and click Download. It will download all the files at once. 6.1

More information

This week at Astro Lecture 06, Sep 13, Pick up PE#6. Please turn in HW#2. HW#3 is posted

This week at Astro Lecture 06, Sep 13, Pick up PE#6. Please turn in HW#2. HW#3 is posted This week at Astro 3303 Lecture 06, Sep 13, 2017 Pick up PE#6 Please turn in HW#2 HW#3 is posted Today: Introduction to galaxy photometry Quantitative morphology Elliptical galaxies Reading: Continue reading

More information

Centers of Galaxies. = Black Holes and Quasars

Centers of Galaxies. = Black Holes and Quasars Centers of Galaxies = Black Holes and Quasars Models of Nature: Kepler Newton Einstein (Special Relativity) Einstein (General Relativity) Motions under influence of gravity [23] Kepler The planets move

More information

Modern Image Processing Techniques in Astronomical Sky Surveys

Modern Image Processing Techniques in Astronomical Sky Surveys Modern Image Processing Techniques in Astronomical Sky Surveys Items of the PhD thesis József Varga Astronomy MSc Eötvös Loránd University, Faculty of Science PhD School of Physics, Programme of Particle

More information

STRUCTURE OF GALAXIES

STRUCTURE OF GALAXIES STRUCTURE OF GALAXIES 2., classification, surface photometry Piet van der Kruit Kapteyn Astronomical Institute University of Groningen the Netherlands February 2010, classification, surface photometry

More information

Sag A Mass.notebook. September 26, ' x 8' visual image of the exact center of the Milky Way

Sag A Mass.notebook. September 26, ' x 8' visual image of the exact center of the Milky Way 8' x 8' visual image of the exact center of the Milky Way The actual center is blocked by dust and is not visible. At the distance to the center (26,000 ly), this image would span 60 ly. This is the FOV

More information

Upgraded Photometric System of The 85-cm Telescope at Xinglong Station

Upgraded Photometric System of The 85-cm Telescope at Xinglong Station Research in Astron. Astrophys. 217 Vol. X No. XX, http://www.raa-journal.org http://www.iop.org/journals/raa Research in Astronomy and Astrophysics Upgraded Photometric System of The 85-cm Telescope at

More information

Measuring Radial Velocities of Low Mass Eclipsing Binaries

Measuring Radial Velocities of Low Mass Eclipsing Binaries Measuring Radial Velocities of Low Mass Eclipsing Binaries Rebecca Rattray, Leslie Hebb, Keivan G. Stassun College of Arts and Science, Vanderbilt University Due to the complex nature of the spectra of

More information

Star Formation in the NGC 5846 Group of Galaxies

Star Formation in the NGC 5846 Group of Galaxies Union College Union Digital Works Honors Theses Student Work 6-2014 Star Formation in the NGC 5846 Group of Galaxies Lucas Viani Union College - Schenectady, NY Follow this and additional works at: https://digitalworks.union.edu/theses

More information

Small-Scale Physical Properties of Nebulae in Nearby Disk Galaxies

Small-Scale Physical Properties of Nebulae in Nearby Disk Galaxies Abstract Small-Scale Physical Properties of Nebulae in Nearby Disk Galaxies My research project consists of analyzing small-scale physical properties of star-forming regions (HII regions) in several nearby

More information

Tour of the Universe!

Tour of the Universe! Tour of the Universe! Andromeda: M31 (NGC 224, the famous Andromeda Galaxy) is the nearest large galaxy to our own Milky Way galaxy. It is so bright that it is easily seen by naked eye as a faint fuzzy

More information

Project: Hubble Diagrams

Project: Hubble Diagrams Project: Hubble Diagrams Distances Exercise 1 In this exercise, you will find the magnitudes of six galaxies in the SDSS database. The table below shows the object IDs and positions (right ascension and

More information

Extra Gal 9: Photometry & Dynamics

Extra Gal 9: Photometry & Dynamics Extra Gal 9: Photometry & Dynamics Two books, among many others, that can be used by the studenys for extensive references and details are: Binney and Merrifield: Galactic Astronomy Binney and Tremaine

More information

Tuesday, Thursday 2:30-3:45 pm. Astronomy 100. Tom Burbine

Tuesday, Thursday 2:30-3:45 pm.   Astronomy 100. Tom Burbine Astronomy 100 Tuesday, Thursday 2:30-3:45 pm Tom Burbine tburbine@mtholyoke.edu www.xanga.com/astronomy100 OWL assignment (Due Today) There is be an OWL assignment due on Thursday April 14 at 11:59 pm.

More information

Quasars: Imaging the Visible Edge of the Universe. David Haworth Copyright 2010

Quasars: Imaging the Visible Edge of the Universe. David Haworth   Copyright 2010 Quasars: Imaging the Visible Edge of the Universe David Haworth www.stargazing.net/david Copyright 2010 Imaging Equipment OSP 2008 QSI 532ws-M1 camera 9.7mm x 14.9mm Tele Vue NP-101is APO refractor 4 inch

More information

Introduction to SDSS -instruments, survey strategy, etc

Introduction to SDSS -instruments, survey strategy, etc Introduction to SDSS -instruments, survey strategy, etc (materials from http://www.sdss.org/) Shan Huang 17 February 2010 Survey type Status Imaging and Spectroscopy Basic Facts SDSS-II completed, SDSS-III

More information

Galaxies Astro 430/530 Prof. Jeff Kenney. CLASS 2 Jan 19, 2018 QuanDtaDve Morphology, Surface Brightness Profiles & Disks

Galaxies Astro 430/530 Prof. Jeff Kenney. CLASS 2 Jan 19, 2018 QuanDtaDve Morphology, Surface Brightness Profiles & Disks Galaxies Astro 430/530 Prof. Jeff Kenney CLASS 2 Jan 19, 2018 QuanDtaDve Morphology, Surface Brightness Profiles & Disks 1 2 Color opdcal image of spiral galaxy Isophotes contours of equal surface brightness

More information

Galaxy Morphology. - a description of the structure of galaxies

Galaxy Morphology. - a description of the structure of galaxies Galaxy Morphology - a description of the structure of galaxies Galaxy Morphology - a description of the structure of galaxies Galaxy Morphology - a description of the structure of galaxies Clearly astronomical

More information

Telescopes. Lecture 7 2/7/2018

Telescopes. Lecture 7 2/7/2018 Telescopes Lecture 7 2/7/2018 Tools to measure electromagnetic radiation Three essentials for making a measurement: A device to collect the radiation A method of sorting the radiation A device to detect

More information

Lecture 8. October 25, 2017 Lab 5

Lecture 8. October 25, 2017 Lab 5 Lecture 8 October 25, 2017 Lab 5 News Lab 2 & 3 Handed back next week (I hope). Lab 4 Due today Lab 5 (Transiting Exoplanets) Handed out and observing will start Friday. Due November 8 (or later) Stellar

More information

Name Final Exam December 7, 2015

Name Final Exam December 7, 2015 Name Final Exam December 7, 015 This test consists of five parts. Please note that in parts II through V, you can skip one question of those offered. Part I: Multiple Choice (mixed new and review questions)

More information

1 Lecture, 2 September 1999

1 Lecture, 2 September 1999 1 Lecture, 2 September 1999 1.1 Observational astronomy Virtually all of our knowledge of astronomical objects was gained by observation of their light. We know how to make many kinds of detailed measurements

More information

The SDSS Data. Processing the Data

The SDSS Data. Processing the Data The SDSS Data Processing the Data On a clear, dark night, light that has traveled through space for a billion years touches a mountaintop in southern New Mexico and enters the sophisticated instrumentation

More information

National Aeronautics and Space Administration. Glos. Glossary. of Astronomy. Terms. Related to Galaxies

National Aeronautics and Space Administration. Glos. Glossary. of Astronomy. Terms. Related to Galaxies National Aeronautics and Space Administration Glos of Astronomy Glossary Terms Related to Galaxies Asterism: A pattern formed by stars not recognized as one of the official 88 constellations. Examples

More information

WFC3/IR Persistence as Measured in Cycle 17 using Tungsten Lamp Exposures

WFC3/IR Persistence as Measured in Cycle 17 using Tungsten Lamp Exposures WFC3/IR Persistence as Measured in Cycle 17 using Tungsten Lamp Exposures Knox S. Long, Sylvia Baggett, Susana Deustua & Adam Riess November 17, 2010 ABSTRACT Like most IR arrays, the IR detector incorporated

More information

The in-orbit wavelength calibration of the WFC G800L grism

The in-orbit wavelength calibration of the WFC G800L grism The in-orbit wavelength calibration of the WFC G800L grism A. Pasquali, N. Pirzkal, J.R. Walsh March 5, 2003 ABSTRACT We present the G800L grism spectra of the Wolf-Rayet stars WR45 and WR96 acquired with

More information

Observing Night 1 DON T FORGET TO KEEP NOTES ON YOUR PROCEDURE AND KEEP AN OBSERVING LOG FOR THE NIGHT!!!!!

Observing Night 1 DON T FORGET TO KEEP NOTES ON YOUR PROCEDURE AND KEEP AN OBSERVING LOG FOR THE NIGHT!!!!! Observing Night 1 Objects : Name RA (2000) Dec V B-V V-R R-I MK source HD 5015 00 53 04 +61 07 26 5.34 0.54 0.48 0.30 F9V Ducati 2002 HD 30197 4 46 17 +18 44.1 6.01 1.21 0.620 0.533 K4III J66/T86 HD 7615

More information

The Hubble Law & The Structure of the Universe

The Hubble Law & The Structure of the Universe Name: Lab Meeting Date/Time: The Hubble Law & The Structure of the Universe The Hubble Law is a relationship between two quantities the speed of and distance to a galaxy. In order to determine the Hubble

More information

PHYS133 Lab 6 Sunspots and Solar Rotation

PHYS133 Lab 6 Sunspots and Solar Rotation PHYS133 Lab 6 Sunspots and Solar Rotation Goals: Select a series of images with sunspots suitable for measurement. View an animation of the images showing the motion of the spots as the Sun rotates. Devise

More information