Sample Solutions for Assignment 3.

Size: px
Start display at page:

Download "Sample Solutions for Assignment 3."

Transcription

1 AMath 383, Autumn Sample Solutions for Assignment 3. Reading: Chs 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. This will be $ million if X = 6 /e.6 = 548, I guess a fair price for it would be somewhat less than this since the buer would not get the mone for ears, while if he invested at 3% he could withdraw his mone at an time.. Eercise of Chapter 4. (a) Let (t) be the concentration of Pb. While in the ore, it decas according to d/dt = λ, but it is also replenished b r from 6 Ra decaing to Pb. Hence, in the ore, d/dt = λ + r. Outside the ore, it decas at the same rate but is not replenished, so after manufacture d/dt = λ. (b) Inside the ore, there is radioactive equilibrium; that is d/dt =, or, λ = r. If t is the last instant before removal from the ore, then λ(t ) = r = per minute. (c) Since (t ) = r/λ, (t) = e λ(t t ) (t ) = e λ(t t ) r/λ. (d) Differentiating the epression in (c), and equating it to the measured value of d/dt, we find d dt = λe λ(t t ) r/λ = 8.5 e λ(t t ) = 8.5/r. Taking logs on both sides and solving for t t ields t t = ln(8.5/r)/λ. Since the half-life of Pb is ears, the deca rate λ is ln /.35 per ear. The epression for t t is an increasing function of r, so it will be largest for r =. If substituting this value for r and the value of λ indicates that t t < 3, then the painting must be a fake. Making these substitutions we find t t =.4. The painting is at most about ears old and so must be a forger.

2 3. Eercise of Chapter 5. Let r be the distance of the moon from the center of the earth in km and let v be its velocit in km/s. We are told that it travels around a near circular orbit of radius r in 8 das, or, seconds. Since the circumference of the circle is πr, this means that its velocit is v = πr/(.4 6 ) km/s. () Equating the acceleration due to gravit and the centrifugal force, we are told in (b) that GM earth /r = v /r. Substituting the epression in () for v and solving for r, we find GM earth r = 4π r.4 r3 (GM earth ).48. () We are told in part (c) that the radius of the earth is a = 64 km and that the gravitational pull of the earth on an object near its surface is 98 cm/s, or km/s. That is, GM earth a = Substituting a for (GM earth ) in (), we find r = , and taking the cube root, which is about 6 earth radii. r km, 4. 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 b just two space dimensions and. Assume that the sun is at the origin (, ). The sstem of differential equations describing the satellite s motion is Newton s law of gravitation, discovered b Newton in the late 7th centur, namel = ( + ) 3, = ( + ) 3. (a) This sstem of two second-order differential equations can be simplified to a sstem of four first-order differential equations b introducing two new variables z = (t) (the speed of the satellite in the space direction) and w = (t) (the speed of the satellite in the space direction). Write down this sstem of equations.

3 = z = w z = ( + ) 3 w = ( + ). 3 (b) Use MATLAB routine ode45 to solve the sstem ou wrote down in (a). Tpe help ode45 to find out how to use this routine. You will need to create a.m file that returns the derivative values (t), (t), z (t) and w (t) when given values of t,,, z, and w. It might be in a file called dvdt.m and look like the following function vprime = dvdt(t,v) % Given t and vector v = [(t),(t),z(t),w(t)], this function % returns vector vprime = [ (t), (t),z (t),w (t)]. vprime(,) = vprime(,) = vprime(3,) = vprime(4,) = % Enter epression for (t) % Enter epression for (t) % Enter epression for z (t) % Enter epression for w (t) Start at t = with () = 4, () =, z() =, and w() =.5 and run out to tma = 5. Plot the position of the satellite at each time step returned b ode45. You should see an almost circular orbit. [Note: If ou plot things in MATLAB, be sure to sa ais( equal ), or the aes will be different lengths and our circle will look like an ellipse!] Keeping (), (), and z() fied, tr varing w(). You will have to adjust tma so that ou see a complete orbit. Some recommended values are: w() tma For initial velocities slightl larger than.5, ou should see an elliptical orbit. The fact that planets and comets have elliptical orbits was observed b Kepler in the earl 7th centur, but it was not eplained until Newton developed his law of gravitation 6 ears later. The eccentricit of the ellipse depends on the size of the initial velocit w(). The orbits of planets, such as the Earth, are tpicall not ver eccentric. The look almost like circles. But the orbits of comets, such as Halle s comet and Hale-Bopp, can be ver eccentric. That is wh Halle s 3

