Figure 1: three bodies orbiting each other

Size: px
Start display at page:

Download "Figure 1: three bodies orbiting each other"

Transcription

1 PHAS2443 Practical Mathematics II Orbiting Bodies: The Dance of the Stars Introduction When one thinks of planetary motion a similar image of our solar system comes up where one massive body is being orbited by many smaller bodies. In a case like the one described an assumption would be that the smaller masses do not interact with each other making the model simpler and a solution can be found easily. When we start thinking about different scenarios, like a system of bodies all of similar mass, then the assumption made fails and the model remains complex and a solution is hard to attain. Orbital patterns that arise out of this system tend to be more exotic then the simple model described before. Figure 1: three bodies orbiting each other This investigation will look at n-body systems of similar masses and learn what kind of orbits happen in these systems and how to attain the best solution to the problem. Investigations of the solutions to the n-body orbits will use notations and coding that used on mathematica. Thus enabling the user to follow my method and check the solutions themselves. The reader will find derivations of equations and code working in my project notes. Orbits: To know what is happening in the system of planets you need to know what forces are acting within the system, also you need the positions and velocity of all the planets that affect each other. Using Newton s laws you can deduce the forces of the system. Each planet feels the sum of all the forces that is acting on it... m r = m m rij rji 3 (eq.1) i j ( r ).( ) 2 ij rji rij r ji i ij i j

2 Initial conditions r[0] = { x [0], y [0], z [0]]} = Initial Positions i i i i ri[0] = { xi[0], y [0], zi[0]} = Initial Velocity { m } = masses i G = Gravitational Constant i Eq.1 is a generalized equation for the force of a planet, of mass m i, feels. This equation by itself will not tell you very much about system because for a solution to become attainable you will need to know, starting positions of the planets, the initial velocity, the masses of each planet and the gravitational constant. r is a vector which lie in the (x, y, z) planes also it is a function of time, making time a parameter for the solutions. Solving the equation analytically is found to be impossible thus we can use mathematica to solve this equation numerically using the function NDSolve. I m assuming that all the particles move in the same plane and all constants like masses are all unity because this will make the equations a lot easier to solve and mathematica will work quicker in finding a solution. This will become important when dealing with high number of particles. Using identical masses means that the system becomes more understandable and easier to control. Figure 2 Figure 3 2

3 In both cases they have the same initial conditions of position and velocity but figure 1 has constants {m1=100, m2=1, m3=13, Gg=10} while all constants in figure 2 are in unity. A more extreme example would be figure 4, where the planets are not in a stable orbit and just looks like a mess. (See notes for details of figures). Figure 4 Errors: When using mathematica to numerical solve the equations there will be a slight error in the results. Although this is an unnoticeable error at first but after an amount of time these effects can become disastrous and may look like nothing from your original plot. An example is to see how this error affects the solution of a simple orbit of 2 particles. I have chosen my initial conditions as follows; r10 = {1, 0, 0} r20 = {-1, 0, 0} r1v = {0, 0.5, 0} r2v = {0, -0.5, 0} Where r10 and r20 are my initial positions, r1v and r2v are my initial velocities. These initial conditions were chosen so the masses have symmetry around the origin making it easier to solve. Solutions; 3

4 p1 = ParametricPlot[Evaluate[{x1[t], y1[t]} /. asol], {t, 0, 4[Pi]}] Figure 5 p3 = ParametricPlot[{Sin[t\2], Cos[t\2]}, {t, 0, 4 [Pi]}] Figure 6 Figure 5 shows the trajectory of mass one, while figure 6 shows the analytic solution to the problem. What you can see is that both masses travel on the same circle, also looking at both plots you would say they are pretty much identical. When the amount of time to pass is increased for both plots, p3 = ParametricPlot[{Sin[t\2], Cos[t\2]}, {t, 0, 300[Pi]}]

5 p1 = ParametricPlot[Evaluate[{x1[t], y1[t]} /. asol], {t, 0, 300[Pi]}] What happened above is that the analytic solution (p3) has maintained its accuracy (Would be surprising if it didn t) but the numerical solution has shifted. This is because the numerical solution can only hold a certain amount of precision for each number that it finds. You can watch how the error evolves by taking away the two graphs; if the numerical solution is 100% accurate then the difference should be zero. What figure 7 (below) shows, is the trajectory of the error on the masses. Meaning that at a point in time the error on the position of a mass is equal to distance of the point on figure 7 to the origin. From figure 7 you can see that after 100 units of time that the error is of the order of (10^-5). This of only a simple system, as soon as you increase the number of masses the error will increase with it. When dealing with high a number of masses you will need to increase the accuracy of the solutions or the solutions will only be acceptable for sort periods of time. er = Flatten[Evaluate[Thread[{x1[t], y1[t]}-n[{cos[t\2], Sin[t\2]}]] /. asol]] ParametricPlot[Flatten[Evaluate[Thread[{x1[t], y1[t]} - N[{Cos[t\2], Sin[t\2]}]] /. asol]], {t, 0, 100}] Figure 7 By using the option WorkingPrecision, you can set the amount of digits that mathematica can hold. When working out solutions mathematica can only solve in a limited amount of time, the amount of times that can be solved depends on the number of calculations that are being dealt with. The max amount of time that the solution will run for will decrease if the amount of masses that you use increase. Also if you increase the working precision that mathematica uses then this also dramatically decreases the max time. If number of masses is high you can always decrease the working precision but this will increase the error on the plot. A right balance is required to find a suitable solution. For instance for the solution above 5

6 This is the solution for the 2 particle system described above. As you can see the max time is up to but at that point the errors would be bigger, as shown in figure 8. In this case the error is now of order 10^ If the working precision is increased, Figure 8 As you can see the max time has decreased dramatically and the amount of time taken to solve has increased dramatically. Using NDSolve on mathematica is not the only way in finding a solution of eq1; other algorithmic methods can be used to solve this equation, like the Runge-Kutta method (Method which integrates, numerically, differential equations using steps at the midpoint of an interval). 6

