2. This system of two second-order differential equations can be simplified to a system of four first-order differential equations by introducing two

Size: px
Start display at page:

Download "2. This system of two second-order differential equations can be simplified to a system of four first-order differential equations by introducing two"

Transcription

1 UPPSALA UNIVERSITET Inst. för informationsteknologi Avd. för teknisk databehandling Jonas Nilsson Tekniska beräkningar EI1 Miniprojekt: ODE De uppgifter som beskrivs nedan har karaktären av (förhoppningsvis inspirerande) undersökning. Betoningen ligger mindre på programmering och mera på experimenterande, med syftet att du skall fördjupa din förståelse av de numeriska problemställningarna. Uppgiften är hämtad ur kompendiet Notes on Numerical Computing (av M. Overton, C. Paige och M. Thuné) och därför formulerad på engelska. Frågeställning This question concerns the motion of a satellite around the sun: the satellite could be a planet, a comet or an unpowered spacecraft, whose mass is assumed to be negligible compared with the mass of the sun. The motion of such a satellite takes place in a plane, so we can describe its coordinates by just two space dimensions x and y. Assume that the sun is at the origin, (0; 0). The system of differential equations describing the satellite's motion is Newton's law of gravitation, discovered by Newton in the late 17th century, namely x 00 x = k ( px 2 + y 2 ) 3 y 00 y = k ( px 2 + y 2 ) 3 : This shows how the acceleration of the satellite depends on its position with respect to the sun. The constant k depends on the choice of distance units that we make: let us assume that the units of distance are chosen so that k =1. Uppgifter 1. Suppose you double the distance the satellite is from the sun, that is you double both x and y. Does the acceleration x 00 and y 00 increase or decrease, and by what factor? The answer to this question explains why Newton's law of gravitation is called an inverse square law. 1

2 2. This system of two second-order differential equations can be simplified to a system of four first-order differential equations by introducing two new variables z = x 0 (t) (the velocity, or speed, of the satellite in the x space direction) and w = y 0 (t) (the velocity of the satellite in the y space direction). Write down this system of equations. (This trick is exactly the same as the trick for reducing the second-order differential equation for the mass suspended on a spring to a system of two first-order differential equations.) 3. Let us solve these differential equations in Matlab. Matlab does include tools for solving differential equations (type lookfor differential). One of these are used in 8. Here is the file satell.m, which we shall use as the basis for our solution. 1 % satell.m: 2 % plot the path of a satellite (a planet or a comet) 3 % in orbit around the Sun 4 % m-files needed: slope.m, euler.m 5 6 axis([ ]); % this is a good choice of axis 7 axis('square'); % makes circles look like circles. 8 plot(0,0,'g*'); % plot position of the sun 9 hold on; % hold plot for overwriting 10 t = 0; % initialize time to zero 11 x(1) = 4; % initial x space coordinate is 4 12 x(2) = 0; % initial y space coordinate is 0 13 x(3) = 0; % initial velocity in x direction is zero 14 x(4) = input('enter x(4), the velocity in y direction '); 15 tmax = input('enter tmax, the total simulated time '); 16 h = input('enter h, the the time step size '); 17 plot(x(1),x(2),'k*'); % plot initial (x,y) point 18 while t < tmax, 19 euler; % script file to take an Euler step 20 % WRITE A SCRIPT FILE FOR MIDPOINT EULER TOO: 21 % IT'S MUCH BETTER 22 plot(x(1),x(2),'k*'); % plot the new (x,y) point 23 hold on; 24 end; 25 hold off; % so subsequent plots will start fresh This script does most of the necessary work: read it carefully. It uses a 2

3 vector x to store the four variables x; y; z; w in x(1), x(2), x(3), x(4) respectively: thus the first two elements of x are the space coordinates x,y and the last two are the velocities x 0, y 0. The initial values are chosen to be: x =4, y =0, x 0 =0, and y 0, the velocity inthey direction, to be input by you, the user. The script file also prompts you for h, (the time step size) and tmax (the amount of simulated time to run the computation). The script needs two more Matlab files. Here is the first: % euler.m: script file to take one step of Euler's method % requires x ( a vector) and t, h (scalars) to be given x = x + h*slope(t,x); t = t + h; % x is a vector, so is slope(t,x) % t is a scalar (time) The second file needed by satell.m is slope.m, a function file which you must write. The first line should be function s = slope(t,x), and it should assign values to s(1),..., s(4) which are the values of the derivatives of the four variables x(1),...x(4) in terms of the current values x(1),...,x(4), using the formulas you worked out to answer the previous question. (The variable t should be ignored by the slope function since the derivatives depend only on x, not on t.) Using the input parameters mentioned above, the satell script should plot some sort of approximate orbit. If you make h too small, the program will take too long to run, but if you make h too large, it will give a very inaccurate orbit, so you need to experiment with h. You also need to experiment with the initial value of y 0 = x(4), the velocity in the y direction: if this is too large, the satellite will fly off into outer space, but if the velocity is too small, the satellite will fall into the sun. Experiment until you find values which take the satellite around the sun in an orbit which is approximately a circle, ending up approximately where it started. The satellite will not return exactly to where it started, because Euler's method is not very accurate. If you are not able to find initial values for which the satellite goes around the sun, you probably have the equations specified wrong in slope.m. 4. To make the orbit close up properly, with the satellite returning where it started, you could either reduce h or use midpoint Euler instead of Euler's method. The program takes a long time to run if h is too small, so write a script file mideuler.m which performs one step of midpoint Euler instead of Euler's method. Note that euler.m is extremely simple since it operates on the vector of four variables all at once: midpoint Euler is not much 3