4 comet can be seen from Earth onl once ever 76 ears and Hale-Bopp about once ever ears: the rest of the time the are ver far from the sun traveling around their highl eccentric orbits. If ou make the initial velocit large enough, the orbit becomes a hperbola, with the satellite approaching the direction of a straight line heading right out of the solar sstem; in this case the satellite escapes the gravitational attraction of the sun. Man comets pass through the solar sstem on hperbolic orbits: the enter the solar sstem, pass b the sun once and then leave the solar sstem again. Some spacecraft launched from Earth, such as Voager II which was launched in 977 and flew past Pluto in 989, will soon leave the solar sstem on a hperbolic path, never to return. The borderline case between elliptical and hperbolic orbits is when w() is eactl equal to the escape velocit: the value just large enough for the satellite to escape from the solar sstem. In this case the orbit is actuall a parabola, which is the borderline case between an ellipse and a hperbola. For initial velocities less than.5 but greater than, the orbit is again an ellipse. Turn in plots showing the tpes of orbits described, labeled with the value of w() which gives rise to that path. The code for computing the derivative of each variable should read: function vprime = dvdt(t,v) % Given t and vector v = [(t),(t),z(t),w(t)], this function % returns vector vprime = [ (t), (t),z (t),w (t)]. vprime(,) = v(3); % epression for (t) vprime(,) = v(4); % epression for (t) vprime(3,) = -v()/(v()^ + v()^)^(3/); % epression for z (t) vprime(4,) = -v()/(v()^ + v()^)^(3/); % epression for w (t) The following code runs ode45 to solve the sstem of ode s with different initial data and it plots the orbits ( vs coordinates): % Plot orbits corresponding to different initial velocities. v = [4; ; ;.5]; % First set of initial data. [tout,vout] = ode45(@dvdt, [ 5], v); % Use ode45 to solve ivp. subplot(,3,) plot(vout(:,),vout(:,)), ais equal % Plot orbit. label( ), label( ), title( w() =.5 ) v(4) =.6; % Second initial velocit. [tout,vout] = ode45(@dvdt, [ 5], v); % Use ode45 to solve ivp. subplot(,3,) plot(vout(:,),vout(:,)), ais equal % Plot orbit. label( ), label( ), title( w() =.6 ) 4

5 v(4) =.8; % Third initial velocit. [tout,vout] = ode45(@dvdt, [ ], v); % Use ode45 to solve ivp. subplot(,3,3) plot(vout(:,),vout(:,)), ais equal % Plot orbit. label( ), label( ), title( w() =.8 ) v(4) =.4; % Fourth initial velocit. [tout,vout] = ode45(@dvdt, [ 35], v); % Use ode45 to solve ivp. subplot(,3,4) plot(vout(:,),vout(:,)), ais equal % Plot orbit. label( ), label( ), title( w() =.4 ) v(4) =.; % Fifth initial velocit. [tout,vout] = ode45(@dvdt, [ ], v); % Use ode45 to solve ivp. subplot(,3,5) plot(vout(:,),vout(:,)), ais equal % Plot orbit. label( ), label( ), title( w() =. ) w() =.5 w() =.6 w() = w() =.4 w() =

SECTION 8-7 De Moivre s Theorem. De Moivre s Theorem, n a Natural Number nth-roots of z