7 Solutions: There are many different types of solutions out there and this will only be covering a few of them to see generally how planets behave. We have already seen the 2 body problem solved above, when we increase the number of bodies to 3 (keeping the masses identical), a variety of solutions come out depending on the initial conditions. If we use simple initial conditions; r10 = {0, 1, 0} r20 = {-1, 0, 0} r30 = {1, 0, 0} r1v = {0.5, 0, 0} r2v = {0, 0.5, 0} r3v = {0, -0.5, 0} Since there are 3 planets there will be 6 forces since every planet interacts with n-1 planets. This means that for 4 planets there will be 12 forces and for 5 there will be 20 forces. You only need half the amount of these forces as the other half re just the negatives of the other forces. Eq2 are the forces that one planet feels with another. Eq2 Eq3 Eq3 are the equations that need to be solved with initial conditions above to find a plot. 7

8 Orbit 3 will find the solutions of the positions of each planet with a parameter of time, in the form of an interpolating function. Above are the solutions, to find the speed at any point in time all that needs to be done is to differentiate the equations respect to time. The above function will plot the results. Figure 9 Figure 9 shows chaotic behavior in the beginning but after some time one planet flies off (blue line) and the other 2 planets (red, black) form a stable orbit together traveling in a chain. Finding the velocities is just as easy as shown below, 8

9 Figure 10 Figure 10 shows that the velocities agree with figure 9 where the circular portions of the figure show that the planets form a stable orbit near the end, while the blue line will hardly ever be in a stable orbit (check notes for animations). Consider 1 mass now not moving in the centre of the other 2 masses. The initial conditions I chose for this are below, r1v = {0, 0, 0} r2v = {0, 0.5, 0} r3v = {0, -0.5, 0} r10 = {0, 0, 0} r20 = {-1, 0, 0} r30 = {1, 0, 0} 9

10 Following the same method as before in calculating the solution, Figure 11 Figure 12 Figure 11 shows a very stable orbit but you can see the errors occur again and when both planets go near the centre you can see some spikes in the path. Figure 12 shows the max time step available and you can see there is a bigger error as the 2 orbiting planets come nearer to the 3 rd. This could be because as one planet comes nearer to the other two it will have a stronger interaction therefore will need a higher numerical precision which mathematica initially doesn t provide. 10

11 Figure 13 Figure 13 shows the solution with a higher working precision then before, as you can see this has gotten rid of the inaccuracy nearer the centre. The faster the initial speeds and you will find that that the particle paths will become more circular and overlap more, make them to fast and they will break out of orbit. If the speeds slow down the elliptical paths they follow will become more stretched and thinner. To find a system where all 3 planets form a circular orbit with one which is locked in the centre. You can take inspiration from the previous example because as the masses have faster initial velocities the shape becomes more circular and they overlap and pass. So finding this overlap a module function can be devised to print out all the plots with different velocities until one overlaps. Using this function you can make a do loop and solve graphically. As you can see from figure 14 they masses move as described above. 11

12 Figure 14 Another case of interest is that if 2 masses are in a stable orbit then the third mass passes through. Use initial conditions defined below; r10 = {1, 0, 0} r20 = {-1, 0, 0} r30 = {0, 100, 0} r1v = {0, 0.5, 0} r2v = {0, -0.5, 0} r3v = {0, -10, 0} In this case a 3 rd particle is rushing in at a much faster rate then the other to. Solving for these initial conditions you will get; Figure 15 12

13 Figure 15 shows the 3 rd mass unhindered by the other 2 and goes straight through while the 2 left break away forming another stable of a chain. Solving for a slower speed might change the outcome by having the 3 rd planet more time to interact with the more stable pair. Using the new conditions below will show a new solution (figure 16). r10 = {1, 0, 0} r20 = {-1, 0, 0} r30 = {0, 50, 0} r1v = {0, 0.5, 0} r2v = {0, -0.5, 0} r3v = {0, -5, 0} Figure 16 Figure 16 shows that now the 3 rd planet interacts more with the other 2 destroying the stability. If we have even more slower; r10 = {1, 0, 0} r20 = {-1, 0, 0} r30 = {0, 25, 0} r1v = {0, 0.5, 0} r2v = {0, -0.5, 0} r3v = {0, -1, 0} 13

14 Then solutions will be; Figure 17 What you can see from figure 17 is that the 3 rd planet comes smashing in it seems to take the place of a stable planet and forms what I had in figure 15. Conclusion: What you can tell from all these diagrams that there are many possible solutions since there is a large amount of combinations of initial values, most of them being of no interest, you have to pick and chose what you think is important. This is just a few of the possible solutions. I have only dealt with 3 bodies mainly, when looking at more and more masses you will see that you begin to have more elaborate and exotic orbits. Mathematica can generalize the method I used to make a function which can deal with any amount of bodies. Solutions can vary from having a very stable orbit to a mess. There are many solutions that seem very chaotic but after some time there will be brief moment of order or they will all break apart leaving smaller clumps of planets which will be stable (figure 9). The problem with having no analytic solution to these problems is that you only get a vague idea of what they do, which is right in the short term but you can never be to sure after longer periods of time if the solution is right. To find any of these exotic orbits in space will be challenge because either a stable orbit will not last long for large groups or you need very specific initial conditions which the smallest disturbance will ruin the stability. Finding accurate solutions would be very useful in the field of astronomy since in the centre of our galaxy many stars are close together forming intricate orbits. Solving for such scales is impossible since the large number of planets will large amounts of computing power, exceeding the most powerful computers. 14

Unit 5 Gravitation. Newton s Law of Universal Gravitation Kepler s Laws of Planetary Motion