4 more complicated. Once you have done this correctly, you will find that satell.m plots a nearly perfect orbit. 5. Now experiment with values of y 0 which are a little larger than the value which gives you a circular orbit. You should see the satellite traveling along the path of an ellipse. The sun is at one of the two focal points of the ellipse. The fact that planets and comets have elliptical orbits was observed by Kepler in the early 17th century, but it was not explained until Newton developed his law of gravitation 60 years later. The eccentricity " of the ellipse can be defined as " p 1» 2, where» large diameter=small diameter. Thus " = 0 corresponds to» = 1, a circle (having zero eccentricity ). As " % 1, the ellipse becomes more elongated (eccentric). From the more general description of a conic section, " = 1corresponds to a parabolic path, and " >1 ahyperbolic path. The eccentricity of the ellipse depends on the size of the initial velocity y 0. The orbits of planets, such as the Earth, are typically not very eccentric, in fact they look almost like circles. But the orbits of comets, such as Halley's comet, can be very eccentric. That is why Halley's comet can be seen from the Earth only once every 76 years: the rest of the time it is very far from the sun traveling around its highly eccentric orbit. 6. Now experiment with larger values for y 0. If you make the initial value for y 0 large enough, the orbit becomes a hyperbola, with the satellite approaching the direction of a straight line heading right out of the solar system; in this case the satellite escapes the gravitational attraction of the sun. Many comets pass through the solar system on hyperbolic orbits: they enter the solar system, pass by the sun once and then leave the solar system again. Only one spacecraft launched from Earth has ever left the solar system on a hyperbolic orbit: that is Voyager II, which was launched in the late 1970's, flew by Uranus in 1986, and is now on the way out of the solar system, never to return. The borderline case between elliptical and hyperbolic orbits is when y 0 is exactly equal to the escape velocity: the value just large enough for the satellite to escape from the solar system. In this case the orbit is actually a parabola, which is the borderline case" between an ellipse and a hyperbola. (In Jules Verne's book, From Earth to Moon, two characters are arguing about whether they are on a parabolic or a hyperbolic path, while the third, who is less scientific, is horrified to realize that they are doomed in either case.) 7. Now experiment with smaller initial values for y 0. You will find that as you decrease y 0 below the value giving the circular orbit, the orbit again 4

5 becomes an ellipse, with smaller values for y 0 taking the satellite closer to the sun. If you make the initial value for y 0 too small, the satellite passes so close to the sun that the discrete approximation becomes unstable and the satellite appears to swing off out of the solar system. This is a result of discretization, not a physical behavior. (If you make h small enough you can eliminate this instability, but it will take too long to wait for the plot. A better idea would be to implement a more accurate method, see 8.) 8. Now compare your previous results with MATLAB:s ODE-solver ode45. Change row in satell.m to: 16 % solve the ode for the time t <= tmax 17 [T,X] = ode45( 'slope', [t, tmax], x ); 18 % plot the path of the satellite 19 plot( X(:,1), X(:,2), 'k*' ); In order to make MATLAB:s ODE-solver ode45 to work properly, you have to change the function slope to return a column vector, i.e. add the following line s = s'; in the end of the file slope.m. Extra uppgift för dig som blivit inspirerad Write an adaptive Euler's method for solving a differential equation. The idea is similar to that in the adaptive integration computer assignment, except that it cannot be implemented recursively, since the differential equation is solved starting at t =0and continuing from there. But the idea of estimating the error is the same. You try an Euler step with size h, and two Euler steps with size h=2, and compare the results. The difference in x is the error estimate. Suppose we want the error estimate to be approximately ffl. If it is larger than ffl, then reduce the step size h by a factor of 2 and try again. Once the error estimate is smaller than (or equal to) ffl, the method can go on to the next step. But, if the error is smaller than ffl=10, then increase h by 2forthenext step, since we don't want h to get unnecessarily small. Use this to solve the gravitation equations with the same conditions as given before, for two different values of the initial y velocity: ffl One which is close to the ellipse hyperbola borderline. This will give you a really big ellipse so you can't get very close to the borderline value! 5

6 ffl One which gives you an eccentric ellipse, where the satellite passes close to the sun, and for which the ordinary Euler method is unstable. How eccentric an ellipse can you solve? Redovisning Arbetet skall redovisas i samband med det avslutande seminariet. Alla grupper skall redovisa, även om man inte lyckats lösa uppgifterna helt. Redovisningen består av två delar, en skriftlig och en muntlig. Normalt kommer två till tre grupper att få redovisa muntligt vid varje seminarium. Schema för de muntliga redovisningarna utdelas separat. Den skriftliga redovisningen, som alla grupper skall lämna, skall innehålla följande punkter med lämpliga rubriker: ffl En sammanfattande problembeskrivning om minst 7 10 rader. ffl Beskrivning av hur gruppen löst problemet. (Denna beskrivning får inte utgöras av programtexten, utan skall bestå av en förklaring av tillvägagångssätt och resonemang.) ffl Redovisning av resultat (grafer, tabeller, eller vad som kan vara lämpligt för den aktuella uppgiften). ffl Gruppens kommentarer till resultaten. Försök om möjligt ge teoretiska förklaringar till dem. Peka också på sådant som gruppen tycker verkar konstigt, intressant, värt att få närmare belyst, etc. ffl Om gruppen inte lyckats lösa uppgifterna skall man redovisa det arbete som ändå utförts och särskilt förklara vad det var man körde fast på. ffl Programlistor bifogas sist som bilagor. 6