SECTION 8-7 De Moivre s Theorem. De Moivre s Theorem, n a Natural Number nth-roots of z 8-7 De Moivre s Theorem 635 B eactl; compute the modulus and argument for part C to two decimal places. 9. (A) 3 i (B) 1 i (C) 5 6i 10. (A) 1 i 3 (B) 3i (C) 7 4i 11. (A) i 3 (B) 3 i (C) 8 5i 12. (A) 3

More information

The second type of conic is called an ellipse, and is defined as follows. Definition of Ellipse

The second type of conic is called an ellipse, and is defined as follows. Definition of Ellipse 72 Chapter 10 Topics in Analtic Geometr 10.3 ELLIPSES What ou should learn Write equations of ellipses in standard form and graph ellipses. Use properties of ellipses to model and solve real-life problems.

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

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

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following:

Math 323 Exam 2 - Practice Problem Solutions. 2. Given the vectors a = 1,2,0, b = 1,0,2, and c = 0,1,1, compute the following: Math 323 Eam 2 - Practice Problem Solutions 1. Given the vectors a = 2,, 1, b = 3, 2,4, and c = 1, 4,, compute the following: (a) A unit vector in the direction of c. u = c c = 1, 4, 1 4 =,, 1+16+ 17 17

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

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

3.1 Exponential Functions and Their Graphs

3.1 Exponential Functions and Their Graphs .1 Eponential Functions and Their Graphs Sllabus Objective: 9.1 The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential or logarithmic

More information

Explanation: The escape velocity and the orbital velocity for a satellite are given by

Explanation: The escape velocity and the orbital velocity for a satellite are given by 1. A satellite orbits at a height h above the Earth's surface. Let R be the Earth's radius. If Ve is the escape velocity and Vo is the orbital velocity of the satellite orbiting at a height h

More information

APPENDIX D Rotation and the General Second-Degree Equation

APPENDIX D Rotation and the General Second-Degree Equation APPENDIX D Rotation and the General Second-Degree Equation Rotation of Aes Invariants Under Rotation After rotation of the - and -aes counterclockwise through an angle, the rotated aes are denoted as the

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

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

Practice A ( 1, 3 ( 0, 1. Match the function with its graph. 3 x. Explain how the graph of g can be obtained from the graph of f. 5 x.

Practice A ( 1, 3 ( 0, 1. Match the function with its graph. 3 x. Explain how the graph of g can be obtained from the graph of f. 5 x. 8. Practice A For use with pages 65 7 Match the function with its graph.. f. f.. f 5. f 6. f f Lesson 8. A. B. C. (, 6) (0, ) (, ) (0, ) ( 0, ) (, ) D. E. F. (0, ) (, 6) ( 0, ) (, ) (, ) (0, ) Eplain how

More information

f 0 ab a b: base f

f 0 ab a b: base f Precalculus Notes: Unit Eponential and Logarithmic Functions Sllabus Objective: 9. The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential

More information

REVIEW OF CONIC SECTIONS

REVIEW OF CONIC SECTIONS REVIEW OF CONIC SECTIONS In this section we give geometric definitions of parabolas, ellipses, and hperbolas and derive their standard equations. The are called conic sections, or conics, because the result

More information

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

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

More information

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

The details of the derivation of the equations of conics are com-

The details of the derivation of the equations of conics are com- Part 6 Conic sections Introduction Consider the double cone shown in the diagram, joined at the verte. These cones are right circular cones in the sense that slicing the double cones with planes at right-angles

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

Kepler's Laws and Newton's Laws

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

More information

(x a) (a, b, c) P. (z c) E (y b)

(x a) (a, b, c) P. (z c) E (y b) ( a). FUNCTIONS OF TWO VARIABLES 67 G (,, ) ( c) (a, b, c) P E ( b) Figure.: The diagonal PGgives the distance between the points (,, ) and (a, b, c) F Using Pthagoras theorem twice gives (PG) =(PF) +(FG)

More information

AP Physics QUIZ Gravitation

AP Physics QUIZ Gravitation AP Physics QUIZ Gravitation Name: 1. If F1 is the magnitude of the force exerted by the Earth on a satellite in orbit about the Earth and F2 is the magnitude of the force exerted by the satellite on the

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

Section 8.5 Parametric Equations

Section 8.5 Parametric Equations 504 Chapter 8 Section 8.5 Parametric Equations Man shapes, even ones as simple as circles, cannot be represented as an equation where is a function of. Consider, for eample, the path a moon follows as

More information

c) domain {x R, x 3}, range {y R}

c) domain {x R, x 3}, range {y R} Answers Chapter 1 Functions 1.1 Functions, Domain, and Range 1. a) Yes, no vertical line will pass through more than one point. b) No, an vertical line between = 6 and = 6 will pass through two points..