Unit 5 Gravitation. Newton s Law of Universal Gravitation Kepler s Laws of Planetary Motion Unit 5 Gravitation Newton s Law of Universal Gravitation Kepler s Laws of Planetary Motion Into to Gravity Phet Simulation Today: Make sure to collect all data. Finished lab due tomorrow!! Universal Law

More information

Gravity Well Demo - 1 of 9. Gravity Well Demo

Gravity Well Demo - 1 of 9. Gravity Well Demo Gravity Well Demo - 1 of 9 Gravity Well Demo Brief Summary This demo/activity in Space Odyssey will give visitors a hands-on feel for how gravity works. Specifically, how Newton interpreted the force of

More information

Circular Motion and Gravity Lecture 5

Circular Motion and Gravity Lecture 5 Circular Motion and Gravity Lecture 5 ˆ Today we talk about circular motion. There are two reasons to do this... ˆ Last week we talked about Newton s laws in problems dealing with straight-line motion.

More information

Name. Satellite Motion Lab

Name. Satellite Motion Lab Name Satellite Motion Lab Purpose To experiment with satellite motion using an interactive simulation in order to gain an understanding of Kepler s Laws of Planetary Motion and Newton s Law of Universal

More information

2º ESO UNIT 1: Forces and movements. Susana Morales Bernal

2º ESO UNIT 1: Forces and movements. Susana Morales Bernal 2º ESO UNIT 1: Forces and movements Objectives 1. To know that the motion of an object implicates a change in its position respect to another one that is considered as reference. 2. To know if an object

More information

ASTR 150. Planetarium Shows begin Sept 9th. Register your iclicker! Last time: The Night Sky Today: Motion and Gravity. Info on course website

ASTR 150. Planetarium Shows begin Sept 9th. Register your iclicker! Last time: The Night Sky Today: Motion and Gravity. Info on course website Planetarium Shows begin Sept 9th Info on course website Register your iclicker! Last time: The Night Sky Today: Motion and Gravity ASTR 150 Hang on tight! Most math all semester-- get it over with right

More information

Class 16. Prof J. Kenney October 31, Relativity

Class 16. Prof J. Kenney October 31, Relativity Class 16 Prof J. Kenney October 31, 2016 Relativity Length contraction (moving sticks are shorter) A measuring stick at rest has a length Lo. When it is propelled at velocity v, it has a shorter length

More information

Module 8: The Cosmos in Motion. UNC-TFA H.S. Astronomy Collaboration, Copyright 2011

Module 8: The Cosmos in Motion. UNC-TFA H.S. Astronomy Collaboration, Copyright 2011 Objectives/Key Points Module 8: The Cosmos in Motion UNC-TFA H.S. Astronomy Collaboration, Copyright 2011 1. Differentiate between classical motions across space (peculiar velocities) and cosmological

More information

Simulations of Binary Star System with Earth Mass Planet Craig Swenson

Simulations of Binary Star System with Earth Mass Planet Craig Swenson Simulations of Binary Star System with Earth Mass Planet Craig Swenson For this project I wanted to investigate that stability of planetary orbits in binary systems. Logic dictates that for systems where

More information

Relativity. Class 16 Prof J. Kenney June 18, boss

Relativity. Class 16 Prof J. Kenney June 18, boss Relativity Class 16 Prof J. Kenney June 18, 2018 boss Length contraction (moving sticks are shorter) A measuring stick at rest has a length Lo. When it is propelled at velocity v, it has a shorter length

More information

Is there life outside of Earth? Activity 2: Moving Stars and Their Planets

Is there life outside of Earth? Activity 2: Moving Stars and Their Planets Is there life outside of Earth? Activity 2: Moving Stars and Their Planets Overview In this activity, students are introduced to the wobble-method (officially known as the radial velocity method) of detecting

More information

Gravity Lab Introduction. Name. Date Block

Gravity Lab Introduction. Name. Date Block Gravity Lab Introduction Name Date Block Introduction: In this lab, computer simulation, we will investigate the factors that effect gravitational force. We know that in order to feel or see the effects

More information

Kepler's Laws and Newton's Laws

Kepler's Laws and Newton's Laws Kepler's Laws and Newton's Laws Kepler's Laws Johannes Kepler (1571-1630) developed a quantitative description of the motions of the planets in the solar system. The description that he produced is expressed

More information

How does the solar system, the galaxy, and the universe fit into our understanding of the cosmos?

How does the solar system, the galaxy, and the universe fit into our understanding of the cosmos? Remember to check the links for videos! How does the solar system, the galaxy, and the universe fit into our understanding of the cosmos? Universe ~ 13.7 bya First Stars ~ 13.3 bya First Galaxies ~ 12.7

More information

Orbits. Objectives. Orbits and unbalanced forces. Equations 4/7/14

Orbits. Objectives. Orbits and unbalanced forces. Equations 4/7/14 Orbits Objectives Describe and calculate how the magnitude of the gravitational force between two objects depends on their masses and the distance between their centers. Analyze and describe orbital circular

More information

Part I Electrostatics. 1: Charge and Coulomb s Law July 6, 2008

Part I Electrostatics. 1: Charge and Coulomb s Law July 6, 2008 Part I Electrostatics 1: Charge and Coulomb s Law July 6, 2008 1.1 What is Electric Charge? 1.1.1 History Before 1600CE, very little was known about electric properties of materials, or anything to do

More information

VISUAL PHYSICS ONLINE

VISUAL PHYSICS ONLINE VISUAL PHYSICS ONLINE EXCEL SIMULATION MOTION OF SATELLITES DOWNLOAD the MS EXCEL program PA50satellite.xlsx and view the worksheet Display as shown in the figure below. One of the most important questions

More information

Outline for Today: Newton s Law of Universal Gravitation The Gravitational Field Orbital Motion Gravitational Potential Energy

