Application 4.3B Comets and Spacecraft

Size: px
Start display at page:

Download "Application 4.3B Comets and Spacecraft"

Transcription

1 Application 4.3B Comets and Spacecaft The investigations outlined hee ae intended as applications of the moe sophisticated numeical DE solves that ae "built into" computing systems such as Maple, Mathematica, and MATLAB (as opposed to the ad hoc Runge-Kutta methods of the pevious poject.) We illustate these high-pecision vaiable step size solves by applying them to analyze the elliptical obit of a satellite a comet, planet, o spacecaft aound a pimay (planet o sun) of mass M. If the attacting pimay is located at the oigin in xyz-space, then the satellite's position functions xt ( ), yt ( ), and zt ( ) satisfy Newton's invese-squae law diffeential equations d x µ x d y µ y d z µ z =, =, = (1) dt dt dt whee µ = GM (G being the gavitational constant) and = x + y + z. Investigation A Conside a satellite in elliptical obit aound a planet, and suppose that physical units ae so chosen that µ = 1. If the obit lies in the xy-plane so zt ( ) 0, the Eqs. (1) educe to 2 2 d x x d y y, = =. (2) dt dt Let T denote the peiod of evolution of the satellite in its obit. Keple's thid law says that the squae of T is popotional to the cube of the majo semiaxis a of its elliptical obit. In paticula, if µ = 1, then T = 4π a. (3) (See Section 12.6 of Edwads and Penney, Calculus, 6th ed. (Pentice Hall, 2002).) If the satellite's x- and y-components of velocity, x2 = x = x 1 and y2 = y = y 1, ae intoduced, then the system in (2) tanslates into the system µ x1 x 1 = x2, x 2 = 3 µ y y = y, y = (4) 2 of fou fist-ode equations with = x + y Application 4.3B 107