More information

Not for reproduction

Not for reproduction REVIEW OF CONIC SECTIONS In this section we give geometric definitions of parabolas, ellipses, and hperbolas and derive their standard equations. The are called conic sections, or conics, because the result

More information

Chapter 12 and 13 Math 125 Practice set Note: the actual test differs. Given f(x) and g(x), find the indicated composition and

Chapter 12 and 13 Math 125 Practice set Note: the actual test differs. Given f(x) and g(x), find the indicated composition and Chapter 1 and 13 Math 1 Practice set Note: the actual test differs. Given f() and g(), find the indicated composition. 1) f() = - ; g() = 3 + Find (f g)(). Determine whether the function is one-to-one.

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

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 13 TAKE HOME TEST (Gravity&Kepler s Laws) 4/23/13. Make sure your calculator is in degrees, show all work, box answers, UNITS!

Chapter 13 TAKE HOME TEST (Gravity&Kepler s Laws) 4/23/13. Make sure your calculator is in degrees, show all work, box answers, UNITS! AP Physics C! name Chapter 13 TAKE HOME TEST (Gravity&Kepler s Laws) 4/23/13 Make sure your calculator is in degrees, show all work, box answers, UNITS! Chapter Notes: 1.) The free fall acceleration on

More information

Lecture 9 Chapter 13 Gravitation. Gravitation

Lecture 9 Chapter 13 Gravitation. Gravitation Lecture 9 Chapter 13 Gravitation Gravitation UNIVERSAL GRAVITATION For any two masses in the universe: F = Gm 1m 2 r 2 G = a constant evaluated by Henry Cavendish +F -F m 1 m 2 r Two people pass in a hall.

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

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

AP Physics Multiple Choice Practice Gravitation

AP Physics Multiple Choice Practice Gravitation AP Physics Multiple Choice Practice Gravitation 1. Each of five satellites makes a circular orbit about an object that is much more massive than any of the satellites. The mass and orbital radius of each

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 22: Gravitational Orbits

Lecture 22: Gravitational Orbits Lecture : Gravitational Orbits Astronomers were observing the motion of planets long before Newton s time Some even developed heliocentric models, in which the planets moved around the sun Analysis of

More information

CH 8. Universal Gravitation Planetary and Satellite Motion

CH 8. Universal Gravitation Planetary and Satellite Motion CH 8 Universal Gravitation Planetary and Satellite Motion Sir Isaac Newton UNIVERSAL GRAVITATION Newton: Universal Gravitation Newton concluded that earthly objects and heavenly objects obey the same physical

More information

Chapter 14 Satellite Motion

Chapter 14 Satellite Motion 1 Academic Physics Mechanics Chapter 14 Satellite Motion The Mechanical Universe Kepler's Three Laws (Episode 21) The Kepler Problem (Episode 22) Energy and Eccentricity (Episode 23) Navigating in Space

More information

Math125 Exam 5 (Final) Review Name. Do the following as indicated. 17) log 17x = 1.2 (Round answer to four decimal places.)

Math125 Exam 5 (Final) Review Name. Do the following as indicated. 17) log 17x = 1.2 (Round answer to four decimal places.) Math12 Eam (Final) Review Name Do the following as indicated. For the given functions f and g, find the requested function. 1) f() = - 6; g() = 92 Find (f - g)(). 2) f() = 33 + 1; g() = 2-2 Find (f g)().

More information