Outline for Today: Newton s Law of Universal Gravitation The Gravitational Field Orbital Motion Gravitational Potential Energy PHY131H1F - Class 13 Outline for Today: Newton s Law of Universal Gravitation The Gravitational Field Orbital Motion Gravitational Potential Energy Under the Flower of Kent apple tree in the Woolsthorpe

More information

1 Two Speeds that Determine Retention of an Atmosphere

1 Two Speeds that Determine Retention of an Atmosphere General Astronomy (29:61) Fall 2012 Lecture 26 Notes, November 2, 2012 1 Two Speeds that Determine Retention of an Atmosphere We can use some of the physics we learned earlier in the semester. In fact,

More information

GRAVITY IS AN ATTRACTIVE FORCE

GRAVITY IS AN ATTRACTIVE FORCE WHAT IS GRAVITY? Gravity: force of attraction between objects due to their mass Gravity is a noncontact force that acts between two objects at any distance apart GRAVITY IS AN ATTRACTIVE FORCE Earth s

More information

Astron 104 Laboratory #4 Gravity and Orbital Motion

Astron 104 Laboratory #4 Gravity and Orbital Motion Name: Date: Section: Astron 104 Laboratory #4 Gravity and Orbital Motion Section 5.5, 5.6 Introduction No astronomical object can stand still gravity makes certain of this. Newton s Law of Universal Gravitation

More information

Student s guide CESAR Science Case The Venus transit and the Earth-Sun distance

Student s guide CESAR Science Case The Venus transit and the Earth-Sun distance Student s guide CESAR Science Case The Venus transit and the Earth-Sun distance By: Abel de Burgos and Assiye Süer Name Date Introduction A transit happens when a body passes, or transits, in front of

More information

Astronomy 120 Overview

Astronomy 120 Overview Prof. Jeff Kenney Class 15 June 15, 2018 Astronomy 120 Overview Lec 1-5: intro, physics review (FAST) Lec 6-8: stars (FAST) Lec 9-14: galaxies, clusters & dark matter (SLOW) Lec 15-18: black holes & active

More information

The force of gravity holds us on Earth and helps objects in space stay

The force of gravity holds us on Earth and helps objects in space stay 96 R E A D I N G The force of gravity holds us on Earth and helps objects in space stay in orbit. The planets in the Solar System could not continue to orbit the Sun without the force of gravity. Astronauts

More information

Name: Earth 110 Exploration of the Solar System Assignment 1: Celestial Motions and Forces Due on Tuesday, Jan. 19, 2016

Name: Earth 110 Exploration of the Solar System Assignment 1: Celestial Motions and Forces Due on Tuesday, Jan. 19, 2016 Name: Earth 110 Exploration of the Solar System Assignment 1: Celestial Motions and Forces Due on Tuesday, Jan. 19, 2016 Why are celestial motions and forces important? They explain the world around us.

More information

GRAVITATION. F = GmM R 2

GRAVITATION. F = GmM R 2 GRAVITATION Name: Partner: Section: Date: PURPOSE: To explore the gravitational force and Kepler s Laws of Planetary motion. INTRODUCTION: Newton s law of Universal Gravitation tells us that the gravitational

More information

PH 120 Project # 2: Pendulum and chaos

PH 120 Project # 2: Pendulum and chaos PH 120 Project # 2: Pendulum and chaos Due: Friday, January 16, 2004 In PH109, you studied a simple pendulum, which is an effectively massless rod of length l that is fixed at one end with a small mass

More information

Outline for Today: Newton s Law of Universal Gravitation The Gravitational Field Orbital Motion Gravitational Potential Energy. Hello!

Outline for Today: Newton s Law of Universal Gravitation The Gravitational Field Orbital Motion Gravitational Potential Energy. Hello! PHY131H1F - Class 13 Outline for Today: Newton s Law of Universal Gravitation The Gravitational Field Orbital Motion Gravitational Potential Energy Under the Flower of Kent apple tree in the Woolsthorpe

More information

Lecture Outlines. Chapter 22. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc.

Lecture Outlines. Chapter 22. Astronomy Today 8th Edition Chaisson/McMillan Pearson Education, Inc. Lecture Outlines Chapter 22 Astronomy Today 8th Edition Chaisson/McMillan Chapter 22 Neutron Stars and Black Holes Units of Chapter 22 22.1 Neutron Stars 22.2 Pulsars 22.3 Neutron-Star Binaries 22.4 Gamma-Ray

More information

LAB 2: INTRODUCTION TO MOTION

LAB 2: INTRODUCTION TO MOTION Lab 2 - Introduction to Motion 3 Name Date Partners LAB 2: INTRODUCTION TO MOTION Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise Objectives To explore how various motions are represented

More information

/. 3D. a very abstract sort of problem, this research is a step on the way to applicable knowledge.

/. 3D. a very abstract sort of problem, this research is a step on the way to applicable knowledge. /. 3D Corwin Atwood-Stone Physics Department, The College of Wooster, Wooster, Ohio 691, USA (Dated: May 7, 009) A simulation of the mutual orbital motion of a point and a stick of equal masses in three

More information

Numerical Techniques for Computing Orbits

Numerical Techniques for Computing Orbits Astrodynamics ASD3: Numerical Techniques for Computing Orbits By Prof. Gregory D. Durgin In this lecture, we present a method for computing the trajectories of satellites around planets or stars with a

More information

Physical Science Astronomy: Eclipses

Physical Science Astronomy: Eclipses a place of mind F A C U L T Y O F E D U C A T I O N Department of Curriculum and Pedagogy Physical Science Astronomy: Eclipses Science and Mathematics Education Research Group Supported by UBC Teaching

More information

Physic 602 Conservation of Momentum. (Read objectives on screen.)

Physic 602 Conservation of Momentum. (Read objectives on screen.) Physic 602 Conservation of Momentum (Read objectives on screen.) Good. You re back. We re just about ready to start this lab on conservation of momentum during collisions and explosions. In the lab, we