Project: Vibration Damping

Project: Vibration Damping Mekanik GK för I (FMEA10) 2018 Project: Vibration Damping Project team: Name: Personal id-number: Mekanik www.mek.lth.se. 1 Project: Vibration damping Project Specification 1. Introduction In this project

More information

Sample Solutions for Assignment 3.

Sample Solutions for Assignment 3. AMath 383, Autumn Sample Solutions for Assignment 3. Reading: Chs. 4-5.. Eercise 7 of Chapter 3. If $X is invested toda at 3% interest compounded continuousl, then in ears it will be worth Xe (.3 ) = Xe.6.

More information

Isaac Newton & Gravity

Isaac Newton & Gravity Isaac Newton & Gravity Isaac Newton was born in England in 1642 the year that Galileo died. Newton would extend Galileo s study on the motion of bodies, correctly deduce the form of the gravitational force,

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

Chapter 13. Gravitation

Chapter 13. Gravitation Chapter 13 Gravitation 13.2 Newton s Law of Gravitation Here m 1 and m 2 are the masses of the particles, r is the distance between them, and G is the gravitational constant. G =6.67 x10 11 Nm 2 /kg 2

More information

Lecture 8. Kepler's IInd: Angular Momentum

Lecture 8. Kepler's IInd: Angular Momentum Lecture 8 Gravity and Orbits Angular Momentum Deducing the Law of Gravity Escape Orbits Orbits: common misconceptions Feb 3, 2006 Astro 100 Lecture 8 1 Kepler's IInd: Angular Momentum Kepler's IInd: (motion

More information

Chapter 4. Motion and gravity

Chapter 4. Motion and gravity Chapter 4. Motion and gravity Announcements Labs open this week to finish. You may go to any lab section this week (most people done). Lab exercise 2 starts Oct 2. It's the long one!! Midterm exam likely

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

Gravity. The Universal Force

Gravity. The Universal Force Gravity The Universal Force Universal Gravitation What is gravity? Gravity makes things fall Gravity makes bubbles rise Gravity made the earth round, and makes the stars shine, but WHAT IS GRAVITY??? Universal

More information

1. For which values of the parameters α and β has the linear system. periodic solutions? Which are the values if the period equals 4π?

1. For which values of the parameters α and β has the linear system. periodic solutions? Which are the values if the period equals 4π? MÄLARDALEN UNIVERSITY School of Education, Culture and Communication Department of Applied Mathematics Examiner: Lars-Göran Larsson EXAMINATION IN MATHEMATICS MAA316 Differential Equations, foundation

More information

Orbit Characteristics

Orbit Characteristics Orbit Characteristics We have shown that the in the two body problem, the orbit of the satellite about the primary (or vice-versa) is a conic section, with the primary located at the focus of the conic

More information

Copyright 2008 Pearson Education, Inc., publishing as Pearson Addison-Wesley.

Copyright 2008 Pearson Education, Inc., publishing as Pearson Addison-Wesley. Chapter 13. Newton s Theory of Gravity The beautiful rings of Saturn consist of countless centimeter-sized ice crystals, all orbiting the planet under the influence of gravity. Chapter Goal: To use Newton

More information

106 : Fall Application of calculus to planetary motion

106 : Fall Application of calculus to planetary motion 106 : Fall 2004 Application of calculus to planetary motion 1. One of the greatest accomplishments of classical times is that of Isaac Newton who was able to obtain the entire behaviour of planetary bodies

More information

Gravity and the Orbits of Planets

Gravity and the Orbits of Planets Gravity and the Orbits of Planets 1. Gravity Galileo Newton Earth s Gravity Mass v. Weight Einstein and General Relativity Round and irregular shaped objects 2. Orbits and Kepler s Laws ESO Galileo, Gravity,

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

Introduction to Computer Graphics (Lecture No 07) Ellipse and Other Curves

Introduction to Computer Graphics (Lecture No 07) Ellipse and Other Curves Introduction to Computer Graphics (Lecture No 07) Ellipse and Other Curves 7.1 Ellipse An ellipse is a curve that is the locus of all points in the plane the sum of whose distances r1 and r from two fixed

More information

Gravitation and the Waltz of the Planets

Gravitation and the Waltz of the Planets Gravitation and the Waltz of the Planets Chapter Four Guiding Questions 1. How did ancient astronomers explain the motions of the planets? 2. Why did Copernicus think that the Earth and the other planets

More information

Gravitation and the Waltz of the Planets. Chapter Four

Gravitation and the Waltz of the Planets. Chapter Four Gravitation and the Waltz of the Planets Chapter Four Guiding Questions 1. How did ancient astronomers explain the motions of the planets? 2. Why did Copernicus think that the Earth and the other planets

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 D30 - Orbit Transfers