Systems of Linear Equations: Solving by Graphing

Systems of Linear Equations: Solving by Graphing 8.1 Sstems of Linear Equations: Solving b Graphing 8.1 OBJECTIVE 1. Find the solution(s) for a set of linear equations b graphing NOTE There is no other ordered pair that satisfies both equations. From

More information

Uniform Circular Motion

Uniform Circular Motion Circular Motion Uniform Circular Motion Uniform Circular Motion Traveling with a constant speed in a circular path Even though the speed is constant, the acceleration is non-zero The acceleration responsible

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

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

2-6. _ k x and y = _ k. The Graph of. Vocabulary. Lesson

2-6. _ k x and y = _ k. The Graph of. Vocabulary. Lesson Chapter 2 Lesson 2-6 BIG IDEA The Graph of = _ k and = _ k 2 The graph of the set of points (, ) satisfing = k_, with k constant, is a hperbola with the - and -aes as asmptotes; the graph of the set of

More information

Definition of an Ellipse Drawing an Ellipse Standard Equations and Their Graphs Applications

Definition of an Ellipse Drawing an Ellipse Standard Equations and Their Graphs Applications 616 9 Additional Topics in Analtic Geometr 53. Space Science. A designer of a 00-foot-diameter parabolic electromagnetic antenna for tracking space probes wants to place the focus 100 feet above the verte

More information

Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world

Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Pearson Education Limited Edinburgh Gate Harlow Esse CM20 2JE England and Associated Companies throughout the world Visit us on the World Wide Web at: www.pearsoned.co.uk Pearson Education Limited 2014

More information

Quest Chapter 14. Think back to circular motion. What keeps something moving around an object instead of to it?

Quest Chapter 14. Think back to circular motion. What keeps something moving around an object instead of to it? 1 Since the moon is gravitationally attracted to the Earth, why doesn t it simply crash into the Earth? 1.When the moon moves close to the Earth, the air on the Earth repels it. 2. The moon s tangential

More information

Math125 Exam 5 Review Name. Do the following as indicated.

Math125 Exam 5 Review Name. Do the following as indicated. Math Eam Review Name Do the following as indicated. For the given functions f and g, find the requested function. ) f() = - 6; g() = 9 Find (f - g)(). ) ) f() = 33 + ; g() = - Find (f g)(). 3) f() = ;

More information

STRAND: GRAPHS Unit 5 Growth and Decay

STRAND: GRAPHS Unit 5 Growth and Decay CMM Subject Support Strand: GRAPHS Unit 5 Growth and Deca: Tet STRAND: GRAPHS Unit 5 Growth and Deca TEXT Contents Section 5. Modelling Population 5. Models of Growth and Deca 5. Carbon Dating 5.4 Rate

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

The telescopes at the W.M. Keck Observatory in Hawaii use hyperbolic mirrors.

The telescopes at the W.M. Keck Observatory in Hawaii use hyperbolic mirrors. UNIT 15 Conic Sections The telescopes at the W.M. Keck Observator in Hawaii use hperbolic mirrors. Copright 009, K1 Inc. All rights reserved. This material ma not be reproduced in whole or in part, including

More information

Planetary Mechanics:

Planetary Mechanics: Planetary Mechanics: Satellites A satellite is an object or a body that revolves around another body due to the gravitational attraction to the greater mass. Ex: The planets are natural satellites of the

More information

Fair Game Review. Chapter 8. Graph the linear equation. Big Ideas Math Algebra Record and Practice Journal

Fair Game Review. Chapter 8. Graph the linear equation. Big Ideas Math Algebra Record and Practice Journal Name Date Chapter Graph the linear equation. Fair Game Review. =. = +. =. =. = +. = + Copright Big Ideas Learning, LLC Big Ideas Math Algebra Name Date Chapter Fair Game Review (continued) Evaluate the

More information

VISUAL PHYSICS ONLINE

VISUAL PHYSICS ONLINE VISUAL PHYSICS ONLINE PRACTICAL ACTIVITY HOW DO THE PANETS MOVE? One of the most important questions historically in Physics was how the planets move. Many historians consider the field of Physics to date