More information

Gravitation & Kepler s Laws

Gravitation & Kepler s Laws Gravitation & Kepler s Laws What causes YOU to be pulled down to the surface of the earth? THE EARTH.or more specifically the EARTH S MASS. Anything that has MASS has a gravitational pull towards it. F

More information

Newton's Laws. Before Isaac Newton

Newton's Laws. Before Isaac Newton Newton's Laws Before Isaac Newton Newton's Laws There were facts and laws about the way the physical world worked, but no explanations After Newton There was a unified system that explained those facts

More information

GraspIT Questions AQA GCSE Physics Space physics

GraspIT Questions AQA GCSE Physics Space physics A. Solar system: stability of orbital motions; satellites (physics only) 1. Put these astronomical objects in order of size from largest to smallest. (3) Fill in the boxes in the correct order. the Moon

More information

Physics 12. Unit 5 Circular Motion and Gravitation Part 2

Physics 12. Unit 5 Circular Motion and Gravitation Part 2 Physics 12 Unit 5 Circular Motion and Gravitation Part 2 1. Newton s law of gravitation We have seen in Physics 11 that the force acting on an object due to gravity is given by a well known formula: F

More information

Topic 6: Circular motion and gravitation 6.2 Newton s law of gravitation

Topic 6: Circular motion and gravitation 6.2 Newton s law of gravitation Topic 6: Circular motion and gravitation 6.2 Newton s law of gravitation Essential idea: The Newtonian idea of gravitational force acting between two spherical bodies and the laws of mechanics create a

More information

Modern Physics notes Paul Fendley Lecture 34. Born, chapter III (most of which should be review for you), chapter VII

Modern Physics notes Paul Fendley Lecture 34. Born, chapter III (most of which should be review for you), chapter VII Modern Physics notes Paul Fendley fendley@virginia.edu Lecture 34 General Relativity Born, chapter III (most of which should be review for you), chapter VII Fowler, Remarks on General Relativity Ashby

More information

Investigating the Solar System

Investigating the Solar System Investigating the Solar System This Workbook belongs to: Our Local Star: The Sun Location in The Solar System Interesting Facts 1. 2. 3. 4. Name of Star: THE SUN 5. Draw and Color your own Sun in the blank

More information

Our Place in the Universe (Chapter 1) The Structure and Size of the Universe

Our Place in the Universe (Chapter 1) The Structure and Size of the Universe Our Place in the Universe (Chapter 1) The Structure and Size of the Universe Based on Chapter 1 This material will be useful for understanding Chapters 2, 3, and 13 on Years, Seasons, and Months, The Orbits

More information

I. Introduction. II. An Introduction to Starry Night NAME: ORBITAL MOTION

I. Introduction. II. An Introduction to Starry Night NAME: ORBITAL MOTION NAME: ORBITAL MOTION What will you learn in this Lab? You will be using some special software to simulate the motion of planets in our Solar System and across the night sky. You will be asked to try and

More information

Big Bang, Black Holes, No Math

Big Bang, Black Holes, No Math ASTR/PHYS 109 Dr. David Toback Lectures 10, 11 & 12 1 Prep For Today (is now due) L12 Reading: (BBBHNM Unit 2) Pre-Lecture Reading Questions: If you were misgraded, need help or an extension let me know

More information

Astronomy 104: Stellar Astronomy

Astronomy 104: Stellar Astronomy Astronomy 104: Stellar Astronomy Lecture 5: Observing is the key... Brahe and Kepler Spring Semester 2013 Dr. Matt Craig 1 For next time: Read Slater and Freedman 3-5 and 3-6 if you haven't already. Focus

More information

Gravitation -- Conceptual Solutions

Gravitation -- Conceptual Solutions Gravitation Gravitation -- Conceptual Solutions 1.) It is the gravitational attraction between the moon and the oceans that causes the bulge we associate with high tide. So why do we observe two high tides

More information

When you walk around, you are stuck to the ground. You can jump up. You always come back down. Why is this?

When you walk around, you are stuck to the ground. You can jump up. You always come back down. Why is this? Gravity When you walk around, you are stuck to the ground. You can jump up. You always come back down. Why is this? Isaac Newton was a scientist. He saw that planets go around the sun. He saw how things

More information

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests:

One sided tests. An example of a two sided alternative is what we ve been using for our two sample tests: One sided tests So far all of our tests have been two sided. While this may be a bit easier to understand, this is often not the best way to do a hypothesis test. One simple thing that we can do to get

More information

AST1100 Lecture Notes

AST1100 Lecture Notes AST1100 Lecture Notes 5 The virial theorem 1 The virial theorem We have seen that we can solve the equation of motion for the two-body problem analytically and thus obtain expressions describing the future

More information

PHYS 106 Fall 2151 Homework 3 Due: Thursday, 8 Oct 2015

PHYS 106 Fall 2151 Homework 3 Due: Thursday, 8 Oct 2015 PHYS 106 Fall 2151 Homework 3 Due: Thursday, 8 Oct 2015 When you do a calculation, show all your steps. Do not just give an answer. You may work with others, but the work you submit should be your own.

More information

Classical mechanics: conservation laws and gravity

Classical mechanics: conservation laws and gravity Classical mechanics: conservation laws and gravity The homework that would ordinarily have been due today is now due Thursday at midnight. There will be a normal assignment due next Tuesday You should

More information

Gravity and Spacetime: Why do things fall?

Gravity and Spacetime: Why do things fall? Gravity and Spacetime: Why do things fall? A painless introduction to Einstein s theory of space, time and gravity David Blair University of WA Abstract I present a simple description of Einstein s theory

More information

Unit 3 Lesson 2 Gravity and the Solar System. Copyright Houghton Mifflin Harcourt Publishing Company