Lecture D30 - Orbit Transfers J. Peraire 16.07 Dynamics Fall 004 Version 1.1 Lecture D30 - Orbit Transfers In this lecture, we will consider how to transfer from one orbit, or trajectory, to another. One of the assumptions that we

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

Universal Gravitation

Universal Gravitation Universal Gravitation Newton s Law of Universal Gravitation Every particle in the Universe attracts every other particle with a force that is directly proportional to the product of their masses and inversely

More information

Chapter 12 Gravity. Copyright 2010 Pearson Education, Inc.

Chapter 12 Gravity. Copyright 2010 Pearson Education, Inc. Chapter 12 Gravity Units of Chapter 12 Newton s Law of Universal Gravitation Gravitational Attraction of Spherical Bodies Kepler s Laws of Orbital Motion Gravitational Potential Energy Energy Conservation

More information

A SIMULATION OF THE MOTION OF AN EARTH BOUND SATELLITE

A SIMULATION OF THE MOTION OF AN EARTH BOUND SATELLITE DOING PHYSICS WITH MATLAB A SIMULATION OF THE MOTION OF AN EARTH BOUND SATELLITE Download Directory: Matlab mscripts mec_satellite_gui.m The [2D] motion of a satellite around the Earth is computed from

More information

Gravitation and the Motion of the Planets

Gravitation and the Motion of the Planets Gravitation and the Motion of the Planets 1 Guiding Questions 1. How did ancient astronomers explain the motions of the planets? 2. Why did Copernicus think that the Earth and the other planets go around

More information

PHYS 101 Previous Exam Problems. Gravitation

PHYS 101 Previous Exam Problems. Gravitation PHYS 101 Previous Exam Problems CHAPTER 13 Gravitation Newton s law of gravitation Shell theorem Variation of g Potential energy & work Escape speed Conservation of energy Kepler s laws - planets Orbits

More information

Lecture 15 - Orbit Problems

Lecture 15 - Orbit Problems Lecture 15 - Orbit Problems A Puzzle... The ellipse shown below has one focus at the origin and its major axis lies along the x-axis. The ellipse has a semimajor axis of length a and a semi-minor axis

More information

11 Newton s Law of Universal Gravitation

11 Newton s Law of Universal Gravitation Physics 1A, Fall 2003 E. Abers 11 Newton s Law of Universal Gravitation 11.1 The Inverse Square Law 11.1.1 The Moon and Kepler s Third Law Things fall down, not in some other direction, because that s

More information

October 19, NOTES Solar System Data Table.notebook. Which page in the ESRT???? million km million. average.

October 19, NOTES Solar System Data Table.notebook. Which page in the ESRT???? million km million. average. Celestial Object: Naturally occurring object that exists in space. NOT spacecraft or man-made satellites Which page in the ESRT???? Mean = average Units = million km How can we find this using the Solar

More information

Chapter 13. Universal Gravitation

Chapter 13. Universal Gravitation Chapter 13 Universal Gravitation Planetary Motion A large amount of data had been collected by 1687. There was no clear understanding of the forces related to these motions. Isaac Newton provided the answer.

More information

Chapter 13: universal gravitation

Chapter 13: universal gravitation Chapter 13: universal gravitation Newton s Law of Gravitation Weight Gravitational Potential Energy The Motion of Satellites Kepler s Laws and the Motion of Planets Spherical Mass Distributions Apparent

More information

The Eccentricity Story

The Eccentricity Story The Eccentricity Story Introduction The concept of eccentricity, like the general equation A By Cy D Ey F = 0 is a unifying concept for the conic sections: circle, ellipse, parabola, and hyperbola. One

More information

December 16, Conic sections in real life.notebook

December 16, Conic sections in real life.notebook OCCURRENCE OF THE CONICS Mathematicians have a habit of studying, just for the fun of it, things that seem utterly useless; then centuries later their studies turn out to have enormous scientific value.

More information

Lecture Outline. Chapter 13 Gravity Pearson Education, Inc. Slide 13-1

Lecture Outline. Chapter 13 Gravity Pearson Education, Inc. Slide 13-1 Lecture Outline Chapter 13 Gravity Slide 13-1 The plan Lab this week: exam problems will put problems on mastering for chapters without HW; will also go over exam 2 Final coverage: now posted; some sections/chapters

More information

Orbital Mechanics Laboratory

Orbital Mechanics Laboratory Team: Orbital Mechanics Laboratory Studying the forces of nature the interactions between matter is the primary quest of physics. In this celestial experiment, you will measure the force responsible for

More information

9.6 PROPERTIES OF THE CONIC SECTIONS

9.6 PROPERTIES OF THE CONIC SECTIONS 9.6 Properties of the Conic Sections Contemporary Calculus 1 9.6 PROPERTIES OF THE CONIC SECTIONS This section presents some of the interesting and important properties of the conic sections that can be

More information

Observational Astronomy - Lecture 4 Orbits, Motions, Kepler s and Newton s Laws