More information

MTH 112 Practice Test 3 Sections 3.3, 3.4, 3.5, 1.9, 7.4, 7.5, 8.1, 8.2

MTH 112 Practice Test 3 Sections 3.3, 3.4, 3.5, 1.9, 7.4, 7.5, 8.1, 8.2 MTH 112 Practice Test 3 Sections 3.3, 3., 3., 1.9, 7., 7., 8.1, 8.2 Use properties of logarithms to epand the logarithmic epression as much as possible. Where possible, evaluate logarithmic epressions

More information

Second-Order Linear Differential Equations C 2

Second-Order Linear Differential Equations C 2 C8 APPENDIX C Additional Topics in Differential Equations APPENDIX C. Second-Order Homogeneous Linear Equations Second-Order Linear Differential Equations Higher-Order Linear Differential Equations Application

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

P.4 Lines in the Plane

P.4 Lines in the Plane 28 CHAPTER P Prerequisites P.4 Lines in the Plane What ou ll learn about Slope of a Line Point-Slope Form Equation of a Line Slope-Intercept Form Equation of a Line Graphing Linear Equations in Two Variables

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

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

Solutions to O Level Add Math paper

Solutions to O Level Add Math paper Solutions to O Level Add Math paper 4. Bab food is heated in a microwave to a temperature of C. It subsequentl cools in such a wa that its temperature, T C, t minutes after removal from the microwave,

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

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

MAT 120 Test 1 May 20, 2013 (4:00 4:50 PM)

MAT 120 Test 1 May 20, 2013 (4:00 4:50 PM) Name: Academic Integrit Signature: I have abided b the UNCG Academic Integrit Polic. Read all of the following information before starting the eam: It is to our advantage to answer ALL of the 0 questions.

More information

Chapter 5 Part 2. Newton s Law of Universal Gravitation, Satellites, and Weightlessness

Chapter 5 Part 2. Newton s Law of Universal Gravitation, Satellites, and Weightlessness Chapter 5 Part 2 Newton s Law of Universal Gravitation, Satellites, and Weightlessness Newton s ideas about gravity Newton knew that a force exerted on an object causes an acceleration. Most forces occurred

More information

f 0 ab a b: base f

f 0 ab a b: base f Precalculus Notes: Unit Eponential and Logarithmic Functions Sllaus Ojective: 9. The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential

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. 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

Functions. Introduction

Functions. Introduction Functions,00 P,000 00 0 70 7 80 8 0 000 00 00 Figure Standard and Poor s Inde with dividends reinvested (credit "bull": modification of work b Praitno Hadinata; credit "graph": modification of work b MeasuringWorth)

More information

The formulas below will be provided in the examination booklet. Compound Interest: r n. Continuously: n times per year: 1

The formulas below will be provided in the examination booklet. Compound Interest: r n. Continuously: n times per year: 1 HONORS ALGEBRA B Semester Eam Review The semester B eamination for Honors Algebra will consist of two parts. Part will be selected response on which a calculator will not be allowe Part will be short answer

More information

Unit: Planetary Science

Unit: Planetary Science Orbital Motion Kepler s Laws GETTING AN ACCOUNT: 1) go to www.explorelearning.com 2) click on Enroll in a class (top right hand area of screen). 3) Where it says Enter class Code enter the number: MLTWD2YAZH

More information

The semester B examination for Algebra 2 will consist of two parts. Part 1 will be selected response. Part 2 will be short answer. n times per year: 1

The semester B examination for Algebra 2 will consist of two parts. Part 1 will be selected response. Part 2 will be short answer. n times per year: 1 ALGEBRA B Semester Eam Review The semester B eamination for Algebra will consist of two parts. Part 1 will be selected response. Part will be short answer. Students ma use a calculator. If a calculator

More information

Gravitation & Kepler s Laws

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

More information

Math Review Packet #5 Algebra II (Part 2) Notes