Unit 3 Lesson 2 Gravity and the Solar System. Copyright Houghton Mifflin Harcourt Publishing Company Florida Benchmarks SC.8.N.1.4 Explain how hypotheses are valuable if they lead to further investigations, even if they turn out not to be supported by the data. SC.8.N.1.5 Analyze the methods used to develop

More information

A study on the elliptical orbit of Europa when leaving Earth: is the strength of the ellipse a complication or negligible?

A study on the elliptical orbit of Europa when leaving Earth: is the strength of the ellipse a complication or negligible? A study on the elliptical orbit of Europa when leaving Earth: is the strength of the ellipse a complication or negligible? Simon de Regt Objective Europa simon.deregt@wur.nl Benjamin Schoemaker Objective

More information

Figure 1: Doing work on a block by pushing it across the floor.

Figure 1: Doing work on a block by pushing it across the floor. Work Let s imagine I have a block which I m pushing across the floor, shown in Figure 1. If I m moving the block at constant velocity, then I know that I have to apply a force to compensate the effects

More information

2010 Pearson Education, Inc. Chapter 4 Making Sense of the Universe: Understanding Motion, Energy, and Gravity

2010 Pearson Education, Inc. Chapter 4 Making Sense of the Universe: Understanding Motion, Energy, and Gravity Chapter 4 Making Sense of the Universe: Understanding Motion, Energy, and Gravity 4.1 Describing Motion: Examples from Daily Life Some of the topics we will explore: How do we describe motion? (Speed,

More information

CHAPTER 7 GRAVITATION

CHAPTER 7 GRAVITATION Physics Approximate Timeline Students are expected to keep up with class work when absent. CHAPTER 7 GRAVITATION Day Plans for the day Assignments for the day 1 7.1 Planetary Motion & Gravitation Assignment

More information

Episode 403: Orbital motion

Episode 403: Orbital motion Episode 40: Orbital motion In this episode, students will learn how to combine concepts learned in the study of circular motion with Newton s Law of Universal Gravitation to understand the (circular) motion

More information

NAME: PERIOD: DATE: ECCENTRICITY OF PLANETARY ORBITS INTRODUCTION

NAME: PERIOD: DATE: ECCENTRICITY OF PLANETARY ORBITS INTRODUCTION NAME: PERIOD: DATE: PARTNERS: Lab # ECCENTRICITY OF PLANETARY ORBITS INTRODUCTION INTRODUCTION Our sun is not exactly in the center of the orbits of the planets, and therefore the planetary orbits are

More information

Mr Green sees the shorter, straight, green path and Mr. Red sees the longer, curved, red path.

Mr Green sees the shorter, straight, green path and Mr. Red sees the longer, curved, red path. Mr Green sees the shorter, straight, green path and Mr. Red sees the longer, curved, red path. In an accelerated frame, time runs slow compared to a non-accelerated frame. The Equivalence Principle tells

More information

Lecture Presentation. Chapter 6 Preview Looking Ahead. Chapter 6 Circular Motion, Orbits, and Gravity

Lecture Presentation. Chapter 6 Preview Looking Ahead. Chapter 6 Circular Motion, Orbits, and Gravity Chapter 6 Preview Looking Ahead Lecture Presentation Chapter 6 Circular Motion, Orbits, and Gravity Text: p. 160 Slide 6-2 Chapter 6 Preview Looking Back: Centripetal Acceleration In Section 3.8, you learned

More information

Exoplanets detection and properties

Exoplanets detection and properties Researching Physics Higher Researching Physics Contents Advice to students Page 3 Page 4 Page 5 Overview of the unit and activities Organising your work and carrying out the activities Assessment issues

More information

Earth/matriX SCIENCE TODAY. The Sun Earth Moon Relation: Polar/Mean/Equatorial Diameters and Circumferences

Earth/matriX SCIENCE TODAY. The Sun Earth Moon Relation: Polar/Mean/Equatorial Diameters and Circumferences Earth/matriX SCIENCE TODAY The Sun Earth Moon Relation: Polar/Mean/Equatorial Diameters and Circumferences By Charles William Johnson 2014 A Commentary When astronomers say that the Sun is 400 times larger

More information

Why is the Milky Way Flat?

Why is the Milky Way Flat? Why is the Milky Way Flat? Why the Flattening? Analogous question: why is the solar system flat? Could the same reason, whatever it is, be responsible for the flattened Milky Way? Ordered Motion The Solar

More information

The Revolution of the Moons of Jupiter

The Revolution of the Moons of Jupiter The Revolution of the Moons of Jupiter Overview: During this lab session you will make use of a CLEA (Contemporary Laboratory Experiences in Astronomy) computer program generously developed and supplied

More information

PS 224: Astronomy Fall Midterm (October 16, 2014)

PS 224: Astronomy Fall Midterm (October 16, 2014) PS 224: Astronomy Fall 2014 Midterm (October 16, 2014) Name: Solutions Time: 1:1 hrs Feel free to use equations and figures if you think they would be useful. Calculators are not needed. If you use the

More information

Gravity and Coulomb s Law

Gravity and Coulomb s Law AP PHYSICS 1 Gravity and Coulomb s Law 016 EDITION Click on the following link or scan the QR code to complete the evaluation for the Study Session https://www.surveymonkey.com/r/s_sss Copyright 016 National

More information

Space and Time Before Einstein. The Problem with Light. Admin. 11/2/17. Key Concepts: Lecture 28: Relativity

Space and Time Before Einstein. The Problem with Light. Admin. 11/2/17. Key Concepts: Lecture 28: Relativity Admin. 11/2/17 1. Class website http://www.astro.ufl.edu/~jt/teaching/ast1002/ 2. Optional Discussion sections: Tue. ~11.30am (period 5), Bryant 3; Thur. ~12.30pm (end of period 5 and period 6), start

More information

MATH 18.01, FALL PROBLEM SET # 8

MATH 18.01, FALL PROBLEM SET # 8 MATH 18.01, FALL 01 - PROBLEM SET # 8 Professor: Jared Speck Due: by 1:45pm on Tuesday 11-7-1 (in the boxes outside of Room -55 during the day; stick it under the door if the room is locked; write your

More information

GraspIT Questions AQA GCSE Physics Space physics

GraspIT Questions AQA GCSE Physics Space physics A. Solar system: stability of orbital motions; satellites (physics only) 1. Put these astronomical objects in order of size from largest to smallest. (3) Fill in the boxes in the correct order. the Moon

More information

LAB PHYSICS MIDTERM EXAMINATION STUDY GUIDE

LAB PHYSICS MIDTERM EXAMINATION STUDY GUIDE Freehold Regional High School District 2011-12 LAB PHYSICS MIDTERM EXAMINATION STUDY GUIDE About the Exam The Lab Physics Midterm Examination consists of 32 multiple choice questions designed to assess

More information

Gravitation. Objectives. The apple and the Moon. Equations 6/2/14. Describe the historical development of the concepts of gravitational force.

Gravitation. Objectives. The apple and the Moon. Equations 6/2/14. Describe the historical development of the concepts of gravitational force. Gravitation Objectives Describe the historical development of the concepts of gravitational force. Describe and calculate how the magnitude of the gravitational force between two objects depends on their

More information

PHYSICS 107. Lecture 27 What s Next?

PHYSICS 107. Lecture 27 What s Next? PHYSICS 107 Lecture 27 What s Next? The origin of the elements Apart from the expansion of the universe and the cosmic microwave background radiation, the Big Bang theory makes another important set of

More information

Gravity & The Distances to Stars. Lecture 8. Homework 2 open Exam on Tuesday in class bring ID and #2 pencil

Gravity & The Distances to Stars. Lecture 8. Homework 2 open Exam on Tuesday in class bring ID and #2 pencil 1 Gravity & The Distances to Stars Lecture 8 Homework 2 open Exam on Tuesday in class bring ID and #2 pencil 2 Preparing for the Exam 1 Exams in this class are multiple choice, but the questions can be

More information

7.1 Interacting Systems p Action/reaction pairs p Newton s Third Law p Ropes and Pulleys p.

7.1 Interacting Systems p Action/reaction pairs p Newton s Third Law p Ropes and Pulleys p. 7.1 Interacting Systems p. 183-185 7.2 Action/reaction pairs p. 185-189 7.3 Newton s Third Law p. 189-194 7.4 Ropes and Pulleys p. 194-198 7.5 Interacting-system Problems p. 198-202 1 7.1 Interacting Systems

More information

Motion, Energy, and Gravity. Reminder to take out your clicker and turn it on!

Motion, Energy, and Gravity. Reminder to take out your clicker and turn it on! Motion, Energy, and Gravity Reminder to take out your clicker and turn it on! Attendance Quiz Are you here today? Here! (a) yes (b) no (c) Opening Day is here! x Clickers I have not been able to download

More information

12-Feb-18. Newton's Laws. Newton's Laws. Prelude to Newton's Laws

12-Feb-18. Newton's Laws. Newton's Laws. Prelude to Newton's Laws Newton's Laws Newton's Laws Before Isaac Newton There were facts and laws about the way the physical world worked, but no explanations After Newton There was a unified system that explained those facts

More information

A100H Exploring the Universe: Evolution of Galaxies. Martin D. Weinberg UMass Astronomy

A100H Exploring the Universe: Evolution of Galaxies. Martin D. Weinberg UMass Astronomy A100H Exploring the Universe: Evolution of Galaxies Martin D. Weinberg UMass Astronomy astron100h-mdw@courses.umass.edu April 12, 2016 Read: Chaps 20, 21 04/12/16 slide 1 Remainder of the semester: Chaps.

More information

Making Sense of the Universe (Chapter 4) Why does the Earth go around the Sun? Part, but not all, of Chapter 4

Making Sense of the Universe (Chapter 4) Why does the Earth go around the Sun? Part, but not all, of Chapter 4 Making Sense of the Universe (Chapter 4) Why does the Earth go around the Sun? Part, but not all, of Chapter 4 Based on part of Chapter 4 This material will be useful for understanding Chapters 8 and 11

More information

13-Feb-19. Newton's Laws. Newton's Laws. Prelude to Newton's Laws

13-Feb-19. Newton's Laws. Newton's Laws. Prelude to Newton's Laws Newton's Laws 1 Newton's Laws Before Isaac Newton There were facts and laws about the way the physical world worked, but no explanations After Newton There was a unified system that explained those facts

More information

AP Statistics. Chapter 6 Scatterplots, Association, and Correlation

AP Statistics. Chapter 6 Scatterplots, Association, and Correlation AP Statistics Chapter 6 Scatterplots, Association, and Correlation Objectives: Scatterplots Association Outliers Response Variable Explanatory Variable Correlation Correlation Coefficient Lurking Variables

More information

Astronomy 102: Stars and Galaxies Examination 1 February 3, 2003

Astronomy 102: Stars and Galaxies Examination 1 February 3, 2003 Name: Astronomy 102: Stars and Galaxies Examination 1 February 3, 2003 Do not open the test until instructed to begin. Instructions: Write your answers in the space provided. If you need additional space,

More information

Let's first discuss the period and frequency for circular motion: period T: amount of time needed to complete one revolution (unit: s, min, h, etc.

Let's first discuss the period and frequency for circular motion: period T: amount of time needed to complete one revolution (unit: s, min, h, etc. Chapter 5: Dynamics of Uniform Circular Motion Tuesday, September 17, 2013 10:00 PM Rotational kinematics We'll discuss the basics of rotational kinematics in this chapter; the kinematics equations for

More information

Standards Alignment... 5 Safe Science... 9 Scienti c Inquiry Assembling Rubber Band Books...15

Standards Alignment... 5 Safe Science... 9 Scienti c Inquiry Assembling Rubber Band Books...15 Standards Alignment... 5 Safe Science... 9 Scienti c Inquiry... 11 Assembling Rubber Band Books...15 Earth in Space and Time The Scoop on Stars...17 Telescopes...19 Magnify the Sky...21 Star Samples...27

More information

Today. Review. Momentum and Force Consider the rate of change of momentum. What is Momentum?

Today. Review. Momentum and Force Consider the rate of change of momentum. What is Momentum? Today Announcements: HW# is due Wednesday 8:00 am. HW#3 will be due Wednesday Feb.4 at 8:00am Review and Newton s 3rd Law Gravity, Planetary Orbits - Important lesson in how science works and how ultimately

More information

Nibiru Is Not Here Yet

Nibiru Is Not Here Yet Nibiru Is Not Here Yet The title says it all. Do not be fooled, any photos of the sun that show a bright object near to the sun is either a lens artifact caused by internal reflection of light in the camera

More information

Name and Student ID Section Day/Time:

Name and Student ID Section Day/Time: AY2 - Overview of the Universe - Midterm #1 - Instructor: Maria F. Duran Name and Student ID Section Day/Time: 1) Imagine we ve discovered a planet orbiting another star at 1 AU every 6 months. The planet

More information

A100 Exploring the Universe: Black holes. Martin D. Weinberg UMass Astronomy

A100 Exploring the Universe: Black holes. Martin D. Weinberg UMass Astronomy A100 Exploring the Universe: Black holes Martin D. Weinberg UMass Astronomy weinberg@astro.umass.edu October 30, 2014 Read: S2, S3, Chap 18 10/30/14 slide 1 Sizes of s The solar neighborhood visualized!

More information

Lesson 36: Satellites

Lesson 36: Satellites Lesson 36: Satellites In our modern world the world satellite almost always means a human made object launched into orbit around the Earth for TV or phone communications. This definition of satellites

More information

Course evaluations. Go to the Physics and Astronomy Department website. Click on Online Course Evaluation link

Course evaluations. Go to the Physics and Astronomy Department website.  Click on Online Course Evaluation link Course evaluations. Go to the Physics and Astronomy Department website. www.pa.uky.edu Click on Online Course Evaluation link Link is open now. Do it soon. The nearest stars to the Sun. Barnard s Star

More information

ASTRO 114 Lecture Okay. We re now gonna continue discussing and conclude discussing the entire

ASTRO 114 Lecture Okay. We re now gonna continue discussing and conclude discussing the entire ASTRO 114 Lecture 55 1 Okay. We re now gonna continue discussing and conclude discussing the entire universe. So today we re gonna learn about everything, everything that we know of. There s still a lot

More information

Collision Finding for Particles on Non-linear Paths

Collision Finding for Particles on Non-linear Paths Collision Finding for Particles on Non-linear Paths Abstract For many N-body hard-sphere collisional simulations particle trajectories can not be assumed to be linear for the purposes of collision detection.

More information

Gravity and Orbits. 1. Choose the picture you think shows the gravity forces on the Earth and the Sun.

Gravity and Orbits. 1. Choose the picture you think shows the gravity forces on the Earth and the Sun. Name: Grade: Gravity and Orbits Pre-lab 1. Choose the picture you think shows the gravity forces on the Earth and the Sun. (a longer arrow to represents a big force, and a shorter arrow represent a smaller

More information

Gravity and Orbits Activity Page 1. Name: Grade: Gravity and Orbits. Pre-lab. 1. In the picture below, draw how you think Earth moves.

Gravity and Orbits Activity Page 1. Name: Grade: Gravity and Orbits. Pre-lab. 1. In the picture below, draw how you think Earth moves. Name: Grade: Gravity and Orbits Pre-lab 1. In the picture below, draw how you think Earth moves. 2. Draw a picture using arrows to show what you think the forces might be on the Earth and the Sun. You

More information

Classification of Galaxies

Classification of Galaxies Name: Partner(s): 1102 or 3311: Desk # Date: Classification of Galaxies Purpose Study and classify galaxies Learn how to measure their distance, mass and radius. Equipment Pictures from online lab manual

More information

End-of-Chapter Exercises

End-of-Chapter Exercises End-of-Chapter Exercises Exercises 1 12 are primarily conceptual questions that are designed to see if you have understood the main concepts of the chapter. Treat all balls with mass as point masses. 1.

More information

Physics 10 Summer Midterm #1: You Are a Dog. Name:

Physics 10 Summer Midterm #1: You Are a Dog. Name: Physics 10 Summer 2015 Midterm #1: You Are a Dog. Name: All dog pictures in this exam are (c) Allison Brosh, www.hyperboleandahalf.com She is an awesome writer, and her dogs are fairly awesome too. You

More information

Astronomy 1143 Final Exam Review Answers

Astronomy 1143 Final Exam Review Answers Astronomy 1143 Final Exam Review Answers Prof. Pradhan April 24, 2015 What is Science? 1. Explain the difference between astronomy and astrology. 2. What number is the metric system based around? What

More information

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph CHAPTER 6 VECTOR CALCULUS We ve spent a lot of time so far just looking at all the different ways you can graph things and describe things in three dimensions, and it certainly seems like there is a lot

More information

If you have received these materials as examination copies free of charge, Harcourt

If you have received these materials as examination copies free of charge, Harcourt Photo Credits: Cover: Earth Imaging/Getty Images; 2 John Chumack/Photo Researchers, Inc.; 3 StockTrek/Photodisc/Getty Images; 4 Yang Liu/Corbis; 5 Scenics of America/PhotoLink/Photodisc/Getty Images; 7

More information