Observational Astronomy - Lecture 4 Orbits, Motions, Kepler s and Newton s Laws Observational Astronomy - Lecture 4 Orbits, Motions, Kepler s and Newton s Laws Craig Lage New York University - Department of Physics craig.lage@nyu.edu February 24, 2014 1 / 21 Tycho Brahe s Equatorial

More information

Chapter 13. Gravitation

Chapter 13. Gravitation Chapter 13 Gravitation e = c/a A note about eccentricity For a circle c = 0 à e = 0 a Orbit Examples Mercury has the highest eccentricity of any planet (a) e Mercury = 0.21 Halley s comet has an orbit

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

Fysik 1 Kompendium: Del 2 Standard Modellen samt Ljus

Fysik 1 Kompendium: Del 2 Standard Modellen samt Ljus Fysik 1 Kompendium: Del 2 Standard Modellen samt Ljus Klass: Na2 Lärare: VT14 Relativitet: Heureka Kapitel 13 (s.282-291) samt Ergo 393-401 Formel Skriv ner här alla formel som du kommer i kontakt med

More information

4.3 Conservation Laws in Astronomy

4.3 Conservation Laws in Astronomy 4.3 Conservation Laws in Astronomy Our goals for learning: Why do objects move at constant velocity if no force acts on them? What keeps a planet rotating and orbiting the Sun? Where do objects get their

More information

Kepler, Newton, and laws of motion

Kepler, Newton, and laws of motion Kepler, Newton, and laws of motion First: A Little History Geocentric vs. heliocentric model for solar system (sec. 2.2-2.4)! The only history in this course is this progression: Aristotle (~350 BC) Ptolemy

More information

Copyright 2010 Pearson Education, Inc. GRAVITY. Chapter 12

Copyright 2010 Pearson Education, Inc. GRAVITY. Chapter 12 GRAVITY Chapter 12 Units of Chapter 12 Newton s Law of Universal Gravitation Gravitational Attraction of Spherical Bodies Kepler s Laws of Orbital Motion Gravitational Potential Energy Energy Conservation

More information

Celestial Mechanics II. Orbital energy and angular momentum Elliptic, parabolic and hyperbolic orbits Position in the orbit versus time

Celestial Mechanics II. Orbital energy and angular momentum Elliptic, parabolic and hyperbolic orbits Position in the orbit versus time Celestial Mechanics II Orbital energy and angular momentum Elliptic, parabolic and hyperbolic orbits Position in the orbit versus time Orbital Energy KINETIC per unit mass POTENTIAL The orbital energy

More information

Earth Science Unit 6: Astronomy Period: Date: Elliptical Orbits

Earth Science Unit 6: Astronomy Period: Date: Elliptical Orbits Earth Science Name: Unit 6: Astronomy Period: Date: Lab # 5 Elliptical Orbits Objective: To compare the shape of the earth s orbit (eccentricity) with the orbits of and with a circle. other planets Focus

More information

Questions Chapter 13 Gravitation

Questions Chapter 13 Gravitation Questions Chapter 13 Gravitation 13-1 Newton's Law of Gravitation 13-2 Gravitation and Principle of Superposition 13-3 Gravitation Near Earth's Surface 13-4 Gravitation Inside Earth 13-5 Gravitational

More information

PHYSICS. Chapter 13 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc.

PHYSICS. Chapter 13 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc. PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 13 Lecture RANDALL D. KNIGHT Chapter 13 Newton s Theory of Gravity IN THIS CHAPTER, you will learn to understand the motion of satellites

More information

Chapter 12 Gravity. Copyright 2010 Pearson Education, Inc.

Chapter 12 Gravity. Copyright 2010 Pearson Education, Inc. Chapter 12 Gravity Units of Chapter 12 Newton s Law of Universal Gravitation Gravitational Attraction of Spherical Bodies Kepler s Laws of Orbital Motion Gravitational Potential Energy Energy Conservation

More information

Gravity and Orbits. Objectives. Clarify a number of basic concepts. Gravity

Gravity and Orbits. Objectives. Clarify a number of basic concepts. Gravity Gravity and Orbits Objectives Clarify a number of basic concepts Speed vs. velocity Acceleration, and its relation to force Momentum and angular momentum Gravity Understand its basic workings Understand

More information

Particles in Motion; Kepler s Laws

Particles in Motion; Kepler s Laws CHAPTER 4 Particles in Motion; Kepler s Laws 4.. Vector Functions Vector notation is well suited to the representation of the motion of a particle. Fix a coordinate system with center O, and let the position

More information

N t ew on L s aws Monday, February 2

N t ew on L s aws Monday, February 2 Newton s Laws Monday, February Isaac Newton (1643-177): English Discovered: three laws of motion, one law of universal gravitation. Newton s great book: Newton s laws are universal in scope, and mathematical

More information

Rotational Motion and the Law of Gravity 1

Rotational Motion and the Law of Gravity 1 Rotational Motion and the Law of Gravity 1 Linear motion is described by position, velocity, and acceleration. Circular motion repeats itself in circles around the axis of rotation Ex. Planets in orbit,

More information

Chapter 5 Centripetal Force and Gravity. Copyright 2010 Pearson Education, Inc.

Chapter 5 Centripetal Force and Gravity. Copyright 2010 Pearson Education, Inc. Chapter 5 Centripetal Force and Gravity v Centripetal Acceleration v Velocity is a Vector v It has Magnitude and Direction v If either changes, the velocity vector changes. Tumble Buggy Demo v Centripetal