Math Review Packet #5 Algebra II (Part 2) Notes SCIE 0, Spring 0 Miller Math Review Packet #5 Algebra II (Part ) Notes Quadratic Functions (cont.) So far, we have onl looked at quadratic functions in which the term is squared. A more general form of

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

Linear and Nonlinear Systems of Equations. The Method of Substitution. Equation 1 Equation 2. Check (2, 1) in Equation 1 and Equation 2: 2x y 5?

Linear and Nonlinear Systems of Equations. The Method of Substitution. Equation 1 Equation 2. Check (2, 1) in Equation 1 and Equation 2: 2x y 5? 3330_070.qd 96 /5/05 Chapter 7 7. 9:39 AM Page 96 Sstems of Equations and Inequalities Linear and Nonlinear Sstems of Equations What ou should learn Use the method of substitution to solve sstems of linear

More information

EXAM #2. ANSWERS ASTR , Spring 2008

EXAM #2. ANSWERS ASTR , Spring 2008 EXAM #2. ANSWERS ASTR 1101-001, Spring 2008 1. In Copernicus s heliocentric model of the universe, which of the following astronomical objects was placed in an orbit around the Earth? The Moon 2. In his

More information

4 The Cartesian Coordinate System- Pictures of Equations

4 The Cartesian Coordinate System- Pictures of Equations The Cartesian Coordinate Sstem- Pictures of Equations Concepts: The Cartesian Coordinate Sstem Graphs of Equations in Two Variables -intercepts and -intercepts Distance in Two Dimensions and the Pthagorean

More information

Patterns in the Solar System (Chapter 18)

Patterns in the Solar System (Chapter 18) GEOLOGY 306 Laboratory Instructor: TERRY J. BOROUGHS NAME: Patterns in the Solar System (Chapter 18) For this assignment you will require: a calculator, colored pencils, a metric ruler, and meter stick.

More information

HW Chapter 5 Q 7,8,18,21 P 4,6,8. Chapter 5. The Law of Universal Gravitation Gravity

HW Chapter 5 Q 7,8,18,21 P 4,6,8. Chapter 5. The Law of Universal Gravitation Gravity HW Chapter 5 Q 7,8,18,21 P 4,6,8 Chapter 5 The Law of Universal Gravitation Gravity Newton s Law of Universal Gravitation Every particle in the Universe attracts every other particle with a force that

More information

Chapter 8 Notes SN AA U2C8

Chapter 8 Notes SN AA U2C8 Chapter 8 Notes SN AA U2C8 Name Period Section 8-: Eploring Eponential Models Section 8-2: Properties of Eponential Functions In Chapter 7, we used properties of eponents to determine roots and some of

More information

3.2 Understanding Relations and Functions-NOTES

3.2 Understanding Relations and Functions-NOTES Name Class Date. Understanding Relations and Functions-NOTES Essential Question: How do ou represent relations and functions? Eplore A1.1.A decide whether relations represented verball, tabularl, graphicall,

More information

17.3. Parametric Curves. Introduction. Prerequisites. Learning Outcomes

17.3. Parametric Curves. Introduction. Prerequisites. Learning Outcomes Parametric Curves 7.3 Introduction In this Section we eamine et another wa of defining curves - the parametric description. We shall see that this is, in some was, far more useful than either the Cartesian

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

14.1 Earth Satellites. The path of an Earth satellite follows the curvature of the Earth.

14.1 Earth Satellites. The path of an Earth satellite follows the curvature of the Earth. The path of an Earth satellite follows the curvature of the Earth. A stone thrown fast enough to go a horizontal distance of 8 kilometers during the time (1 second) it takes to fall 5 meters, will orbit

More information

Explain how it is possible for the gravitational force to cause the satellite to accelerate while its speed remains constant.

Explain how it is possible for the gravitational force to cause the satellite to accelerate while its speed remains constant. YEAR 12 PHYSICS: GRAVITATION PAST EXAM QUESTIONS Name: QUESTION 1 (1995 EXAM) (a) State Newton s Universal Law of Gravitation in words (b) A satellite of mass (m) moves in orbit of a planet with mass (M).

