-
Notifications
You must be signed in to change notification settings - Fork 0
/
course_content.txt
5035 lines (3547 loc) · 329 KB
/
course_content.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Unit1_README.md
---
layout: embed_default
---
## Unit 1: Introduction to Astronomy
This unit sets the stage for understanding the vastness and complexity of the cosmos by introducing students to the historical development of astronomy, the immense scale of the universe, the night sky, and the effects of light travel time.
![Banner Image](../Unit1/figures/unit1_banner.png)
### Teacher Assessment
- Summary Notes
- Assignment/Project
### Self-Assessment
- Each section of this unit includes a set of "Check Your Understanding" questions that are designed to prepare you for the midterm exam.
### [Summary Notes](https://teaghan.github.io/astronomy-12/Unit1/Unit1_Summary_Notes.pdf)
- While going through the lessons, working on the Check Your Understanding problems, and completing any assignment/project, you are expected to take meaningful notes for your future self. These notes can include concepts, diagrams, examples, etc.
- **You will be allowed to access to these notes during the test!**
- Print out the summary notes file and fill it with useful, hand-written notes while working through this unit and submit your notes at the end of the unit to be assessed for completion.
- There is a suggested set of topics as well as empty boxes to give you the opportunity to summarize additional topics.
### [1.1 A Brief History of Astronomy](../md_files/1_1_history.html)
- Explore the evolution of astronomical understanding from ancient civilizations to modern times.
- Significant contributions from astronomers such as Ptolemy, Copernicus, Galileo, and Newton.
### [1.2 The Scale of the Universe](../md_files/1_2_scale.html)
- Understand the vast distances in space using scientific notation.
- Learn about the structure and size of the solar system, the Milky Way, and the observable universe.
### [1.3 The Celestial Sphere](../md_files/1_3_the_sky.html)
- Concept of the celestial sphere and its components: celestial poles, celestial equator, and ecliptic.
- Understand the apparent motion of stars and constellations.
### [1.4 The Brightness of Stars](../md_files/1_4_brightness.html)
- Differentiate between luminosity, flux, and apparent brightness.
- Understand the inverse square law of light.
- Explore the magnitude scale and the distance modulus.
### [1.5 Consequences of Light Travel Time](../md_files/1_5_light_travel.html)
- Effect of the finite speed of light on observations.
- Concept of looking back in time.
### [Assignment: Night Sky Observations](https://teaghan.github.io/astronomy-12/Unit1/Unit1_Assignment.pdf)
- Print off the attached assignment.
- Follow the steps and complete the questions.
- Submit your document with the questions answered.
### Course Resources
- **Free Textbook**: [**Astronomy**](https://openstax.org/books/astronomy/pages/1-introduction) by OpenStax.
- **AI Tutor**: [**Astronomy Tutor**](https://chatgpt.com/g/g-10CjMHMvk-astronomy-tutor) to support you with this class.
### Science Curricular Connections
- **Earth Science 11:** The nebular hypothesis, Stars as the center of a solar system
### Learning Standards
- I can use scientific notation to express large astronomical distances.
- I can describe the scale of the universe and its components.
- I can explain the concept of a light-year and its importance in measuring cosmic distances.
- I can describe how parallax is used to measure the distance to nearby stars.
- I can explain the concept of the celestial sphere and its components.
- I can explain the apparent daily and annual motion of the Sun, Moon, and stars.
- I can define flux and luminosity and explain their relationship.
- I can apply the inverse square law to calculate the apparent brightness of stars.
- I can distinguish between apparent magnitude and absolute magnitude.
- I can use the distance modulus formula to determine the distance to stars.
- I can explain how observing distant objects allows us to look back in time.
- I can describe the methods used to measure cosmic distances, including parallax and standard candles.
# Unit2_README.md
---
layout: embed_default
---
## Unit 2: Gravity and Our Solar System
This unit delves into the laws governing the motion of celestial bodies, including planets, moons, and satellites. It covers gravitational forces and orbital mechanics, providing a comprehensive understanding of the principles that dictate the movement and interaction of objects in space.
![Banner Image](../Unit2/figures/unit2_banner.png)
### Teacher Assessment
- Summary Notes
- Assignment/Project
### Self-Assessment
- Each section of this unit includes a set of "Check Your Understanding" questions that are designed to prepare you for the midterm exam.
### [Summary Notes](https://teaghan.github.io/astronomy-12/Unit2/Unit2_Summary_Notes.pdf)
- While going through the lessons, working on the Check Your Understanding problems, and completing any assignment/project, you are expected to take meaningful notes for your future self. These notes can include concepts, diagrams, examples, etc.
- **You will be allowed to access to these notes during the test!**
- Print out the summary notes file and fill it with useful, hand-written notes while working through this unit and submit your notes at the end of the unit to be assessed for completion.
- There is a suggested set of topics as well as empty boxes to give you the opportunity to summarize additional topics.
### [2.1 Kepler’s Laws of Planetary Motion](../md_files/2_1_keplers_laws.html)
- Law of Orbits: All planets move in elliptical orbits, with the Sun at one focus.
- Law of Areas: A line that connects a planet to the Sun sweeps out equal areas during equal intervals of time.
- Law of Periods: The square of the period of any planet is proportional to the cube of the semi-major axis of its orbit.
### [2.2 Newton's Law of Universal Gravitation](../md_files/2_2_gravity.html)
- Definition and formula
- Gravitational constant
- Inverse square law
- Applications of gravitational theory
### [2.3 Circular Motion](../md_files/2_3_circular_motion.html)
- Definition and formula for centripetal force
- Examples of centripetal forces in daily life and astronomy
- Orbital speed and its derivation
### [2.4 The Structure and Components of Our Solar System I](../md_files/2_4_solar_system_1.html)
- Formation of the Solar System
- The Sun: structure and composition
- Terrestrial planets: characteristics and notable features
- Jovian planets: characteristics and notable features
### [2.5 The Structure and Components of Our Solar System II](../md_files/2_5_solar_system_2.html)
- Dwarf planets: Pluto, Eris, Ceres, Haumea, Makemake
- Asteroids and the asteroid belt: origin and significant examples
- Comets and the Kuiper Belt: structure and notable comets
- Meteoroids, meteors, and meteorites: definitions and historical impacts
- Moons of the Solar System: notable examples and formation theories
- The Oort Cloud: hypothetical cloud of icy bodies and its role in the solar system
### [Assignment: Investigating Galaxy Data](https://teaghan.github.io/astronomy-12/Unit2/Unit2_Assignment.pdf)
- Print off the attached assignment.
- Follow the steps and complete the questions.
- Submit your document with the questions answered.
### Course Resources
- **Free Textbook**: [**Astronomy**](https://openstax.org/books/astronomy/pages/1-introduction) by OpenStax.
- **AI Tutor**: [**Astronomy Tutor**](https://chatgpt.com/g/g-10CjMHMvk-astronomy-tutor) to support you with this class.
### Science Curricular Connections
- **Physics 12:** uniform circular motion, centripetal force and acceleration, changes to apparent weight, gravitational field and Newton’s law of universal gravitation, gravitational dynamics
- **Physics 11:** mass, force of gravity, apparent weight, Newton’s laws of motion, horizontal uniform and accelerated motion
- **Earth Sciences 11:** astronomy seeks to explain the origin and interactions of Earth and its solar system, impacts of the Earth-moon-sun system
### Learning Standards
- I can state Kepler's First Law and explain the concept of elliptical orbits with the Sun at one focus.
- I can describe the characteristics of an ellipse and its relevance to planetary orbits.
- I can explain Kepler's Second Law and the concept of equal areas in equal time periods.
- I can describe the relationship between a planet's distance from the Sun and its orbital speed according to Kepler's Second Law.
- I can use Kepler's Third Law to calculate the orbital period of a planet given its semi-major axis.
- I can verify the consistency of Kepler's Third Law for different planets.
- I can use Newton's Second Law to calculate the force acting on an object given its mass and acceleration.
- I can explain the relationship between mass, force, and acceleration according to Newton's Second Law.
- I can calculate the gravitational force between two masses using Newton's Law of Universal Gravitation.
- I can explain the concept of the inverse square law in the context of gravitational force.
- I can describe the importance of the gravitational constant G in Newton's law.
- I can explain the concept of weight as the gravitational force acting on an object.
- I can describe the role of gravity in maintaining the orbits of planets and satellites.
- I can describe the formation of the solar system from the solar nebula.
- I can explain the role of gravity and circular motion in the formation of the Sun and planets.
- I can calculate the centripetal force acting on an object moving in a circular path.
- I can describe the relationship between gravitational force and centripetal force in orbital motion.
- I can calculate the centripetal acceleration of an object moving in a circular orbit.
- I can derive the formula for orbital speed and explain its significance in astronomy.
- I can calculate the orbital speed of moons and satellites using the given distance and mass of the central body.
- I can calculate the orbital period of a moon or satellite using Kepler's Third Law.
- I can calculate the surface gravity on a moon or planet given its mass and radius.
# Unit3_README.md
---
layout: embed_default
---
## Unit 3: Stars
This unit explores the fascinating life cycles of stars, from their formation in molecular clouds to their ultimate demise as white dwarfs, neutron stars, or black holes. It covers the processes that power stars, their chemical compositions, and the physical principles that govern their radiation.
![Banner Image](../Unit3/figures/unit3_banner.png)
### Teacher Assessment
- Summary Notes
- Assignment/Project
### Self-Assessment
- Each section of this unit includes a set of "Check Your Understanding" questions that are designed to prepare you for the midterm exam.
### [Summary Notes](https://teaghan.github.io/astronomy-12/Unit3/Unit3_Summary_Notes.pdf)
- While going through the lessons, working on the Check Your Understanding problems, and completing any assignment/project, you are expected to take meaningful notes for your future self. These notes can include concepts, diagrams, examples, etc.
- **You will be allowed to access these notes during the test!**
- Print out the summary notes file and fill it with useful, hand-written notes while working through this unit and submit your notes at the end of the unit to be assessed for completion.
- There is a suggested set of topics as well as empty boxes to give you the opportunity to summarize additional topics.
### [3.1 Star Formation](../md_files/3_1_star_formation.html)
- Molecular Clouds and Protostars: The initial stages of star formation from molecular clouds to protostars.
- Angular momentum
- Observational Evidence: Infrared images and other observational data supporting star formation.
### [3.2 Atoms and Elements](../md_files/3_2_atoms_particles.html)
- Basic atomic structure
- Protons, neutrons, electrons
- Neutrinos, photons
- Isotopes
- Chemical Reactions
### [3.3 Nuclear Fusion](../md_files/3_3_nuclear_fusion.html)
- Fusion Processes: The proton-proton chain and the CNO cycle.
- Energy Generation: How nuclear fusion powers stars, focusing on temperature and pressure conditions in the stellar core.
- Creating Heavier Elements
### [3.4 Chemical Composition of Stars](../md_files/3_4_chemical_composition.html)
- Stellar Spectroscopy: Techniques to determine the chemical composition of stars.
- Abundance of Elements: How the relative abundance of elements provides clues about star formation and evolution.
- Nucleosynthesis: The process of nucleosynthesis in stars, creating elements during different fusion stages and supernovae.
### [3.5 Life Cycle of Stars](../md_files/3_5_life_cycle.html)
- Main Sequence Evolution: The life of a star on the main sequence and the changes as it exhausts its hydrogen fuel.
- Post-Main Sequence Evolution: Evolutionary paths after the main sequence, including red giants, supernovae, white dwarfs, neutron stars, and black holes.
- Stellar Remnants: Types and observational properties of stellar remnants.
- The Hertzsprung-Russell (H-R) Diagram: Understanding the H-R diagram and its significance in studying stellar evolution.
### [Assignment: Stellar Evolution](https://teaghan.github.io/astronomy-12/Unit3/Unit3_Assignment.pdf)
- Print off the attached assignment.
- Follow the steps and complete the questions.
- Submit your document with the questions answered.
### Course Resources
- **Free Textbook**: [**Astronomy**](https://openstax.org/books/astronomy/pages/1-introduction) by OpenStax.
- **AI Tutor**: [**Astronomy Tutor**](https://chatgpt.com/g/g-10CjMHMvk-astronomy-tutor) to support you with this class.
### Science Curricular Connections
**Physics 11:**
- mass, force of gravity
- balanced and unbalanced forces in systems
- conservation of energy; principle of work and energy
- generation and propagation of waves
- properties and behaviors of waves
**Physics 12:**
- gravitational field and Newton’s law of universal gravitation
- gravitational dynamics and energy relationships
- Electric field
- electrostatic dynamics and energy relationships
- electromagnetic induction
- electrostatic dynamics and energy relationships
- applications of electromagnetic induction
- imomentum
- conservation of momentum
**Chemistry 11:**
- quantum mechanical model and electron configuration
- valence electrons
- bonds/forces
- reactions
**Chemistry 12:**
- energy change during a chemical reaction
**Earth Sciences 11:**
- solar radiation interactions
- the nebular hypothesis (explanation of the formation and properties of our solar system)
### Learning Standards
- I can describe the process of star formation, from molecular clouds to protostars.
- I can explain the role of angular momentum in the formation of stars.
- I can calculate the angular momentum and moment of inertia when given the shape and mass of an object.
- I can use the conservation of angular momentum to determine how the rotational speed of an object changes when the radius changes.
- I can explain the basic structure of atoms, including protons, neutrons, and electrons.
- I can identify the role of isotopes in stellar chemistry.
- I can describe the importance of neutrinos and photons in stellar processes.
- I can explain the conditions necessary for nuclear fusion to ignite within protostars.
- I can describe the proton-proton chain reaction and the CNO cycle in stars.
- I can explain the process of nucleosynthesis and apply it to the creation of heavier elements in stars.
- I can calculate the energy output of a nuclear fusion reaction.
- I can use the Hertzsprung-Russell (H-R) diagram to classify stars and predict their future evolution.
- I can describe how the mass of a star influences its evolutionary path and final state, such as becoming a white dwarf, neutron star, or black hole.
- I can explain the life cycle of stars from the main sequence to their end stages, comparing the different paths taken by low-mass and high-mass stars.
# Unit4_README.md
---
layout: embed_default
---
## Unit 4: Light and Spectroscopy
Spectroscopy is a crucial tool in astronomy, enabling us to decode the light from stars, galaxies, and distant worlds to uncover their secrets. In this unit, you'll explore the nature of light, from the electromagnetic spectrum to wave-particle duality. Discover how blackbody radiation reveals the temperatures of celestial objects, how atomic energies produce the spectral lines that serve as cosmic fingerprints, and how spectroscopy helps astronomers determine the composition, temperature, and motion of objects across the universe.
![Banner Image](../Unit4/figures/unit4_banner.png)
### Teacher Assessment
- Summary Notes
- Assignment/Project
### Self-Assessment
- Each section of this unit includes a set of "Check Your Understanding" questions that are designed to prepare you for the midterm exam.
-
### [4.1 The Nature of Light](../md_files/4_1_nature_of_light.html)
- **Electromagnetic Waves**: Introduction to the electromagnetic spectrum, including types of electromagnetic radiation from radio waves to gamma rays and their significance in astronomy.
- **Wave Properties**: Exploration of key properties of light such as amplitude, wavelength, and frequency, with a detailed explanation of the relationship between wavelength and frequency through the wave equation.
- **Wave-Particle Duality**: Discussion of light's dual nature as both a wave and a particle (photons) and how photon energy is calculated using Planck's equation.
- **Interaction of Light with Matter**: Detailed coverage of how light interacts with matter through reflection, refraction, and absorption, and their applications in telescope design and astronomical observations.
- **Applications in Astronomy**: The use of different wavelengths across the electromagnetic spectrum to study celestial phenomena, including radio waves, infrared, ultraviolet, and X-rays.
### [4.2 Blackbody Radiation](../md_files/4_2_blackbody.html)
- **Blackbody Spectrum**: Examination of the radiation emitted by blackbodies and how it varies with temperature.
- **Wien’s Displacement Law**: Explanation of how temperature relates to the peak wavelength of blackbody radiation, revealing the color-temperature relationship of stars.
- **Stefan-Boltzmann Law**: Discussion on how the total energy radiated by a blackbody per unit area depends on its temperature, helping to explain the luminosity of stars.
- **Color Indices and Stellar Classification**: Overview of how color indices are used to classify stars by temperature and color, with references to the Hertzsprung-Russell diagram.
### [4.3 Atomic Energies](../md_files/4_3_atomic_energies.html)
- **Quantum Nature of Light**: Review of light's wave-particle duality and the concept of photon energy using Planck’s equation.
- **Electron Volts**: Introduction to electron volts (eV) as a unit of energy, with practical conversion examples relevant to atomic physics.
- **Bohr Model and Atomic Energy Levels**: Explanation of the quantized energy levels in atoms and the transitions between these levels that give rise to emission and absorption spectra.
- **Hydrogen Spectrum**: Detailed exploration of the Lyman, Balmer, and Paschen series in hydrogen and their importance in astronomical spectroscopy.
- **Ionization Energy**: The role of ionization energy in determining the conditions within stars and other celestial bodies.
### [4.4 Spectroscopy I: Principles of Spectroscopy](../md_files/4_4_spectroscopy_1.html)
- **Types of Spectra**: Introduction to continuous, emission, and absorption spectra, with a focus on how they are produced under different astrophysical conditions.
- **Kirchhoff's Laws of Spectroscopy**: An explanation of Kirchhoff’s three laws that govern the production of spectra and their applications in astronomy.
- **Spectral Line Broadening**: Examination of broadening mechanisms such as Doppler broadening and their astrophysical significance in understanding stellar and galactic motions.
### [4.5 Spectroscopy II: Applications of Spectroscopy](../md_files/4_5_spectroscopy_2.html)
- **Identifying Elements in Stars**: How the analysis of absorption and emission lines in spectra is used to identify the chemical composition of stars and other celestial objects.
- **Measuring Stellar Velocities**: Detailed discussion on the Doppler effect and its role in measuring the radial velocities of stars and galaxies, with applications to detecting exoplanets and studying stellar motion.
- **Practical Spectroscopic Analysis**: Overview of spectral line catalogs, databases, and tools astronomers use to analyze stellar spectra and determine the physical properties of celestial objects.
### [Assignment: Spectroscopy in Action](https://teaghan.github.io/astronomy-12/Unit4/Unit4_Assignment.pdf)
- Print off the attached assignment.
- Follow the steps and complete the questions.
- Submit your document with the questions answered.
### Course Resources
- **Free Textbook**: [**Astronomy**](https://openstax.org/books/astronomy/pages/1-introduction) by OpenStax.
- **AI Tutor**: [**Astronomy Tutor**](https://chatgpt.com/g/g-10CjMHMvk-astronomy-tutor) to support you with this class.
### Science Curricular Connections
**Physics 11:**
- Properties and behaviors of waves
- Generation and propagation of waves
**Physics 12:**
- Electromagnetic induction and its applications
- Doppler effect
**Chemistry 11:**
- Quantum mechanical model and electron configuration
- Analysis techniques (e.g., spectroscopy)
**Chemistry 12:**
- Energy change during a chemical reaction
**Earth Sciences 11:**
- Solar radiation interactions
### Learning Standards
- I can describe the electromagnetic spectrum, including the types of electromagnetic radiation and their importance in astronomy.
- I can explain wave-particle duality and calculate the energy of photons using Planck’s equation.
- I can describe the principles of blackbody radiation and explain how it relates to the temperature and energy output of stars.
- I can apply Wien’s Displacement Law to determine the peak wavelength of radiation and the Stefan-Boltzmann Law to calculate the total energy radiated by stars.
- I can explain the structure of atoms and how the interaction of electromagnetic radiation with electrons produces emission and absorption spectra.
- I can distinguish between continuous, absorption, and emission spectra, and describe the conditions under which each is produced.
- I can apply Kirchhoff’s laws of spectroscopy to explain the formation of continuous, emission, and absorption spectra in various astrophysical environments.
- I can explain the mechanisms of spectral line broadening, including Doppler broadening, and understand their significance in the study of stellar and galactic motions.
- I can use spectroscopy to identify the chemical composition, temperature, and other properties of stars and celestial objects.
- I can explain the Doppler effect and apply it to measure the radial velocities of stars and galaxies.
- I can describe how line lists, spectral catalogs, and practical spectroscopy tools are used to analyze the composition and motion of celestial bodies.
# Unit5_README.md
---
layout: embed_default
---
## Unit 5: Galaxies and the Universe
This unit takes students on an expansive journey through the cosmos, exploring the large-scale structure of the universe, the diverse types of galaxies, the mysteries of black holes, and the nature of dark matter and dark energy. Students will uncover how galaxies form and evolve, understand the dynamic processes within black holes, and learn about the possible futures of the universe driven by dark matter and dark energy.
![Banner Image](../Unit5/figures/unit5_banner.png)
### Teacher Assessment
- Summary Notes
- Assignment/Project
### Self-Assessment
- Each section of this unit includes a set of "Check Your Understanding" questions that are designed to prepare you for the midterm exam.
### [5.1 The Big Bang and the Early Universe](../md_files/5_1_early_universe.html)
- **The Big Bang Theory**: Learn about the evidence supporting the Big Bang, including cosmic microwave background radiation and nucleosynthesis.
- **The Early Universe**: Understand the first few moments after the Big Bang and the formation of the first atomic nuclei.
### [5.2 Cosmology](../md_files/5_2_cosmology.html)
- **Structure of the Universe**: Explore the organization of matter into galaxies, clusters, and superclusters.
- **Hubble’s Law**: Understand how redshift reveals the expansion of the universe and the relationship between distance and velocity for galaxies.
- **The Cosmological Principle**: Learn about the homogeneous and isotropic nature of the universe on large scales.
- **Hubble’s Constant**: Examine the significance of Hubble’s constant and current efforts to refine its value.
### [5.3 Types of Galaxies](../md_files/5_3_types_of_galaxies.html)
- **Spiral, Elliptical, and Irregular Galaxies**: Investigate the different types of galaxies, their structures, and their characteristics.
- **Theories of Formation and Evolution of Galaxies**: Learn about how galaxies form, evolve, and interact over time.
- **Quasars**: Study the energetic centers of galaxies and their importance in understanding the early universe.
### [5.4 Black Holes](../md_files/5_4_black_holes.html)
- **Escape Velocity**: Introduction to the concept of escape velocity and its connection to black holes.
- **Event Horizon**: Explore the boundary around a black hole from which no light or matter can escape.
- **Introduction to General Relativity**: Learn how Einstein’s theory of general relativity explains the warping of spacetime around massive objects.
- **Evidence for Black Holes**: Examine the observational evidence for black holes, including star movements and X-rays from accretion disks.
- **Gravitational Waves**: Discover how gravitational waves provide new insights into black holes and cosmic collisions.
### [5.5 Dark Matter, Dark Energy, and the Fate of the Universe](../md_files/5_5_dark_matter_and_energy.html)
- **Dark Matter**: Understand the role of dark matter in galaxy formation and its observational evidence.
- **Dark Energy**: Learn about dark energy and how it drives the accelerated expansion of the universe.
- **Possible Futures of the Universe**: Explore how dark matter and dark energy influence the ultimate fate of the universe—whether it will expand forever, slow down, or collapse.
### [Assignment: The Universe in Motion](https://teaghan.github.io/astronomy-12/Unit5/Unit5_Assignment.pdf)
- Print off the attached assignment.
- Follow the steps and complete the questions.
- Submit your document with the questions answered.
### Course Resources
- **Free Textbook**: [**Astronomy**](https://openstax.org/books/astronomy/pages/1-introduction) by OpenStax.
- **AI Tutor**: [**Astronomy Tutor**](https://chatgpt.com/g/g-10CjMHMvk-astronomy-tutor) to support you with this class.
### Science Curricular Connections
**Physics 11:**
- Mass, force of gravity, and Newton’s laws of motion
- Energy conservation and the principle of work and energy
**Physics 12:**
- Gravitational field and Newton’s law of universal gravitation
- Relativistic effects and the conservation of momentum
**Earth Sciences 11:**
- The nebular hypothesis and the formation of galaxies
**Chemistry 12:**
- Energy change during reactions and nuclear processes
### Learning Standards
- I can describe the evidence supporting the Big Bang and the key events in the early universe.
- I can explain Hubble’s Law and how it provides evidence for the expanding universe.
- I can describe the different types of galaxies and explain the theories of galaxy formation and evolution.
- I can identify quasars and their significance in the study of galaxies.
- I can explain the basic properties of black holes, including escape velocity and event horizons.
- I can describe the role of general relativity in understanding black holes.
- I can summarize the evidence for black holes and describe how gravitational waves help detect cosmic events.
- I can explain the concept of dark matter and its role in the structure of the universe.
- I can describe the effect of dark energy on the expansion of the universe.
- I can analyze the possible futures of the universe based on the balance of dark matter and dark energy.
# 1_1_history.md
---
layout: embed_default
---
# 1.1 A Brief History of Astronomy
### Introduction
Imagine looking up at the night sky thousands of years ago, without the light pollution of modern cities. The stars would be a dazzling spectacle, a cosmic mystery waiting to be unraveled. This lesson will take you on a journey through time, exploring how humanity has sought to understand the universe, from ancient stargazers to modern astronomers. Join us as we discover the fascinating story of astronomy—a tale of curiosity, ingenuity, and the relentless pursuit of knowledge.
<div class="alert alert-block alert-success">
<h4>Video</h4>
<p>Watch <a href="https://youtu.be/0rHUDWjR5gg?si=NJL_XCQq9rRs723c" target="_blank">this video</a> for an excellent introduction to the study of Astronomy. Importantly, the video includes a discussion on the various careers related to astronomy.</p>
</div>
---
### The Ancient Roots of Astronomy
> **Did You Know?**
> The ancient Babylonians were among the first to create detailed records of celestial events, which helped them develop a calendar and predict lunar eclipses.
Our story begins in ancient Babylon and Egypt, where early astronomers meticulously observed the skies. These civilizations recorded the movements of celestial bodies, using their observations to predict events like eclipses and the flooding of the Nile. The Babylonians developed star catalogs, while the Egyptians created a 365-day calendar based on the heliacal rising of Sirius.
| Civilization | Key Contributions |
|--------------|-----------------------------------------------------------|
| Babylon | Star catalogs, lunar eclipse predictions |
| Egypt | 365-day calendar based on Sirius |
| Greece | Mathematical harmony, spherical Earth, Ptolemaic model |
| Mayans | Accurate calendars, predictions of solar and lunar cycles |
| Chinese | Earliest recorded supernova, detailed star maps |
As we move forward in time, we encounter the Greeks, who made significant contributions to our understanding of the cosmos. Pythagoras proposed a mathematical harmony in nature, influencing later cosmologies. Aristotle argued for a spherical Earth, based on the shape of Earth's shadow during lunar eclipses.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Aristotle.png" alt="Aristotle Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
Eratosthenes, a brilliant mathematician, measured Earth's circumference with remarkable accuracy using the angles of shadows in different locations.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/Eratosthenes.png?raw=true" alt="Eratosthenes Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
In Alexandria, Claudius Ptolemy developed the geocentric model, which placed Earth at the center of the universe, with planets and stars orbiting it in complex patterns of circles within circles. This model dominated astronomical thought for over a thousand years.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/Ptolemy.png?raw=true" alt="Ptolemy Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
### The Copernican Revolution
The scene shifts to Renaissance Europe, where a quiet revolution was brewing. Nicolaus Copernicus, a Polish astronomer, proposed a heliocentric model that placed the Sun at the center of the universe. This radical idea challenged the long-held geocentric model and set the stage for a seismic shift in our understanding of the cosmos.
> **Interesting Side Note**:
> Copernicus hesitated to publish his work due to fear of criticism and persecution. His groundbreaking book, "De revolutionibus orbium coelestium," was published just before his death in 1543.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/Copernicus.png?raw=true" alt="Copernicus Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
Enter Galileo Galilei, the Italian polymath who used a telescope to observe the heavens like never before. Galileo discovered moons orbiting Jupiter and phases of Venus, providing concrete evidence for the heliocentric model. His findings sparked a clash with the Catholic Church, illustrating the tension between science and established beliefs.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/Galileo.png?raw=true" alt="Galileo Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
Johannes Kepler, a contemporary of Galileo, formulated three laws of planetary motion, describing the orbits of planets as ellipses rather than circles. Kepler's laws revolutionized our understanding of planetary motion and paved the way for further discoveries.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/Kepler.png?raw=true" alt="Kepler Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
Isaac Newton, the English mathematician and physicist, provided the theoretical foundation for Kepler's laws with his laws of motion and universal gravitation. Newton's work unified the physical description of the universe and laid the groundwork for classical mechanics.
---
### The Birth of Modern Astronomy
Our journey continues into the 18th century with William Herschel, who discovered Uranus and used large telescopes to catalog thousands of stars and nebulae. Herschel's work expanded our understanding of the cosmos and revealed the vastness of the universe.
The development of spectroscopy in the 19th century marked a new era in astronomy. Joseph Fraunhofer discovered dark lines in the solar spectrum, leading to the identification of chemical elements in stars. Gustav Kirchhoff and Robert Bunsen further advanced this field, allowing astronomers to determine the composition of stars and other celestial bodies.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/Fraunhofer.png?raw=true" alt="Fraunhofer Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
Edwin Hubble, in the early 20th century, made a groundbreaking discovery that the universe is expanding. By observing the redshift of galaxies, Hubble provided the first evidence for the Big Bang theory, reshaping our understanding of the universe's origins and evolution.
---
### Recent Advances
The 20th and 21st centuries have seen incredible advancements in astronomy. The Hubble Space Telescope has provided stunning images of deep space, transforming our understanding of the universe's structure and origins.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/HST.png?raw=true" alt="HST Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
Radio and X-ray astronomy have revealed exotic objects like pulsars and quasars, and the cosmic microwave background radiation has given us a glimpse into the universe's early stages.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/CMB.png?raw=true" alt="CMB Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
The discovery of exoplanets has expanded our search for potentially habitable worlds, with missions like the Kepler Space Telescope identifying thousands of planets around other stars.
<img src="https://github.com/teaghan/astronomy-12/blob/main/Unit1/figures/transit.png?raw=true" alt="transit Image" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
### Check Your Understanding
1. **Interdisciplinary Nature**: Based on the video and lesson content, explain how astronomy overlaps with other scientific disciplines. Provide examples of how different fields contribute to our knowledge of the cosmos.
<br><br>
2. **Scientific Method in Astronomy**: Reflect on the video’s discussion of science. How does the scientific method apply specifically to the field of astronomy, and why is it important for scientific progress?
3. **Galileo's discoveries**: Do a bit of research on Galileo's key contributions to astronomy (there are several) and summarize each.
<br><br>
4. **Telescopes in space**: The Hubble Space Telescope orbits Earth and takes images of the sky. Why do you think it is beneficial to have a telscope take images of space *from* space?
<br><br>
---
### Resources
- Astronomy (2016). Andrew Fraknoi, David Morrison, and Sidney C. Wolff.
# 1_2_scale.md
---
layout: embed_default
---
# 1.2 The Scale of the Universe
## Introduction
In the winter of 1995, scientists pointed the Hubble Space Telescope at a seemingly empty patch of sky near the Big Dipper. Over ten consecutive days, the telescope took close to 150 hours of exposure of this dark, unobtrusive spot. What came back was nothing short of spectacular: an image of over 1,500 distinct galaxies glimmering in a tiny sliver of the universe. This was just a fraction of the sky, about the size of a ballpoint pen tip held at arm's length, revealing an incredible truth about the vastness of our cosmos. This lesson will explore the immense scales of the universe, from our solar system to the farthest reaches observed by humanity, illustrating the vast distances and sizes that define our universe.
<div class="alert alert-block alert-success">
<h4>Video</h4>
<p>Watch <a href="https://www.youtube.com/watch?v=WYQ3O8U6SMY" target="_blank">this video</a> for a discussion on the scale of the universe. It includes the distances and sizes of celestial objects and provides a visual representation of the concepts covered in this lesson.</p>
</div>
---
## Scientific Notation
To understand the vast distances and sizes in the universe, we need to use scientific notation. This method allows us to express very large and very small numbers in a manageable way. For example, the distance from the Earth to the Sun is about 150,000,000 kilometers, which can be written as $1.5 \times 10^8$ kilometers.
> One way to think of scientific notation is to think of how many digits to you have to move the decimal place (postivie exponents to the right, negative exponents to the left). For example, $3.8 \times 10^{3}=3800$, whereas $3.8 \times 10^{-3}=0.0038$
---
## The Size and Scale of the Solar System
The solar system is our cosmic neighborhood, and its scale is immense. The Sun, the central star, has a diameter of about 1.4 million kilometers. Earth, the third planet from the Sun, has a diameter of about 12,700 kilometers. The average distance from Earth to the Sun is approximately 150 million kilometers, also known as 1 Astronomical Unit (AU).
> 1 Astronomical Unit (AU) is equivalent to $1.496 \times 10^{11}$ meters.
Imagine if the Sun were the size of a basketball. In this model, Earth would be a small apple seed 30 meters away.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Our_Solar_Family.png" alt="Our Solar Family" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
## Interstellar Distances
Beyond our solar system, the distances between objects become even more staggering. A light-year, the distance light travels in one year, is about 9.46 trillion kilometers. The nearest star to the Sun, Proxima Centauri, is approximately 4.24 light-years away.
> **Derivation of a Light Year**:
>
> Light travels at a speed of approximately 299,792 kilometers per second (km/s) in a vacuum.
> There are 60 seconds in a minute, 60 minutes in an hour, and 24 hours in a day.
>
> $$ \text{Speed of light} = 299,792 \, \text{km/s} $$
>
> $$ \text{Seconds in a minute} = 60 $$
>
> $$ \text{Minutes in an hour} = 60 $$
>
> $$ \text{Hours in a day} = 24 $$
>
> $$ \text{Days in a year} = 365.25 $$
>
> To find the distance light travels in one year:
>
> $$ \text{Distance} = \text{Speed} \times \text{Time} $$
>
> First, calculate the number of seconds in a year:
>
> $$ 60 \times 60 \times 24 \times 365.25 \approx 31,557,600 \, \text{seconds/year} $$
>
> Then, multiply the speed of light by the number of seconds in a year:
>
> $$ 299,792 \, \text{km/s} \times 31,557,600 \, \text{s/year} \approx 9.46 \times 10^{12} \, \text{kilometers/year} $$
>
> Therefore, one light-year is approximately 9.46 trillion kilometers.
### Parallax: Measuring Stellar Distances
Parallax is a method used to measure the distances to nearby stars by observing their apparent movement against the background of more distant stars as Earth orbits the Sun. The parallax angle is half the angle that a star appears to move over six months.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Parallax.png" alt="Parallax" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
### Development of Parallax
The concept of parallax dates back to ancient Greece, where Hipparchus, a Greek astronomer, used it to estimate the distance to the Moon around 150 BCE. Hipparchus observed the apparent shift in the position of the Moon against the background stars when viewed from different locations on Earth. This method relies on the geometric principle that the farther an object is, the smaller its apparent shift when observed from two different points.
However, the method was not applied to stars until the 19th century due to the extremely small angles involved. Friedrich Bessel was the first to successfully measure the parallax of a star, 61 Cygni, in 1838. Bessel's achievement provided the first direct and reliable measurement of the distance to a star other than the Sun.
### What is Parallax?
Parallax is the apparent displacement of an object because of a change in the observer's point of view. In astronomy, it specifically refers to the apparent shift of a star's position against the background of distant stars due to Earth's orbit around the Sun. This shift can be measured at different points in Earth's orbit, six months apart, to form the maximum parallax angle.
<div class="alert alert-block alert-success">
<h4>Video</h4>
<p>Watch <a href="https://www.youtube.com/watch?v=XUQAIldqPww" target="_blank">this video</a> for an more thorough explanation on parallax.</p>
</div>
### Arcseconds and Parsecs
**Arcseconds:** When measuring parallax angles, astronomers use very small units called arcseconds. One arcsecond is \(1/3600\) of a degree. Because the angles involved in stellar parallax are so tiny, using arcseconds allows for more precise measurement.
**Parsecs:** The distance to a star can be determined using its parallax angle. A parsec (pc) is defined as the distance at which a star would have a parallax angle of one arcsecond. It is derived from the formula:
> $$ \text{Distance (parsecs)} = \frac{1}{\text{parallax (arcseconds)}} $$
> One parsec is approximately equal to 3.26 light-years. This unit of measurement is especially useful in astronomy for calculating vast interstellar distances.
**More angle units**: In addition to arcseconds, astronomers also use arcminutes and hours to measure angles and time. One arcminute is $\frac{1}{60}$ of a degree, and one hour is $\frac{1}{24}$ of a day.
<div class="alert alert-block alert-warning">
<b>Example:</b> Calculate the distance to a star with a parallax angle of 0.1 arcseconds.
</div>
> Using the formula:
>
> $$ \text{Distance (parsecs)} = \frac{1}{\text{parallax (arcseconds)}} $$
> $$ \text{Distance} = \frac{1}{0.1} = 10 \text{ parsecs} $$
>
> To convert parsecs to light-years, use the conversion factor:
> $$ 1 \text{ parsec} = 3.26 \text{ light-years} $$
> $$ 10 \text{ parsecs} = 10 \times 3.26 = 32.6 \text{ light-years} $$
### Applications and Limitations
Parallax is a fundamental method for measuring distances to nearby stars **within a few hundred light-years from Earth**. Beyond this range, the parallax angles become too small to measure accurately with current technology. However, advancements in space telescopes, like the Gaia mission, have significantly increased the precision of parallax measurements, allowing astronomers to map stars up to tens of thousands of light-years away.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Star_Cluster.png" alt="Star Cluster" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
## The Milky Way Galaxy
The Milky Way is our galaxy, a massive collection of stars, gas, and dust bound together by gravity. It contains between 100 to 400 billion stars, including our Sun. Our solar system is located in one of the spiral arms of the Milky Way, about 27,000 light-years from the galactic center. The Milky Way itself is about 100,000 light-years in diameter.
---
## The Local Group and Other Galaxies
The Milky Way is part of a larger collection of galaxies known as the Local Group, which contains about 54 galaxies. The Andromeda Galaxy, approximately 2.5 million light-years away, is the closest spiral galaxy to the Milky Way. Galaxies come in various shapes and sizes, including spiral, elliptical, and irregular.
> **Did You Know?**
> The Andromeda Galaxy and the Milky Way are on a collision course and are expected to merge in about 4.5 billion years to form a new galaxy, sometimes dubbed "Milkomeda."
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Closest_Spiral_Galaxy.png" alt="Closest Spiral Galaxy" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
## The Observable Universe
Beyond the Local Group lies the observable universe, a vast expanse containing billions of galaxies. The observable universe is about 93 billion light-years in diameter. Superclusters and voids are large-scale structures within the universe, with superclusters containing thousands of galaxies.
> **Interesting Side Note**:
> The Hubble Deep Field image, taken in the mid-1990s, revealed over 1,500 galaxies in a tiny area of the sky, approximately one two-millionth of the night sky. This image showed the immense scale and richness of the universe.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Fornax_Cluster_of_Galaxies.png" alt="Fornax Cluster of Galaxies" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
## Methods of Measurement
In this lesson, we studied the use of parallax to measure interstellar distances.
Astronomers use various other methods to measure distances in the universe, each suited to different scales and types of objects. We will study these more throughout the course.
1. **Parallax**:
- **Useful For**: Measuring distances to nearby stars within a few hundred light-years.
- **How It Works**: Observes the apparent movement of a star against the background of more distant stars as Earth orbits the Sun. The parallax angle is half the angle that a star appears to move over six months. This method is most effective for stars relatively close to us.
- **Further Insight**: Parallax measurements become increasingly difficult for stars that are farther away due to the very small angles involved. Advanced instruments, such as the Gaia space observatory, have significantly improved the accuracy of parallax measurements, enabling the mapping of stars up to tens of thousands of light-years away.
2. **Standard Candles**:
- **Useful For**: Measuring distances to stars and galaxies up to tens of millions of light-years away.
- **How It Works**: Uses objects with known luminosity, such as Cepheid variables and Type Ia supernovae, to determine distance based on their observed brightness. By comparing the known intrinsic brightness with the observed brightness, the distance to the object can be calculated.
- **Further Insight**: Cepheid variables have a well-defined relationship between their luminosity and pulsation period, making them reliable distance indicators. Type Ia supernovae, known for their consistent peak brightness, are used to measure distances to faraway galaxies.
3. **Redshift**:
- **Useful For**: Measuring distances to very distant galaxies and the overall scale of the universe.
- **How It Works**: Measures the shift in the spectral lines of distant galaxies toward the red end of the spectrum. This redshift is due to the expansion of the universe and can be used to determine the galaxy's distance. The greater the redshift, the farther away the galaxy is.
- **Further Insight**: Redshift measurements are fundamental to cosmology, providing crucial data for understanding the expansion rate of the universe (Hubble's Law) and the distribution of galaxies on a large scale.
---
## Check Your Understanding
1. **Unit Conversion**: The distance from Earth to Proxima Centauri is 4.24 light-years. Convert this distance to km, using appropriate scientific notation. How many Astonomical Units (AUs) would this be?
<br><br>
2. **Speed of light**: The distance from Earth to the Sun is 149 million kilometers. How long does it take the light from the Sun to reach Earth's surface?
<br><br>
3. **Solar System Scale**: If the Sun were the size of a basketball, how far would Neptune be in your model?
<br><br>
4. **Parallax**: Explain how parallax is used to measure the distance to nearby stars.
<br><br>
5. **Measuring Distances**: If a star has a parallax angle of 0.23 arcseconds, what is its distance from Earth in parsecs? Convert this distance to light-years and kilometers (using scientific notation).
<br><br>
## Resources
- Astronomy (2016). Andrew Fraknoi, David Morrison, and Sidney C. Wolff.
# 1_3_the_sky.md
---
layout: embed_default
---
# 1.3 The Celestial Sphere
### Introduction
Have you ever wondered why the stars seem to move across the sky each night, or why certain constellations are only visible during specific times of the year? To ancient astronomers, the heavens appeared as a vast, rotating dome with the Earth at its center. This imaginary dome, or *celestial sphere*, is a concept that has helped astronomers understand and describe the positions and movements of celestial objects for centuries. Today, we'll explore the celestial sphere and discover its significance in modern astronomy.
<div class="alert alert-block alert-success">
<h4>Video</h4>
<p>Watch <a href="https://www.youtube.com/watch?v=1Toya19H12w" target="_blank">this video</a> for a quick run-down of the celestial sphere and the motion of the stars.</p>
</div>
---
### The Celestial Sphere
Imagine lying back on a clear night, gazing up at the stars. It feels as if you are inside a gigantic, hollow dome with the stars stuck onto its inner surface. This is the celestial sphere, an imaginary sphere of arbitrarily large radius, centered on the Earth, on which all celestial objects can be considered to lie. Although the celestial sphere is a simplification, it remains incredibly useful for locating stars, planets, and other celestial bodies in the sky.
<div class="alert alert-block alert-info">
<b>Tip:</b> Think of the celestial sphere as a giant globe surrounding the Earth, with stars projected onto its inner surface.
</div>
Key features of the celestial sphere include:
- **Zenith**: The point directly overhead.
- **Horizon**: The line where the sky appears to meet the Earth.
- **Celestial Poles**: Extensions of Earth's North and South Poles onto the celestial sphere.
- **Celestial Equator**: The projection of Earth's equator onto the celestial sphere.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Figure2_2.png" alt="The Sky around Us" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
### Celestial Poles and Celestial Equator
To understand the celestial sphere, imagine extending Earth's axis points into the sky. The points where this line intersects the celestial sphere are the north celestial pole and the south celestial pole. As Earth rotates about its axis, the sky appears to turn in the opposite direction around these celestial poles.
> The celestial equator divides the sky into the northern and southern celestial hemispheres, similar to how Earth's equator divides our planet.
For example, if you stood at the North Pole, you would see the north celestial pole overhead at your zenith. The celestial equator would lie along your horizon. As you watch the stars during the course of the night, they would all circle around the celestial pole, with none rising or setting. Conversely, at the equator, you would see the celestial equator pass overhead through your zenith, and the celestial poles at the north and south points on your horizon.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Figure2_3.png" alt="Circles on the Celestial Sphere" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Figure2_4.png" alt="Circling the South Celestial Pole" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
### Rising and Setting of the Sun
The Sun, Moon, and stars appear to rise in the east and set in the west due to Earth's rotation. This daily movement, known as diurnal motion, is one of the most familiar astronomical phenomena. The path the Sun appears to take across the celestial sphere over the course of a year is called the ecliptic. This path is inclined to the celestial equator due to the tilt of Earth's axis, leading to seasonal changes.
> Imagine standing in San Francisco, where the latitude is 38° N. The north celestial pole would be 38° above the northern horizon. As Earth turns, the whole sky seems to pivot about the north celestial pole. Stars within 38° of the North Pole never set, while stars within 38° of the south celestial pole never rise.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Figure2_7.png" alt="The Celestial Tilt" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
### Interactive Exploration
The simulator below gives an interactive visualization of the celestial sphere and the visible sky. Anything above the green plane in the right hand screen is visible to the observer. Try playing around with the settings and clicking "start animation".
<div style="width: 100%; height: 0; padding-bottom: 100%; position: relative;">
<iframe src="https://astro.unl.edu/naap/motion2/animations/ce_hc.html"
style="position: absolute; width: 100%; height: 100%; top: 0; left: 0;"
allowfullscreen>
</iframe>
</div>
---
### Fixed and Wandering Stars
Ancient astronomers categorized celestial objects into "fixed stars" and "wandering stars." Fixed stars maintain fixed patterns relative to each other and form constellations. Wandering stars, known today as planets, move relative to the fixed stars.
The fixed stars include most of the stars we see in the night sky. They form patterns that have been recognized and named as constellations. These patterns appear to move across the sky in a predictable way each night and throughout the year, making them useful for navigation and timekeeping.
> The ancient Greeks called the planets "asteres planetai," which means "wandering stars." Unlike the fixed stars, the planets change their positions relative to the background stars over days, weeks, and months.
---
### Constellations
Constellations are patterns of stars that have been identified and named by various cultures throughout history. Today, astronomers recognize 88 constellations that divide the sky into sectors, making it easier to locate celestial objects.
The modern constellations are used not only to identify patterns of stars but also to define specific areas of the sky. Each constellation covers a region of the celestial sphere, so every point in the sky belongs to one of the 88 constellations. This system helps astronomers communicate about locations in the sky with precision.
> **Did You Know?** The modern meaning of a constellation includes not just the pattern of stars but also the region of the sky around it. For example, the constellation Orion is not just the familiar hunter figure but also the area of the sky where this pattern is found.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Figure2_6.png" alt="Constellations on the Ecliptic" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
---
### Check Your Understanding
1. How many degrees does the Sun move per day relative to the fixed stars? How many days does it take for the Sun to return to its original location relative to the fixed stars?
<br><br>
2. The Moon's orbital period around Earth is approximately 27.3 days. How many degrees does the Moon move per day relative to the fixed stars?
<br><br>
3. Is the ecliptic the same thing as the celestial equator? Explain.
<br><br>
4. Explain why more stars are circumpolar for observers at higher latitudes.
<br><br>
5. What is the altitude of the north celestial pole in the sky from your latitude? (The latitude of Salt Spring Island, BC is approximately 49 degrees N.)
<br><br>
6. Suppose you are on a strange planet and observe, at night, that the stars do not rise and set, but circle parallel to the horizon. Next, you walk in a constant direction for 8000 miles, and at your new location on the planet, you find that all stars rise straight up in the east and set straight down in the west, perpendicular to the horizon. How could you determine the circumference of the planet without any further observations? What is the circumference, in miles, of the planet?
<br><br>
---
### Resources
- Astronomy (2016). Andrew Fraknoi, David Morrison, and Sidney C. Wolff.
# 1_4_brightness.md
---
layout: embed_default
---
# 1.4 The Brightness of Stars
## Introduction
Have you ever gazed up at the night sky and wondered why some stars shine brighter than others? The study of stellar brightness not only allows us to appreciate the beauty of the cosmos but also provides crucial information about the stars themselves. In this lesson, we'll explore how astronomers measure the brightness of stars, the physics behind their luminosity, and the historical context of the magnitude scale.
<div class="alert alert-block alert-success">
<h4>Video</h4>
<p>Watch <a href="https://youtu.be/JIXFXGiDa4Y?si=x7IidSPRQEKKfjgL" target="_blank">this video</a> for an excellent overview of the brightness of stars, including practical examples and historical context.</p>
</div>
---
### Flux and Luminosity
To understand stellar brightness, we first need to define a few key concepts: flux and luminosity.
**Flux** is the amount of light energy received per unit area per unit time. Imagine standing under a streetlamp at night. The light that hits you is the flux.
**Luminosity**, on the other hand, is the total amount of energy a star emits per unit time. Think of it as the star's total power output.
### The Inverse Square Law
As light travels from a star, it spreads out over an ever-increasing area. This spreading out follows the **Inverse Square Law**, which states that the flux decreases with the square of the distance from the source. Mathematically, we express this as:
> $$ F = \frac{L}{4\pi r^2} $$
where:
- $F$ is the flux (in watts per square meter, $\text{W/m}^2$),
- $L$ is the luminosity (in watts, $\text{W}$),
- $r$ is the distance from the star (in meters, $\text{m}$).
> This law explains why stars appear dimmer the farther away they are. It's not because they're less powerful, but because their light spreads out over a larger area.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/inv_sq_law.png" alt="Inverse Square Law" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
<div class="alert alert-block alert-warning">
<b>Example:</b> Calculating the Solar Flux at Different Distances
</div>
> The luminosity of the Sun is $ 3.839 \times 10^{26} $ W and is at a distance of 1 AU (astronomical unit) away from Earth, which is $ 1.496 \times 10^{11} $ meters.
>
> Earth receives a radiant flux above its absorbing atmosphere given by:
>
> > $$ F = \frac{L}{4\pi r^2} $$
> >
> > $$ F = \frac{3.839 \times 10^{26}}{4\pi (1.496 \times 10^{11})^2} $$
> >
> > $$ F \approx 1365 \, \text{W/m}^2 $$
>
>This value of the solar flux is known as the **solar irradiance**, sometimes also called the solar constant.
---
## Apparent Brightness and the Magnitude Scale
### Apparent Magnitude
The **apparent magnitude** of a star is a measure of its brightness as seen from Earth. This concept is crucial because it takes into account both the intrinsic luminosity of the star and its distance from us.
### Historical Background of the Magnitude Scale
The magnitude scale dates back to the ancient Greek astronomer Hipparchus, who classified stars according to their apparent brightness. This system was refined by Ptolemy and later standardized to a logarithmic scale, where a difference of 5 magnitudes corresponds to a factor of 100 in brightness.
The logarithmic nature of the scale is represented by:
> $$ m_1 - m_2 = -2.5 \log_{10} \left( \frac{F_1}{F_2} \right) $$
where $ m_1 $ and $ m_2 $ are the magnitudes of two stars, and $ F_1 $ and $ F_2 $ are their respective fluxes.
Another way to write this equation is:
> $$ \frac{F_2}{F_1} = \left(100^{0.2}\right)^{m_1 - m_2} $$
which allows us to compare the flux of two objects (and the flux is what we would typically call "brightness" in every day conversation).
> The star Vega was historically used as the standard for apparent magnitude, set at 0. Modern measurements have slightly adjusted this value, but Vega remains a key reference point in the magnitude system.
<div class="alert alert-block alert-info">
<b>Recall:</b> A logarithm is a mathematical operator that tells us the power to which a base number must be raised to obtain a given number. When the base is not specified, it is assumed to be 10.
</div>
> For example, $ \log_{10}(100) = 2 $ because $ 10^2 = 100 $.
Logarithmic scales are used in astronomy to manage the huge differences in the brightness and distances of celestial objects.
<img src="https://raw.githubusercontent.com/teaghan/astronomy-12/main/Unit1/figures/Apparent_Magnitudes.png" alt="Apparent Magnitudes of Well-Known Objects" width="1000" style="display: block; margin-left: auto; margin-right: auto;">
<div class="alert alert-block alert-warning">
<b>Example:</b> Suppose an astronomer has discovered something special about a dim star with a magnitude of 8.5 and wants to explain how much dimmer this star is compared to Sirius. We'll use the dim star as Star 1 and Sirius as Star 2 in our equation.
</div>
> Given:
>
> > Dim star magnitude, $ m_1 = 8.5 $
> >
> > Sirius magnitude, $ m_2 = -1.5 $
>
> Solution:
>
> > $$ \frac{F_2}{F_1} = \left(100^{0.2}\right)^{8.5 - (-1.5)} $$
> >
> > $$ \frac{F_2}{F_1} = \left(100^{0.2}\right)^{10} $$
> >
> > $$ \frac{F_2}{F_1} = (100)^2 = 100 \times 100 = 10,000 $$
> >
> > Therefore, the dim star is 10,000 times dimmer than Sirius.