More information

18. Kepler as a young man became the assistant to A) Nicolaus Copernicus. B) Ptolemy. C) Tycho Brahe. D) Sir Isaac Newton.

18. Kepler as a young man became the assistant to A) Nicolaus Copernicus. B) Ptolemy. C) Tycho Brahe. D) Sir Isaac Newton. Name: Date: 1. The word planet is derived from a Greek term meaning A) bright nighttime object. B) astrological sign. C) wanderer. D) nontwinkling star. 2. The planets that were known before the telescope

More information

F = ma. G mm r 2. S center

F = ma. G mm r 2. S center In the early 17 th century, Kepler discovered the following three laws of planetary motion: 1. The planets orbit around the sun in an ellipse with the sun at one focus. 2. As the planets orbit around the

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

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

Chapter 10. Projectile and Satellite Motion

Chapter 10. Projectile and Satellite Motion Chapter 10 Projectile and Satellite Motion Which of these expresses a vector quantity? a. 10 kg b. 10 kg to the north c. 10 m/s d. 10 m/s to the north Which of these expresses a vector quantity? a. 10

More information

Projectile Motion. Conceptual Physics 11 th Edition. Projectile Motion. Projectile Motion. Projectile Motion. This lecture will help you understand:

Projectile Motion. Conceptual Physics 11 th Edition. Projectile Motion. Projectile Motion. Projectile Motion. This lecture will help you understand: Conceptual Physics 11 th Edition Projectile motion is a combination of a horizontal component, and Chapter 10: PROJECTILE AND SATELLITE MOTION a vertical component. This lecture will help you understand:

More information

Precalculus Conic Sections Unit 6. Parabolas. Label the parts: Focus Vertex Axis of symmetry Focal Diameter Directrix

Precalculus Conic Sections Unit 6. Parabolas. Label the parts: Focus Vertex Axis of symmetry Focal Diameter Directrix PICTURE: Parabolas Name Hr Label the parts: Focus Vertex Axis of symmetry Focal Diameter Directrix Using what you know about transformations, label the purpose of each constant: y a x h 2 k It is common

More information

AM 205 Final Project The N-Body Problem

AM 205 Final Project The N-Body Problem AM 205 Final Project The N-Body Problem Leah Birch Elizabeth Finn Karen Yu December 14, 2012 Abstract The N-Body Problem can be solved using a variety of numeric integrators. Newton s Law of Universal

More information

Conceptual Physics 11 th Edition

Conceptual Physics 11 th Edition Conceptual Physics 11 th Edition Chapter 10: PROJECTILE AND SATELLITE MOTION This lecture will help you understand: Projectile Motion Fast-Moving Projectiles Satellites Circular Satellite Orbits Elliptical

More information

Astronomy H161 An Introduction to Solar System Astronomy Winter Quarter 2009 Prof. Gaudi Homework #4. Due Monday, February 9 in class

Astronomy H161 An Introduction to Solar System Astronomy Winter Quarter 2009 Prof. Gaudi Homework #4. Due Monday, February 9 in class Name Astronomy H161 An Introduction to Solar System Astronomy Winter Quarter 2009 Prof. Gaudi Homework #4 No late homework will be accepted. Due Monday, February 9 in class Accurate measurements are required

More information

Gat ew ay T o S pace AS EN / AS TR Class # 19. Colorado S pace Grant Consortium

Gat ew ay T o S pace AS EN / AS TR Class # 19. Colorado S pace Grant Consortium Gat ew ay T o S pace AS EN / AS TR 2500 Class # 19 Colorado S pace Grant Consortium Announcements: - Launch Readiness Review Cards - 11 days to launch Announcements: - Launch Readiness Review Cards - 11

More information

Describing Motion. Newton Newton s Laws of Motion. Position Velocity. Acceleration. Key Concepts: Lecture 9

Describing Motion. Newton Newton s Laws of Motion. Position Velocity. Acceleration. Key Concepts: Lecture 9 Key Concepts: Lecture 9 Newton Newton s Laws of Motion More on Kepler s Laws Describing Motion Position Velocity Rate of change of position (speed & direction) 80 km/hr Acceleration 40 km/hr Rate of change

More information

Newton s Laws and the Nature of Matter

Newton s Laws and the Nature of Matter Newton s Laws and the Nature of Matter The Nature of Matter Democritus (c. 470-380 BCE) posited that matter was composed of atoms Atoms: particles that can not be further subdivided 4 kinds of atoms: earth,

More information

Today. Laws of Motion. Conservation Laws. Gravity. tides

Today. Laws of Motion. Conservation Laws. Gravity. tides Today Laws of Motion Conservation Laws Gravity tides Newton s Laws of Motion Our goals for learning: Newton s three laws of motion Universal Gravity How did Newton change our view of the universe? He realized

More information

Chapter 13 Gravity Pearson Education, Inc. Slide 13-1

Chapter 13 Gravity Pearson Education, Inc. Slide 13-1 Chapter 13 Gravity Slide 13-1 The plan Lab this week: there will be time for exam problems Final exam: sections posted today; some left out Final format: all multiple choice, almost all short problems,

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

Thursday is last Planetarium observing. Nighttime observing starts next week.