More information

Celestial Orbits. Adrienne Carter Ottopaskal Rice May 18, 2001

Celestial Orbits. Adrienne Carter Ottopaskal Rice May 18, 2001 Celestial Orbits Adrienne Carter sillyajc@yahoo.com Ottopaskal Rice ottomanbuski@hotmail.com May 18, 2001 1. Tycho Brache, a Danish astronomer of the late 1500s, had collected large amounts of raw data

More information

Satellite Communications

Satellite Communications Satellite Communications Lecture (3) Chapter 2.1 1 Gravitational Force Newton s 2nd Law: r r F = m a Newton s Law Of Universal Gravitation (assuming point masses or spheres): Putting these together: r

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

Chapters 8 & 9 Review for Final

Chapters 8 & 9 Review for Final Math 203 - Intermediate Algebra Professor Valdez Chapters 8 & 9 Review for Final SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Solve the formula for

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

Equations for Some Hyperbolas

Equations for Some Hyperbolas Lesson 1-6 Lesson 1-6 BIG IDEA From the geometric defi nition of a hperbola, an equation for an hperbola smmetric to the - and -aes can be found. The edges of the silhouettes of each of the towers pictured

More information

Physics 111. Tuesday, November 9, Universal Law Potential Energy Kepler s Laws. density hydrostatic equilibrium Pascal s Principle

Physics 111. Tuesday, November 9, Universal Law Potential Energy Kepler s Laws. density hydrostatic equilibrium Pascal s Principle ics Tuesday, ember 9, 2004 Ch 12: Ch 15: Gravity Universal Law Potential Energy Kepler s Laws Fluids density hydrostatic equilibrium Pascal s Principle Announcements Wednesday, 8-9 pm in NSC 118/119 Sunday,

More information

More examples: Summary of previous lecture

More examples: Summary of previous lecture More examples: 3 N Individual Forces Net Force 5 N 37 o 4 N Summary of previous lecture 1 st Law A net non zero force is required to change the velocity of an object. nd Law What happens when there is

More information

Functions. Introduction

Functions. Introduction Functions,00 P,000 00 0 970 97 980 98 990 99 000 00 00 Figure Standard and Poor s Inde with dividends reinvested (credit "bull": modification of work b Praitno Hadinata; credit "graph": modification of

More information

LESSON #48 - INTEGER EXPONENTS COMMON CORE ALGEBRA II

LESSON #48 - INTEGER EXPONENTS COMMON CORE ALGEBRA II LESSON #8 - INTEGER EXPONENTS COMMON CORE ALGEBRA II We just finished our review of linear functions. Linear functions are those that grow b equal differences for equal intervals. In this unit we will

More information

is on the graph of y = f 1 (x).

is on the graph of y = f 1 (x). Objective 2 Inverse Functions Illustrate the idea of inverse functions. f() = 2 + f() = Two one-to-one functions are inverses of each other if (f g)() = of g, and (g f)() = for all in the domain of f.

More information

5.1. Accelerated Coordinate Systems:

5.1. Accelerated Coordinate Systems: 5.1. Accelerated Coordinate Systems: Recall: Uniformly moving reference frames (e.g. those considered at 'rest' or moving with constant velocity in a straight line) are called inertial reference frames.

More information

Circular Motion and Gravitation Notes 1 Centripetal Acceleration and Force

Circular Motion and Gravitation Notes 1 Centripetal Acceleration and Force Circular Motion and Gravitation Notes 1 Centripetal Acceleration and Force This unit we will investigate the special case of kinematics and dynamics of objects in uniform circular motion. First let s consider

More information

The Law of Ellipses (Kepler s First Law): all planets orbit the sun in a

The Law of Ellipses (Kepler s First Law): all planets orbit the sun in a Team Number Team Members Present Learning Objectives 1. Practice the Engineering Process a series of steps to follow to design a solution to a problem. 2. Practice the Five Dimensions of Being a Good Team

More information