2 (i) Solve Eqs. (2) o (4) numeically with the initial conditions x (0) = 1, y (0) = 0, x (0) = 0, y (0) = 1 that coespond theoetically to a cicula obit of adius a = 1, in which case Eq. (3) gives T = 2π. Ae you numeical esults consistent with this fact? (ii) Now solve the system numeically with the initial conditions 1 x (0) = 1, y (0) = 0, x (0) = 0, y (0) = 2 6 that coespond theoetically to an elliptical obit with majo semiaxis a = 2, so Eq. (3) gives T = 4π 2. Do you numeical esults agee with this? (iii) Investigate what happens when both the x-component and the y-component of the initial velocity ae nonzeo. Investigation B (Halley's Comet) Halley's comet last eached peihelion (its point of closest appoach to the sun at the oigin) on Febuay 9, Its position and velocity components at this time wee p 0 = ( , , ) v 0 = ( , , ) and (espectively) with position in AU (Astonomical Units, the unit of distance being equal to the majo semiaxis of the eath's obit about the sun) and time in yeas. In this unit system, its 3-dimensional equations of motion ae as in (1) with µ = 4π 2. Then solve Eqs. (1) numeically to veify the appeaance of the yz-pojection of the obit of Halley's comet shown in Fig in the text. Plot the xy- and xz-pojections also. Figue in the text shows the gaph of the distance (t) of Halley's comet fom the sun. Inspection of this gaph indicates that Halley's comet eaches a maximum distance (at aphelion) of about 35 AU in a bit less than 40 yeas, and etuns to peihelion afte about thee-quates of a centuy. The close look in Fig indicates that the peiod of evolution of Halley's comet is about 76 yeas. Use you numeical solution to efine these obsevations. What is you best estimate of the calenda date of the comet's next peihelion passage? Investigation C (You Own Comet) Lucky you! The night befoe you bithday in 1997 you set up you telescope on neaby mountaintop. It was a clea night, and at 12:30 am you spotted a new comet. Afte epeating the obsevation on successive nights, you wee able to calculate its sola system coodinates p 0 = (x 0, y 0, z 0 ) and its velocity vecto v 0 = (vx 0, vy 0, vz 0 ) on that fist night. Using this infomation, detemine this comet's 108 Chapte 4

3 peihelion (point neaest sun) and aphelion (fathest fom sun), its velocity at peihelion and at aphelion, its peiod of evolution about the sun, and its next two dates of peihelion passage. Using length-time units of AU and eath yeas, the comet's equations of motion ae given in (1) with µ = 4π 2. Fo you pesonal comet, stat with andom initial position and velocity vectos with the same ode of magnitude as those of Halley's comet. Repeat the andom selection of initial position and velocity vectos, if necessay, until you get a nicelooking eccentic obit that goes well outside the eath's obit (like eal comets do). Using Maple Let's conside a comet obiting the sun with initial position and velocity vectos p0 := {x(0)=0.2, y(0)=0.4, z(0)=0.2}; v0 := {D(x)(0)=5, D(y)(0)=-7, D(z)(0)=9}; at peihelion. Fo convenience, we combine these initial conditions in the single set inits := p0 union v0; of equations. The comet's equations of motion in (1) with µ = 4π 2 ae enteed as := t->sqt(x(t)^2 + y(t)^2 + z(t)^2); de1 := diff(x(t),t$2) = -4*Pi^2*x(t)/(t)^3: de2 := diff(y(t),t$2) = -4*Pi^2*y(t)/(t)^3: de3 := diff(z(t),t$2) = -4*Pi^2*z(t)/(t)^3: deqs := {de1,de2,de3}: The comet's x-, y-, and z-position functions then satisfy the combined set eqs := deqs union inits: of thee second-ode diffeential equations and six initial conditions, which we poceed to solve numeically. soln := dsolve(eqs, {x(t),y(t),z(t)}, type=numeic); soln := poc(kf45_x)... end We use the esulting numeical pocedue soln to plot the yz-pojection of the comet's obit fo the fist 20 yeas: Application 4.3B 109

4 with(plots): odeplot(soln, [y(t),z(t)], 0..20, numpoints=1000); This obit cetainly looks like an ellipse. To investigate the comet's motion on its obit, we plot its distance fom the sun as a function of t. odeplot(soln, [t,(t)], 0..20, numpoints=1000); The comet appeas to each aphelion afte about 8 yeas, and to etun to peihelion afte about 16 yeas. Zooming in on the aphelion, odeplot(soln,[t,(t)], ); 110 Chapte 4

5 we see that the comet eaches a maximal distance fom the sun of about AU afte about 8.09 yeas. Zooming in on the peihelion, odeplot(soln, [t,(t)], ); we see that the comet appeas to etun to a minimal distance of about 0.49 AU fom the sun afte about yeas. Using Mathematica Let's conside a comet obiting the sun with initial position and velocity vectos p0 = {x[0]==0.2, y[0]==0.4, z[0]==0.2} v0 = {x'[0]==5, y'[0]==-7, z'[0]==9} at peihelion. Fo convenience, we combine these initial conditions in the single set inits = Union[p0,v0] of equations. The comet's equations of motion in (1) with µ = 4π 2 ae enteed as [t_] = Sqt[x[t]^2 + y[t]^2 + z[t]^2] de1 = de2 = de3 = x''[t] == -4 Pi^2 x[t]/[t]^3; y''[t] == -4 Pi^2 y[t]/[t]^3; z''[t] == -4 Pi^2 z[t]/[t]^3; deqs = {de1,de2,de3} The comet's x-, y-, and z-position functions then satisfy the combined set eqs = Union[deqs, inits] of thee second-ode diffeential equations and six initial conditions, which we poceed to solve numeically. Application 4.3B 111

6 soln = NDSolve[eqs, {x, y, z}, {t, 0, 20}] {{x -> IntepolatingFunction[{{0.,20.}}, <>], y -> IntepolatingFunction[{{0.,20.}}, <>], z -> IntepolatingFunction[{{0.,20.}}, <>]}} The esult soln is a list of thee numeical "intepolating functions" x = Fist[x /. soln]; y = Fist[y /. soln]; z = Fist[z /. soln]; that we can use to plot the yz-pojection of the comet's obit fo the fist 20 yeas: PaameticPlot[Evaluate[{y[t],z[t]}], {t,0,20}] z y This cetainly looks like an ellipse. To investigate the comet's motion on this obit, we plot its distance fom the sun as a function of t. Plot[Evaluate[[t]], {t, 0, 20}] t 112 Chapte 4

7 The comet appeas to each aphelion afte about 8 yeas, and to etun to peihelion afte about 16 yeas. Zooming in on the aphelion, Plot[Evaluate[[t]], {t, 8.05, 8.15}, PlotRange -> { , }] t we see that the comet eaches a maximal distance fom the sun of about AU afte about 8.09 yeas. Zooming in on the peihelion, Plot[Evaluate[[t]], {t, 16.15, 16.25}, PlotRange -> {0.45, 0.55}, t we see that the comet appeas to etun to a minimal distance of about 0.49 AU fom the sun afte about yeas. Using MATLAB Let's conside a comet obiting the sun with initial position and velocity column vectos 0 = [0.2; 0.4; 0.2]; v0 = [5; -7; 9]; Application 4.3B 113

8 at peihelion. We combine these initial values into the single 6-component vecto inits = [p0; v0]; The following MATLAB function saved as ypcomet.m seves to define the comet's equations of motion in (1) with µ = 4π 2. function yp = ypcomet(t,y) yp = y; vx = y(4); vy = y(5); vz = y(6);% velocity comps x = y(1); z = y(3); y = y(2);% coodinates = sqt( x*x + y*y + z*z ); % adius 3 = **; % -cubed k = 4*pi^2; % fo AU-y units yp(1) = vx; yp(2) = vy; yp(3) = vz; yp(4) = -k*x/3; yp(5) = -k*y/3; yp(6) = -k*z/3; We poceed to solve these diffeential equations numeically with the given initial conditions. options = odeset('eltol',1e-6); % eo toleance tspan = 0 : 0.01 : 20; % fom t=0 to t=20 with dt=0.01 [t,y] = ode45('ypcomet',0:0.01:20, inits, options); Hee t is the vecto of times and y is a matix whose fist 3 column vectos give the coesponding position coodinates of the comet. We need only plot the second and thid of these vectos against each othe to see the yz-pojection of the comet's obit fo the fist 20 yeas. plot(y(:,2),y(:,3)), axis([ ]), axis squae The esulting obit (at the top of the next page) cetainly looks like an ellipse. 114 Chapte 4

9 z y To investigate the comet's motion on this obit, we plot its distance fom the sun as a function of t. = sqt(y(:,1).^2 + y(:,2).^2 + y(:,3).^2); plot(t, ) t Application 4.3B 115

10 The comet appeas to each aphelion afte about 8 yeas, and to etun to peihelion afte about 16 yeas. We can zoom in on the aphelion with the command axis([ ]), gid on and see (in the figue below) that the comet eaches a maximal distance fom the sun of about AU afte about 8.09 yeas. We zoom in on the peihelion with the command axis([ ]), gid on and see (in the figue at the top of the next page) that it appeas to etun to a minimal distance of about 0.49 AU fom the sun afte about yeas t Zooming in on the comet's aphelion 116 Chapte 4

11 t Zooming in on the comet's peihelion Eath-Moon Satellite Obits We conside finally an Apollo satellite in obit about the Eath E and the Moon M. Figue in the text shows an x 1 x 2 -coodinate system whose oigin lies at the cente of mass of the Eath and the Moon, and which otates at the ate of one evolution pe "moon month" of appoximately τ = days, so the Eath and Moon emain fixed in thei positions on the x 1 -axis. If we take as unit distance the distance between the Eath and Moon centes, then thei coodinates ae E( µ, 0) and M(1 µ, 0), whee µ = mm ( me + mm) in tems of the Eath mass m E and the Moon mass m M. If we take the total mass me + mm as the unit of mass and τ / 2 π days as the unit of time, then the gavitational constant has value G = 1, and the equations of motion of the satellite position S(x 1, x 2 ) ae (1 µ )( x + µ ) µ ( x 1 + µ ) x = x + 2x (1a) E M and (1 µ ) x µ x x = x 2x (1b) E M Application 4.3B 117

12 whee E = ( x1 + µ ) + x2 and M = ( x1 + µ 1) + x2 denote the satellite's distance to the Eath and Moon, espectively. The initial two tems on the ight-hand side of each equation in (1) esult fom the otation of the coodinate system. In the system of units descibed hee, the luna mass is appoximately µ = m M = The secondode system in (1) can be conveted to a fist-ode system by substituting x 1 = x3, x 2 = x4 so 3 1 x = x, x 4 = x 2. (2) This system is defined in the MATLAB function function yp = ypmoon(t,y) m1 = ; m2 = ; % mass of moon % mass of eath 1 = nom([y(1)+m1, y(2)]); % Distance to the eath 2 = nom([y(1)-m2, y(2)]); % Distance to the moon yp = [ y(3); y(4); 0; 0 ]; % Column 4-vecto yp(3) = y(1)+2*y(4)-m2*(y(1)+m1)/1^3-m1*(y(1)-m2)/2^3; yp(4) = y(2)-2*y(3) - m2*y(2)/1^3 - m1*y(2)/2^3; Suppose that the satellite initially is in a clockwise cicula obit of adius about 1500 miles about the Moon. At its fathest point fom the Eath (x 1 = 0.994) it is "launched" into Eath-Moon obit with initial velocity v 0. We then want to solve the system in (2) with the ight-hand functions in (1) substituted fo x 1 and x 2 with the initial conditions x 1 (0) = 0.994, x 2 (0) = 0, x 3 (0) = 0, x 4 (0) = v 0. (3) In the system of units used hee, the unit of velocity is appoximately 2289 miles pe hou. Some initial conditions and final times of paticula inteest ae defined by the function function [tf,y0] = mooninit(k) % Initial conditions fo k-looped Apollo obit 118 Chapte 4

13 if k == 2, tf = ; y0 = [ ]'; elseif k == 3, tf = ; y0 = [ ]'; elseif k == 4, tf = ; y0 = [ ]'; end The fist two components of y0 ae the coodinates of the initial position, and the last two components ae the components of the initial velocity; tf is then the time equied to complete one obit. The cases k = 3 and k = 4 yield Figues and (espectively) in the text. The following commands (with k = 2) yield the figue shown on the next page, and illustate how such figues ae plotted. [tf,y0] = mooninit(2); options = odeset('reltol',1e-9,'abstol',1e-12); [t,y] = ode45('ypmoon', [0,tf], y0, options); plot(y(:,1), y(:,2)); axis([ ]), axis squae The small elative and absolute eo toleances ae needed to insue that the obit closes smoothly when the satellite etuns to its initial position. You might like to ty the values k = 3 and k = 4 to geneate the analogous 3- and 4-looped obits. A moe substantial poject would be to seach empiically fo initial velocities yielding peiodic obits with moe than 4 loops. Futhe Investigations See the Application 4.3C page at the web site fo additional investigations of comets, satellites, and tajectoies of baseballs with ai esistance (as in Example 4 of Section 4.3 in the text). Application 4.3B 119

14 1 The cases k = 3 and k = 3 yield Figues and (espectively) in the Eath Moon Chapte 4

F 12. = G m m 1 2 F 21 = F 12. = G m 1m 2. Review. Physics 201, Lecture 22. Newton s Law Of Universal Gravitation

F 12. = G m m 1 2 F 21 = F 12. = G m 1m 2. Review. Physics 201, Lecture 22. Newton s Law Of Universal Gravitation Physics 201, Lectue 22 Review Today s Topics n Univesal Gavitation (Chapte 13.1-13.3) n Newton s Law of Univesal Gavitation n Popeties of Gavitational Foce n Planet Obits; Keple s Laws by Newton s Law

More information

Introduction to Systems of Differential Equations

Introduction to Systems of Differential Equations Chapte 4 Intoduction to Systes of Diffeential Equations Poject 4.1 Keple's aws and Planetay Obits The Section 4.1 poject in the text stats with Newton's invese-squae law of gavitation and outlines a deivation

More information

MODULE 5 ADVANCED MECHANICS GRAVITATIONAL FIELD: MOTION OF PLANETS AND SATELLITES VISUAL PHYSICS ONLINE

MODULE 5 ADVANCED MECHANICS GRAVITATIONAL FIELD: MOTION OF PLANETS AND SATELLITES VISUAL PHYSICS ONLINE VISUAL PHYSICS ONLIN MODUL 5 ADVANCD MCHANICS GRAVITATIONAL FILD: MOTION OF PLANTS AND SATLLITS SATLLITS: Obital motion of object of mass m about a massive object of mass M (m

More information

KEPLER S LAWS OF PLANETARY MOTION

KEPLER S LAWS OF PLANETARY MOTION EPER S AWS OF PANETARY MOTION 1. Intoduction We ae now in a position to apply what we have leaned about the coss poduct and vecto valued functions to deive eple s aws of planetay motion. These laws wee

More information

Universal Gravitation

Universal Gravitation Chapte 1 Univesal Gavitation Pactice Poblem Solutions Student Textbook page 580 1. Conceptualize the Poblem - The law of univesal gavitation applies to this poblem. The gavitational foce, F g, between

More information

History of Astronomy - Part II. Tycho Brahe - An Observer. Johannes Kepler - A Theorist

History of Astronomy - Part II. Tycho Brahe - An Observer. Johannes Kepler - A Theorist Histoy of Astonomy - Pat II Afte the Copenican Revolution, astonomes stived fo moe obsevations to help bette explain the univese aound them Duing this time (600-750) many majo advances in science and astonomy

More information

Central Force Motion

Central Force Motion Cental Foce Motion Cental Foce Poblem Find the motion of two bodies inteacting via a cental foce. Examples: Gavitational foce (Keple poblem): m1m F 1, ( ) =! G ˆ Linea estoing foce: F 1, ( ) =! k ˆ Two

More information

Between any two masses, there exists a mutual attractive force.

Between any two masses, there exists a mutual attractive force. YEAR 12 PHYSICS: GRAVITATION PAST EXAM QUESTIONS Name: QUESTION 1 (1995 EXAM) (a) State Newton s Univesal Law of Gavitation in wods Between any two masses, thee exists a mutual attactive foce. This foce

More information

Practice. Understanding Concepts. Answers J 2. (a) J (b) 2% m/s. Gravitation and Celestial Mechanics 287

Practice. Understanding Concepts. Answers J 2. (a) J (b) 2% m/s. Gravitation and Celestial Mechanics 287 Pactice Undestanding Concepts 1. Detemine the gavitational potential enegy of the Eath Moon system, given that the aveage distance between thei centes is 3.84 10 5 km, and the mass of the Moon is 0.0123

More information

Ch 13 Universal Gravitation

Ch 13 Universal Gravitation Ch 13 Univesal Gavitation Ch 13 Univesal Gavitation Why do celestial objects move the way they do? Keple (1561-1630) Tycho Bahe s assistant, analyzed celestial motion mathematically Galileo (1564-1642)

More information

Chapter 13 Gravitation

Chapter 13 Gravitation Chapte 13 Gavitation In this chapte we will exploe the following topics: -Newton s law of gavitation, which descibes the attactive foce between two point masses and its application to extended objects

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Problem Set 10 Solutions. r s

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Department. Problem Set 10 Solutions. r s MASSACHUSETTS INSTITUTE OF TECHNOLOGY Physics Depatment Physics 8.033 Decembe 5, 003 Poblem Set 10 Solutions Poblem 1 M s y x test paticle The figue above depicts the geomety of the poblem. The position

More information

Newton s Laws, Kepler s Laws, and Planetary Orbits

Newton s Laws, Kepler s Laws, and Planetary Orbits Newton s Laws, Keple s Laws, and Planetay Obits PROBLEM SET 4 DUE TUESDAY AT START OF LECTURE 28 Septembe 2017 ASTRONOMY 111 FALL 2017 1 Newton s & Keple s laws and planetay obits Unifom cicula motion

More information

AY 7A - Fall 2010 Section Worksheet 2 - Solutions Energy and Kepler s Law

AY 7A - Fall 2010 Section Worksheet 2 - Solutions Energy and Kepler s Law AY 7A - Fall 00 Section Woksheet - Solutions Enegy and Keple s Law. Escape Velocity (a) A planet is obiting aound a sta. What is the total obital enegy of the planet? (i.e. Total Enegy = Potential Enegy

More information

Gravitation. AP/Honors Physics 1 Mr. Velazquez

Gravitation. AP/Honors Physics 1 Mr. Velazquez Gavitation AP/Honos Physics 1 M. Velazquez Newton s Law of Gavitation Newton was the fist to make the connection between objects falling on Eath and the motion of the planets To illustate this connection

More information

Physics: Work & Energy Beyond Earth Guided Inquiry

Physics: Work & Energy Beyond Earth Guided Inquiry Physics: Wok & Enegy Beyond Eath Guided Inquiy Elliptical Obits Keple s Fist Law states that all planets move in an elliptical path aound the Sun. This concept can be extended to celestial bodies beyond

More information

10. Force is inversely proportional to distance between the centers squared. R 4 = F 16 E 11.

10. Force is inversely proportional to distance between the centers squared. R 4 = F 16 E 11. NSWRS - P Physics Multiple hoice Pactice Gavitation Solution nswe 1. m mv Obital speed is found fom setting which gives v whee M is the object being obited. Notice that satellite mass does not affect obital

More information

Lecture 1a: Satellite Orbits

Lecture 1a: Satellite Orbits Lectue 1a: Satellite Obits Outline 1. Newton s Laws of Motion 2. Newton s Law of Univesal Gavitation 3. Calculating satellite obital paametes (assuming cicula motion) Scala & Vectos Scala: a physical quantity

More information

Kepler's 1 st Law by Newton

Kepler's 1 st Law by Newton Astonom 10 Section 1 MWF 1500-1550 134 Astonom Building This Class (Lectue 7): Gavitation Net Class: Theo of Planeta Motion HW # Due Fida! Missed nd planetaium date. (onl 5 left), including tonight Stadial

More information

Tutorial Exercises: Central Forces

Tutorial Exercises: Central Forces Tutoial Execises: Cental Foces. Tuning Points fo the Keple potential (a) Wite down the two fist integals fo cental motion in the Keple potential V () = µm/ using J fo the angula momentum and E fo the total

More information

Paths of planet Mars in sky

Paths of planet Mars in sky Section 4 Gavity and the Sola System The oldest common-sense view is that the eath is stationay (and flat?) and the stas, sun and planets evolve aound it. This GEOCENTRIC MODEL was poposed explicitly by

More information

Determining solar characteristics using planetary data

Determining solar characteristics using planetary data Detemining sola chaacteistics using planetay data Intoduction The Sun is a G-type main sequence sta at the cente of the Sola System aound which the planets, including ou Eath, obit. In this investigation

More information

What Form of Gravitation Ensures Weakened Kepler s Third Law?

What Form of Gravitation Ensures Weakened Kepler s Third Law? Bulletin of Aichi Univ. of Education, 6(Natual Sciences, pp. - 6, Mach, 03 What Fom of Gavitation Ensues Weakened Keple s Thid Law? Kenzi ODANI Depatment of Mathematics Education, Aichi Univesity of Education,

More information

r cos, and y r sin with the origin of coordinate system located at

r cos, and y r sin with the origin of coordinate system located at Lectue 3-3 Kinematics of Rotation Duing ou peious lectues we hae consideed diffeent examples of motion in one and seeal dimensions. But in each case the moing object was consideed as a paticle-like object,

More information

Experiment 09: Angular momentum

Experiment 09: Angular momentum Expeiment 09: Angula momentum Goals Investigate consevation of angula momentum and kinetic enegy in otational collisions. Measue and calculate moments of inetia. Measue and calculate non-consevative wok

More information

Math Notes on Kepler s first law 1. r(t) kp(t)

Math Notes on Kepler s first law 1. r(t) kp(t) Math 7 - Notes on Keple s fist law Planetay motion and Keple s Laws We conside the motion of a single planet about the sun; fo simplicity, we assign coodinates in R 3 so that the position of the sun is

More information

Radius of the Moon is 1700 km and the mass is 7.3x 10^22 kg Stone. Moon

Radius of the Moon is 1700 km and the mass is 7.3x 10^22 kg Stone. Moon xample: A 1-kg stone is thown vetically up fom the suface of the Moon by Supeman. The maximum height fom the suface eached by the stone is the same as the adius of the moon. Assuming no ai esistance and

More information

Graphs of Sine and Cosine Functions

Graphs of Sine and Cosine Functions Gaphs of Sine and Cosine Functions In pevious sections, we defined the tigonometic o cicula functions in tems of the movement of a point aound the cicumfeence of a unit cicle, o the angle fomed by the

More information

= 4 3 π( m) 3 (5480 kg m 3 ) = kg.

= 4 3 π( m) 3 (5480 kg m 3 ) = kg. CHAPTER 11 THE GRAVITATIONAL FIELD Newton s Law of Gavitation m 1 m A foce of attaction occus between two masses given by Newton s Law of Gavitation Inetial mass and gavitational mass Gavitational potential

More information

Modeling Ballistics and Planetary Motion

Modeling Ballistics and Planetary Motion Discipline Couses-I Semeste-I Pape: Calculus-I Lesson: Lesson Develope: Chaitanya Kuma College/Depatment: Depatment of Mathematics, Delhi College of Ats and Commece, Univesity of Delhi Institute of Lifelong

More information

AST 121S: The origin and evolution of the Universe. Introduction to Mathematical Handout 1

AST 121S: The origin and evolution of the Universe. Introduction to Mathematical Handout 1 Please ead this fist... AST S: The oigin and evolution of the Univese Intoduction to Mathematical Handout This is an unusually long hand-out and one which uses in places mathematics that you may not be

More information

Homework 7 Solutions

Homework 7 Solutions Homewok 7 olutions Phys 4 Octobe 3, 208. Let s talk about a space monkey. As the space monkey is oiginally obiting in a cicula obit and is massive, its tajectoy satisfies m mon 2 G m mon + L 2 2m mon 2

More information

Problem 1: Multiple Choice Questions

Problem 1: Multiple Choice Questions Mathematics 102 Review Questions Poblem 1: Multiple Choice Questions 1: Conside the function y = f(x) = 3e 2x 5e 4x (a) The function has a local maximum at x = (1/2)ln(10/3) (b) The function has a local

More information

Circular Orbits. and g =

Circular Orbits. and g = using analyse planetay and satellite motion modelled as unifom cicula motion in a univesal gavitation field, a = v = 4π and g = T GM1 GM and F = 1M SATELLITES IN OBIT A satellite is any object that is

More information

Central Force Problem. Central Force Motion. Two Body Problem: Center of Mass Coordinates. Reduction of Two Body Problem 8.01 W14D1. + m 2. m 2.

Central Force Problem. Central Force Motion. Two Body Problem: Center of Mass Coordinates. Reduction of Two Body Problem 8.01 W14D1. + m 2. m 2. Cental oce Poblem ind the motion of two bodies inteacting via a cental foce. Cental oce Motion 8.01 W14D1 Examples: Gavitational foce (Keple poblem): 1 1, ( ) G mm Linea estoing foce: ( ) k 1, Two Body

More information

Gravitational Potential Energy in General

Gravitational Potential Energy in General Gavitational Potential Enegy in Geneal 6.3 To exploe such concepts as how much enegy a space pobe needs to escape fom Eath s gavity, we must expand on the topic of gavitational potential enegy, which we

More information

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS TSOKOS LESSON 6- THE LAW OF GRAVITATION Essential Idea: The Newtonian idea of gavitational foce acting between two spheical bodies and the laws of mechanics

More information

ASTR415: Problem Set #6

ASTR415: Problem Set #6 ASTR45: Poblem Set #6 Cuan D. Muhlbege Univesity of Mayland (Dated: May 7, 27) Using existing implementations of the leapfog and Runge-Kutta methods fo solving coupled odinay diffeential equations, seveal

More information

Gaia s Place in Space

Gaia s Place in Space Gaia s Place in Space The impotance of obital positions fo satellites Obits and Lagange Points Satellites can be launched into a numbe of diffeent obits depending on thei objectives and what they ae obseving.

More information

10. Universal Gravitation

10. Universal Gravitation 10. Univesal Gavitation Hee it is folks, the end of the echanics section of the couse! This is an appopiate place to complete the study of mechanics, because with his Law of Univesal Gavitation, Newton

More information

Gravitation. Chapter 12. PowerPoint Lectures for University Physics, Twelfth Edition Hugh D. Young and Roger A. Freedman. Lectures by James Pazun

Gravitation. Chapter 12. PowerPoint Lectures for University Physics, Twelfth Edition Hugh D. Young and Roger A. Freedman. Lectures by James Pazun Chapte 12 Gavitation PowePoint Lectues fo Univesity Physics, Twelfth Edition Hugh D. Young and Roge A. Feedman Lectues by James Pazun Modified by P. Lam 5_31_2012 Goals fo Chapte 12 To study Newton s Law

More information

Physics 235 Chapter 5. Chapter 5 Gravitation

Physics 235 Chapter 5. Chapter 5 Gravitation Chapte 5 Gavitation In this Chapte we will eview the popeties of the gavitational foce. The gavitational foce has been discussed in geat detail in you intoductoy physics couses, and we will pimaily focus

More information

F(r) = r f (r) 4.8. Central forces The most interesting problems in classical mechanics are about central forces.

F(r) = r f (r) 4.8. Central forces The most interesting problems in classical mechanics are about central forces. 4.8. Cental foces The most inteesting poblems in classical mechanics ae about cental foces. Definition of a cental foce: (i) the diection of the foce F() is paallel o antipaallel to ; in othe wods, fo

More information

KEPLER S LAWS AND PLANETARY ORBITS

KEPLER S LAWS AND PLANETARY ORBITS KEPE S AWS AND PANETAY OBITS 1. Selected popeties of pola coodinates and ellipses Pola coodinates: I take a some what extended view of pola coodinates in that I allow fo a z diection (cylindical coodinates

More information

DYNAMICS OF UNIFORM CIRCULAR MOTION

DYNAMICS OF UNIFORM CIRCULAR MOTION Chapte 5 Dynamics of Unifom Cicula Motion Chapte 5 DYNAMICS OF UNIFOM CICULA MOTION PEVIEW An object which is moing in a cicula path with a constant speed is said to be in unifom cicula motion. Fo an object

More information

A New Approach to General Relativity

A New Approach to General Relativity Apeion, Vol. 14, No. 3, July 7 7 A New Appoach to Geneal Relativity Ali Rıza Şahin Gaziosmanpaşa, Istanbul Tukey E-mail: aizasahin@gmail.com Hee we pesent a new point of view fo geneal elativity and/o

More information

HW6 Physics 311 Mechanics

HW6 Physics 311 Mechanics HW6 Physics 311 Mechanics Fall 015 Physics depatment Univesity of Wisconsin, Madison Instucto: Pofesso Stefan Westehoff By Nasse M. Abbasi June 1, 016 Contents 0.1 Poblem 1.........................................

More information

Phys 201A. Homework 5 Solutions

Phys 201A. Homework 5 Solutions Phys 201A Homewok 5 Solutions 3. In each of the thee cases, you can find the changes in the velocity vectos by adding the second vecto to the additive invese of the fist and dawing the esultant, and by

More information

Solving Problems of Advance of Mercury s Perihelion and Deflection of. Photon Around the Sun with New Newton s Formula of Gravity

Solving Problems of Advance of Mercury s Perihelion and Deflection of. Photon Around the Sun with New Newton s Formula of Gravity Solving Poblems of Advance of Mecuy s Peihelion and Deflection of Photon Aound the Sun with New Newton s Fomula of Gavity Fu Yuhua (CNOOC Reseach Institute, E-mail:fuyh945@sina.com) Abstact: Accoding to

More information

GENERAL RELATIVITY: THE GEODESICS OF THE SCHWARZSCHILD METRIC

GENERAL RELATIVITY: THE GEODESICS OF THE SCHWARZSCHILD METRIC GENERAL RELATIVITY: THE GEODESICS OF THE SCHWARZSCHILD METRIC GILBERT WEINSTEIN 1. Intoduction Recall that the exteio Schwazschild metic g defined on the 4-manifold M = R R 3 \B 2m ) = {t,, θ, φ): > 2m}

More information

Chap 5. Circular Motion: Gravitation

Chap 5. Circular Motion: Gravitation Chap 5. Cicula Motion: Gavitation Sec. 5.1 - Unifom Cicula Motion A body moves in unifom cicula motion, if the magnitude of the velocity vecto is constant and the diection changes at evey point and is

More information

Extra notes for circular motion: Circular motion : v keeps changing, maybe both speed and

Extra notes for circular motion: Circular motion : v keeps changing, maybe both speed and Exta notes fo cicula motion: Cicula motion : v keeps changing, maybe both speed and diection ae changing. At least v diection is changing. Hence a 0. Acceleation NEEDED to stay on cicula obit: a cp v /,

More information

Chapter 12. Kinetics of Particles: Newton s Second Law

Chapter 12. Kinetics of Particles: Newton s Second Law Chapte 1. Kinetics of Paticles: Newton s Second Law Intoduction Newton s Second Law of Motion Linea Momentum of a Paticle Systems of Units Equations of Motion Dynamic Equilibium Angula Momentum of a Paticle

More information

THE LAPLACE EQUATION. The Laplace (or potential) equation is the equation. u = 0. = 2 x 2. x y 2 in R 2

THE LAPLACE EQUATION. The Laplace (or potential) equation is the equation. u = 0. = 2 x 2. x y 2 in R 2 THE LAPLACE EQUATION The Laplace (o potential) equation is the equation whee is the Laplace opeato = 2 x 2 u = 0. in R = 2 x 2 + 2 y 2 in R 2 = 2 x 2 + 2 y 2 + 2 z 2 in R 3 The solutions u of the Laplace

More information

- 5 - TEST 1R. This is the repeat version of TEST 1, which was held during Session.

- 5 - TEST 1R. This is the repeat version of TEST 1, which was held during Session. - 5 - TEST 1R This is the epeat vesion of TEST 1, which was held duing Session. This epeat test should be attempted by those students who missed Test 1, o who wish to impove thei mak in Test 1. IF YOU

More information

SIO 229 Gravity and Geomagnetism. Lecture 6. J 2 for Earth. J 2 in the solar system. A first look at the geoid.

SIO 229 Gravity and Geomagnetism. Lecture 6. J 2 for Earth. J 2 in the solar system. A first look at the geoid. SIO 229 Gavity and Geomagnetism Lectue 6. J 2 fo Eath. J 2 in the sola system. A fist look at the geoid. The Thee Big Themes of the Gavity Lectues 1.) An ellipsoidal otating Eath Refeence body (mass +

More information

Revision Guide for Chapter 11

Revision Guide for Chapter 11 Revision Guide fo Chapte 11 Contents Revision Checklist Revision Notes Momentum... 4 Newton's laws of motion... 4 Wok... 5 Gavitational field... 5 Potential enegy... 7 Kinetic enegy... 8 Pojectile... 9

More information

j i i,i j The second term on the right vanishes by Newton s third law. If we define N and Figure 1: Definition of relative coordinates r j.

j i i,i j The second term on the right vanishes by Newton s third law. If we define N and Figure 1: Definition of relative coordinates r j. Cental Foces We owe the development of Newtonian mechanics to the poblem of celestial mechanics and Newton s claim to Edmund Halley that the motion of a body to a foce that vaies invesely with the squae

More information

F g. = G mm. m 1. = 7.0 kg m 2. = 5.5 kg r = 0.60 m G = N m 2 kg 2 = = N

F g. = G mm. m 1. = 7.0 kg m 2. = 5.5 kg r = 0.60 m G = N m 2 kg 2 = = N Chapte answes Heinemann Physics 4e Section. Woked example: Ty youself.. GRAVITATIONAL ATTRACTION BETWEEN SMALL OBJECTS Two bowling balls ae sitting next to each othe on a shelf so that the centes of the

More information

m1 m2 M 2 = M -1 L 3 T -2

m1 m2 M 2 = M -1 L 3 T -2 GAVITATION Newton s Univesal law of gavitation. Evey paticle of matte in this univese attacts evey othe paticle with a foce which vaies diectly as the poduct of thei masses and invesely as the squae of

More information

Homework # 3 Solution Key

Homework # 3 Solution Key PHYSICS 631: Geneal Relativity Homewok # 3 Solution Key 1. You e on you hono not to do this one by hand. I ealize you can use a compute o simply look it up. Please don t. In a flat space, the metic in

More information

Geometry of the homogeneous and isotropic spaces

Geometry of the homogeneous and isotropic spaces Geomety of the homogeneous and isotopic spaces H. Sonoda Septembe 2000; last evised Octobe 2009 Abstact We summaize the aspects of the geomety of the homogeneous and isotopic spaces which ae most elevant

More information

Section 8.2 Polar Coordinates

Section 8.2 Polar Coordinates Section 8. Pola Coodinates 467 Section 8. Pola Coodinates The coodinate system we ae most familia with is called the Catesian coodinate system, a ectangula plane divided into fou quadants by the hoizontal

More information

OSCILLATIONS AND GRAVITATION

OSCILLATIONS AND GRAVITATION 1. SIMPLE HARMONIC MOTION Simple hamonic motion is any motion that is equivalent to a single component of unifom cicula motion. In this situation the velocity is always geatest in the middle of the motion,

More information

Physics 201 Homework 4

Physics 201 Homework 4 Physics 201 Homewok 4 Jan 30, 2013 1. Thee is a cleve kitchen gadget fo dying lettuce leaves afte you wash them. 19 m/s 2 It consists of a cylindical containe mounted so that it can be otated about its

More information

The Schwartzchild Geometry

The Schwartzchild Geometry UNIVERSITY OF ROCHESTER The Schwatzchild Geomety Byon Osteweil Decembe 21, 2018 1 INTRODUCTION In ou study of geneal elativity, we ae inteested in the geomety of cuved spacetime in cetain special cases

More information

PHYS Dynamics of Space Vehicles

PHYS Dynamics of Space Vehicles PHYS 4110 - Dynamics of Space Vehicles Chapte 3: Two Body Poblem Eath, Moon, Mas, and Beyond D. Jinjun Shan, Pofesso of Space Engineeing Depatment of Eath and Space Science and Engineeing Room 55, Petie

More information

Midterm Exam #2, Part A

Midterm Exam #2, Part A Physics 151 Mach 17, 2006 Midtem Exam #2, Pat A Roste No.: Scoe: Exam time limit: 50 minutes. You may use calculatos and both sides of ONE sheet of notes, handwitten only. Closed book; no collaboation.

More information

Thomas J. Osler Mathematics Department, Rowan University, Glassboro NJ 08028,

Thomas J. Osler Mathematics Department, Rowan University, Glassboro NJ 08028, 1 Feb 6, 001 An unusual appoach to Keple s fist law Ameican Jounal of Physics, 69(001), pp. 106-8. Thomas J. Osle Mathematics Depatment, Rowan Univesity, Glassboo NJ 0808, osle@owan.edu Keple s fist law

More information

Chapter 13: Gravitation

Chapter 13: Gravitation v m m F G Chapte 13: Gavitation The foce that makes an apple fall is the same foce that holds moon in obit. Newton s law of gavitation: Evey paticle attacts any othe paticle with a gavitation foce given

More information

PS113 Chapter 5 Dynamics of Uniform Circular Motion

PS113 Chapter 5 Dynamics of Uniform Circular Motion PS113 Chapte 5 Dynamics of Unifom Cicula Motion 1 Unifom cicula motion Unifom cicula motion is the motion of an object taveling at a constant (unifom) speed on a cicula path. The peiod T is the time equied

More information

Objective Notes Summary

Objective Notes Summary Objective Notes Summay An object moving in unifom cicula motion has constant speed but not constant velocity because the diection is changing. The velocity vecto in tangent to the cicle, the acceleation

More information

Circular Motion & Torque Test Review. The period is the amount of time it takes for an object to travel around a circular path once.

Circular Motion & Torque Test Review. The period is the amount of time it takes for an object to travel around a circular path once. Honos Physics Fall, 2016 Cicula Motion & Toque Test Review Name: M. Leonad Instuctions: Complete the following woksheet. SHOW ALL OF YOUR WORK ON A SEPARATE SHEET OF PAPER. 1. Detemine whethe each statement

More information

Chapter. s r. check whether your calculator is in all other parts of the body. When a rigid body rotates through a given angle, all

Chapter. s r. check whether your calculator is in all other parts of the body. When a rigid body rotates through a given angle, all conveted to adians. Also, be sue to vanced to a new position (Fig. 7.2b). In this inteval, the line OP has moved check whethe you calculato is in all othe pats of the body. When a igid body otates though

More information

Centripetal Force OBJECTIVE INTRODUCTION APPARATUS THEORY

Centripetal Force OBJECTIVE INTRODUCTION APPARATUS THEORY Centipetal Foce OBJECTIVE To veify that a mass moving in cicula motion expeiences a foce diected towad the cente of its cicula path. To detemine how the mass, velocity, and adius affect a paticle's centipetal

More information

Uniform Circular Motion

Uniform Circular Motion Unifom Cicula Motion constant speed Pick a point in the objects motion... What diection is the velocity? HINT Think about what diection the object would tavel if the sting wee cut Unifom Cicula Motion

More information

Math 1105: Calculus I (Math/Sci majors) MWF 11am / 12pm, Campion 235 Written homework 3

Math 1105: Calculus I (Math/Sci majors) MWF 11am / 12pm, Campion 235 Written homework 3 Math : alculus I Math/Sci majos MWF am / pm, ampion Witten homewok Review: p 94, p 977,8,9,6, 6: p 46, 6: p 4964b,c,69, 6: p 47,6 p 94, Evaluate the following it by identifying the integal that it epesents:

More information

Welcome to Aerospace Engineering

Welcome to Aerospace Engineering Welcome to Aeospace Engineeing DESIGN-CENTERED INTRODUCTION TO AEROSPACE ENGINEERING Notes 9 Topics 1. Couse Oganization. Today's Deams in Vaious Speed Ranges 3. Designing a Flight Vehicle: Route Map of

More information

GRAVITATION. Einstein Classes, Unit No. 102, 103, Vardhman Ring Road Plaza, Vikas Puri Extn., New Delhi -18 PG 1

GRAVITATION. Einstein Classes, Unit No. 102, 103, Vardhman Ring Road Plaza, Vikas Puri Extn., New Delhi -18 PG 1 Einstein Classes, Unit No. 0, 0, Vahman Ring Roa Plaza, Vikas Pui Extn., New Delhi -8 Ph. : 96905, 857, E-mail einsteinclasses00@gmail.com, PG GRAVITATION Einstein Classes, Unit No. 0, 0, Vahman Ring Roa

More information

GRAVITATION. Thus the magnitude of the gravitational force F that two particles of masses m1

GRAVITATION. Thus the magnitude of the gravitational force F that two particles of masses m1 GAVITATION 6.1 Newton s law of Gavitation Newton s law of gavitation states that evey body in this univese attacts evey othe body with a foce, which is diectly popotional to the poduct of thei masses and

More information

Physics 111. Ch 12: Gravity. Newton s Universal Gravity. R - hat. the equation. = Gm 1 m 2. F g 2 1. ˆr 2 1. Gravity G =

Physics 111. Ch 12: Gravity. Newton s Universal Gravity. R - hat. the equation. = Gm 1 m 2. F g 2 1. ˆr 2 1. Gravity G = ics Announcements day, embe 9, 004 Ch 1: Gavity Univesal Law Potential Enegy Keple s Laws Ch 15: Fluids density hydostatic equilibium Pascal s Pinciple This week s lab will be anothe physics wokshop -

More information

AH Mechanics Checklist (Unit 2) AH Mechanics Checklist (Unit 2) Circular Motion

AH Mechanics Checklist (Unit 2) AH Mechanics Checklist (Unit 2) Circular Motion AH Mechanics Checklist (Unit ) AH Mechanics Checklist (Unit ) Cicula Motion No. kill Done 1 Know that cicula motion efes to motion in a cicle of constant adius Know that cicula motion is conveniently descibed

More information

Physics 312 Introduction to Astrophysics Lecture 7

Physics 312 Introduction to Astrophysics Lecture 7 Physics 312 Intoduction to Astophysics Lectue 7 James Buckley buckley@wuphys.wustl.edu Lectue 7 Eath/Moon System Tidal Foces Tides M= mass of moon o sun F 1 = GMm 2 F 2 = GMm ( + ) 2 Diffeence in gavitational

More information

The Precession of Mercury s Perihelion

The Precession of Mercury s Perihelion The Pecession of Mecuy s Peihelion Owen Biesel Januay 25, 2008 Contents 1 Intoduction 2 2 The Classical olution 2 3 Classical Calculation of the Peiod 4 4 The Relativistic olution 5 5 Remaks 9 1 1 Intoduction

More information

Kepler s problem gravitational attraction

Kepler s problem gravitational attraction Kele s oblem gavitational attaction Summay of fomulas deived fo two-body motion Let the two masses be m and m. The total mass is M = m + m, the educed mass is µ = m m /(m + m ). The gavitational otential

More information

ω = θ θ o = θ θ = s r v = rω

ω = θ θ o = θ θ = s r v = rω Unifom Cicula Motion Unifom cicula motion is the motion of an object taveling at a constant(unifom) speed in a cicula path. Fist we must define the angula displacement and angula velocity The angula displacement

More information

Classical Mechanics Homework set 7, due Nov 8th: Solutions

Classical Mechanics Homework set 7, due Nov 8th: Solutions Classical Mechanics Homewok set 7, due Nov 8th: Solutions 1. Do deivation 8.. It has been asked what effect does a total deivative as a function of q i, t have on the Hamiltonian. Thus, lets us begin with

More information

PHYSICS 220. Lecture 08. Textbook Sections Lecture 8 Purdue University, Physics 220 1

PHYSICS 220. Lecture 08. Textbook Sections Lecture 8 Purdue University, Physics 220 1 PHYSICS 0 Lectue 08 Cicula Motion Textbook Sections 5.3 5.5 Lectue 8 Pudue Univesity, Physics 0 1 Oveview Last Lectue Cicula Motion θ angula position adians ω angula velocity adians/second α angula acceleation

More information

Tidal forces. m r. m 1 m 2. x r 2. r 1

Tidal forces. m r. m 1 m 2. x r 2. r 1 Tidal foces Befoe we look at fee waves on the eath, let s fist exaine one class of otion that is diectly foced: astonoic tides. Hee we will biefly conside soe of the tidal geneating foces fo -body systes.

More information

Uniform Circular Motion

Uniform Circular Motion Unifom Cicula Motion Intoduction Ealie we defined acceleation as being the change in velocity with time: a = v t Until now we have only talked about changes in the magnitude of the acceleation: the speeding

More information

Our Universe: GRAVITATION

Our Universe: GRAVITATION Ou Univese: GRAVITATION Fom Ancient times many scientists had shown geat inteest towads the sky. Most of the scientist studied the motion of celestial bodies. One of the most influential geek astonomes

More information

TAMPINES JUNIOR COLLEGE 2009 JC1 H2 PHYSICS GRAVITATIONAL FIELD

TAMPINES JUNIOR COLLEGE 2009 JC1 H2 PHYSICS GRAVITATIONAL FIELD TAMPINES JUNIOR COLLEGE 009 JC1 H PHYSICS GRAVITATIONAL FIELD OBJECTIVES Candidates should be able to: (a) show an undestanding of the concept of a gavitational field as an example of field of foce and

More information

Chapter 2: Introduction to Implicit Equations

Chapter 2: Introduction to Implicit Equations Habeman MTH 11 Section V: Paametic and Implicit Equations Chapte : Intoduction to Implicit Equations When we descibe cuves on the coodinate plane with algebaic equations, we can define the elationship

More information

Lecture 1a: Satellite Orbits

Lecture 1a: Satellite Orbits Lectue 1a: Satellite Obits Outline 1. Newton s Laws of Mo3on 2. Newton s Law of Univesal Gavita3on 3. Calcula3ng satellite obital paametes (assuming cicula mo3on) Scala & Vectos Scala: a physical quan3ty

More information

HW Solutions # MIT - Prof. Please study example 12.5 "from the earth to the moon". 2GmA v esc

HW Solutions # MIT - Prof. Please study example 12.5 from the earth to the moon. 2GmA v esc HW Solutions # 11-8.01 MIT - Pof. Kowalski Univesal Gavity. 1) 12.23 Escaping Fom Asteoid Please study example 12.5 "fom the eath to the moon". a) The escape velocity deived in the example (fom enegy consevation)

More information

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS

DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS DEVIL PHYSICS THE BADDEST CLASS ON CAMPUS IB PHYSICS LSN 10-: MOTION IN A GRAVITATIONAL FIELD Questions Fom Reading Activity? Gavity Waves? Essential Idea: Simila appoaches can be taken in analyzing electical

More information

Magnetic Field. Conference 6. Physics 102 General Physics II

Magnetic Field. Conference 6. Physics 102 General Physics II Physics 102 Confeence 6 Magnetic Field Confeence 6 Physics 102 Geneal Physics II Monday, Mach 3d, 2014 6.1 Quiz Poblem 6.1 Think about the magnetic field associated with an infinite, cuent caying wie.

More information

Chapter 4. Newton s Laws of Motion

Chapter 4. Newton s Laws of Motion Chapte 4 Newton s Laws of Motion 4.1 Foces and Inteactions A foce is a push o a pull. It is that which causes an object to acceleate. The unit of foce in the metic system is the Newton. Foce is a vecto

More information

Escape Velocity. GMm ] B

Escape Velocity. GMm ] B 1 PHY2048 Mach 31, 2006 Escape Velocity Newton s law of gavity: F G = Gm 1m 2 2, whee G = 667 10 11 N m 2 /kg 2 2 3 10 10 N m 2 /kg 2 is Newton s Gavitational Constant Useful facts: R E = 6 10 6 m M E

More information

Chap13. Universal Gravitation

Chap13. Universal Gravitation Chap13. Uniesal Gaitation Leel : AP Physics Instucto : Kim 13.1 Newton s Law of Uniesal Gaitation - Fomula fo Newton s Law of Gaitation F g = G m 1m 2 2 F21 m1 F12 12 m2 - m 1, m 2 is the mass of the object,

More information