Thursday is last Planetarium observing. Nighttime observing starts next week. Homework #2 is due at 11:50am this Friday! Thursday is last Planetarium observing. Solar Observing is happening now! Check out webpage to see if it is canceled due to weather. Nighttime observing starts

More information

Gravity. Newton s Law of Gravitation Kepler s Laws of Planetary Motion Gravitational Fields

Gravity. Newton s Law of Gravitation Kepler s Laws of Planetary Motion Gravitational Fields Gravity Newton s Law of Gravitation Kepler s Laws of Planetary Motion Gravitational Fields Simulation Synchronous Rotation https://www.youtube.com/watch?v=ozib_l eg75q Sun-Earth-Moon System https://vimeo.com/16015937

More information

PHYSICS 12 NAME: Gravitation

PHYSICS 12 NAME: Gravitation NAME: Gravitation 1. The gravitational force of attraction between the Sun and an asteroid travelling in an orbit of radius 4.14x10 11 m is 4.62 x 10 17 N. What is the mass of the asteroid? 2. A certain

More information

Conceptual Physics Fundamentals

Conceptual Physics Fundamentals Conceptual Physics Fundamentals Chapter 6: GRAVITY, PROJECTILES, AND SATELLITES This lecture will help you understand: The Universal Law of Gravity The Universal Gravitational Constant, G Gravity and Distance:

More information

9/12/2010. The Four Fundamental Forces of Nature. 1. Gravity 2. Electromagnetism 3. The Strong Nuclear Force 4. The Weak Nuclear Force

9/12/2010. The Four Fundamental Forces of Nature. 1. Gravity 2. Electromagnetism 3. The Strong Nuclear Force 4. The Weak Nuclear Force The Four Fundamental Forces of Nature 1. Gravity 2. Electromagnetism 3. The Strong Nuclear Force 4. The Weak Nuclear Force The Universe is made of matter Gravity the force of attraction between matter

More information

Circular Motion PreTest

Circular Motion PreTest Circular Motion PreTest Date: 06/03/2008 Version #: 0 Name: 1. In a series of test runs, a car travels around the same circular track at different velocities. Which graph best shows the relationship between

More information

KEPLER S LAWS OF PLANETARY MOTION

KEPLER S LAWS OF PLANETARY MOTION KEPLER S LAWS OF PLANETARY MOTION In the early 1600s, Johannes Kepler culminated his analysis of the extensive data taken by Tycho Brahe and published his three laws of planetary motion, which we know

More information

Introduction To Modern Astronomy I

Introduction To Modern Astronomy I ASTR 111 003 Fall 2006 Lecture 03 Sep. 18, 2006 Introduction To Modern Astronomy I Introducing Astronomy (chap. 1-6) Planets and Moons (chap. 7-17) Ch1: Astronomy and the Universe Ch2: Knowing the Heavens

More information

Chapter 8 - Gravity Tuesday, March 24 th

Chapter 8 - Gravity Tuesday, March 24 th Chapter 8 - Gravity Tuesday, March 24 th Newton s law of gravitation Gravitational potential energy Escape velocity Kepler s laws Demonstration, iclicker and example problems We are jumping backwards to

More information

APS 1030 Astronomy Lab 79 Kepler's Laws KEPLER'S LAWS

APS 1030 Astronomy Lab 79 Kepler's Laws KEPLER'S LAWS APS 1030 Astronomy Lab 79 Kepler's Laws KEPLER'S LAWS SYNOPSIS: Johannes Kepler formulated three laws that described how the planets orbit around the Sun. His work paved the way for Isaac Newton, who derived

More information

Astro Lecture 12. Energy and Gravity (Cont d) 13/02/09 Habbal Astro Lecture 12 1

Astro Lecture 12. Energy and Gravity (Cont d) 13/02/09 Habbal Astro Lecture 12 1 Astro 110-01 Lecture 12 Energy and Gravity (Cont d) 13/02/09 Habbal Astro110-01 Lecture 12 1 Energy due to movement of Kinetic Energy: object E k = ½ m v 2 13/02/09 Habbal Astro110-01 Lecture 12 2 Gravitational

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

Astronomy Notes Chapter 02.notebook April 11, 2014 Pythagoras Aristotle geocentric retrograde motion epicycles deferents Aristarchus, heliocentric

Astronomy Notes Chapter 02.notebook April 11, 2014 Pythagoras Aristotle geocentric retrograde motion epicycles deferents Aristarchus, heliocentric Around 2500 years ago, Pythagoras began to use math to describe the world around him. Around 200 years later, Aristotle stated that the Universe is understandable and is governed by regular laws. Most

More information

Key Points: Learn the relationship between gravitational attractive force, mass and distance. Understand that gravity can act as a centripetal force.

Key Points: Learn the relationship between gravitational attractive force, mass and distance. Understand that gravity can act as a centripetal force. Lesson 9: Universal Gravitation and Circular Motion Key Points: Learn the relationship between gravitational attractive force, mass and distance. Understand that gravity can act as a centripetal force.

More information

Keplerian Orbits. If two otherwise isolated particles interact through a force law their trajectories can be

Keplerian Orbits. If two otherwise isolated particles interact through a force law their trajectories can be Keplerian Orbits 1 If two otherwise isolated particles interact through a force law their trajectories can be r reduced to conic sections. This is called Kepler s problem after Johannes Kepler who studied

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

Gravitational Fields Review

Gravitational Fields Review Gravitational Fields Review 2.1 Exploration of Space Be able to: o describe planetary motion using Kepler s Laws o solve problems using Kepler s Laws o describe Newton s Law of Universal Gravitation o

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

Steve Smith Tuition: Physics Notes

Steve Smith Tuition: Physics Notes Steve Smith Tuition: Physics Notes E = mc 2 F = GMm sin θ m = mλ d hν = φ + 1 2 mv2 Static Fields IV: Gravity Examples Contents 1 Gravitational Field Equations 3 1.1 adial Gravitational Field Equations.................................

More information

Unit 2: Forces Chapter 6: Systems in Motion

Unit 2: Forces Chapter 6: Systems in Motion Forces Unit 2: Forces Chapter 6: Systems in Motion 6.1 Motion in Two Dimension 6.2 Circular Motion 6.3 Centripetal Force, Gravitation, and Satellites 6.4 Center of Mass 6.1 Investigation: Launch Angle

More information

By; Jarrick Serdar, Michael Broberg, Trevor Grey, Cameron Kearl, Claire DeCoste, and Kristian Fors

By; Jarrick Serdar, Michael Broberg, Trevor Grey, Cameron Kearl, Claire DeCoste, and Kristian Fors By; Jarrick Serdar, Michael Broberg, Trevor Grey, Cameron Kearl, Claire DeCoste, and Kristian Fors What is gravity? Gravity is defined as the force of attraction by which terrestrial bodies tend to fall

More information

9/13/ Describing Motion: Examples from Everyday Life. Chapter 4: Making Sense of the Universe Understanding Motion, Energy, and Gravity

9/13/ Describing Motion: Examples from Everyday Life. Chapter 4: Making Sense of the Universe Understanding Motion, Energy, and Gravity 9/13/17 Lecture Outline 4.1 Describing Motion: Examples from Everyday Life Chapter 4: Making Sense of the Universe Understanding Motion, Energy, and Gravity Our goals for learning: How do we describe motion?

More information

AP Physics C Textbook Problems

AP Physics C Textbook Problems AP Physics C Textbook Problems Chapter 13 Pages 412 416 HW-16: 03. A 200-kg object and a 500-kg object are separated by 0.400 m. Find the net gravitational force exerted by these objects on a 50.0-kg object

More information

Chapter 8. Orbits. 8.1 Conics

Chapter 8. Orbits. 8.1 Conics Chapter 8 Orbits 8.1 Conics Conic sections first studied in the abstract by the Greeks are the curves formed by the intersection of a plane with a cone. Ignoring degenerate cases (such as a point, or pairs

More information

ASTRO 1050 LAB #3: Planetary Orbits and Kepler s Laws

ASTRO 1050 LAB #3: Planetary Orbits and Kepler s Laws ASTRO 1050 LAB #3: Planetary Orbits and Kepler s Laws ABSTRACT Johannes Kepler (1571-1630), a German mathematician and astronomer, was a man on a quest to discover order and harmony in the solar system.

More information

Radial Acceleration. recall, the direction of the instantaneous velocity vector is tangential to the trajectory

Radial Acceleration. recall, the direction of the instantaneous velocity vector is tangential to the trajectory Radial Acceleration recall, the direction of the instantaneous velocity vector is tangential to the trajectory 1 Radial Acceleration recall, the direction of the instantaneous velocity vector is tangential

More information

Introduction to Astronomy

Introduction to Astronomy Introduction to Astronomy AST0111-3 (Astronomía) Semester 2014B Prof. Thomas H. Puzia Newton s Laws Big Ball Fail Universal Law of Gravitation Every mass attracts every other mass through a force called

More information

CIRCULAR MOTION AND UNIVERSAL GRAVITATION

CIRCULAR MOTION AND UNIVERSAL GRAVITATION CIRCULAR MOTION AND UNIVERSAL GRAVITATION Uniform Circular Motion What holds an object in a circular path? A force. String Friction Gravity What happens when the force is diminished? Object flies off in

More information

MATH10000 Mathematical Workshop Project 2 Part 1 Conic Sections

MATH10000 Mathematical Workshop Project 2 Part 1 Conic Sections MATH10000 Mathematical Workshop Project 2 Part 1 Conic Sections The aim of this project is to introduce you to an area of geometry known as the theory of conic sections, which is one of the most famous

More information

Welcome back to Physics 215

Welcome back to Physics 215 Welcome back to Physics 215 Today s agenda: More rolling without slipping Newtonian gravity Planetary orbits Gravitational Potential Energy Physics 215 Spring 2018 Lecture 13-1 1 Rolling without slipping

More information

An Analysis of N-Body Trajectory Propagation. Senior Project. In Partial Fulfillment. of the Requirements for the Degree

An Analysis of N-Body Trajectory Propagation. Senior Project. In Partial Fulfillment. of the Requirements for the Degree An Analysis of N-Body Trajectory Propagation Senior Project In Partial Fulfillment of the Requirements for the Degree Bachelor of Science in Aerospace Engineering by Emerson Frees June, 2011 An Analysis

More information