Mathematical Modeling Project in Mathematica Cynthia Wenz MA 354

Size: px
Start display at page:

Download "Mathematical Modeling Project in Mathematica Cynthia Wenz MA 354"

Transcription

1 clw.ma 1 Mathematical Modeling Project in Mathematica Cynthia Wenz MA 354 Introduction and Problem Statement When a parachute jump is made from an airplane, the first part of the descent is made in free fall at a relatively high altitude. After a certain time the parachutist then opens the parachute to enable a soft landing to be completed. The important and interesting question for the jumper is to decide when the parachute should be opened. Obviously it must not be done too late or the landing speed will be too great and the parachutist may face injury and possibly death. On the other hand, at a great altitude with a thin atmosphere a free fall can generate great speeds which can add exhileration. There may also be more practical reasons for not opening the parachute too early such as the proximity of the plane and the other jumpers. It is therefore of interest to model the motion of the parachute jump and to determine if there is an optimum position at which to open the chute to maximize enjoyment and maintain safety. If we take an airplane travelling horizontal at a given height and speed the most important simulation of a parachute jump will be to make accurate assessments of the air resistance and the obvious change in air drag when the parachute is opened. The idea of terminal speed becomes an important factor. At time t=0 when the parachutist initially leaves the plane his speed is zero and the retarding force of air resistance is also zero. The acceleration will simply be g, 9.8 m/s 2, in the downward direction. As the speed of the jumper increases, the drag force increases and the acceleration becomes less than g. Eventually, the speed is great enough for the drag force, given by bv n to equal the force of gravity mg, so the acceleration is zero. The object then continues moving at a constant speed v t, called its terminal speed. constants Let Fnet = mg - bv n = ma where bv n is the drag force with b and n as Then if in a state of free fall when a = 0 because the terminal velocity has been

2 clw.ma 2 achieved, bvtn = mg vt= (mg/b)^(1/n) Therefore the larger the constant b, the smaller the terminal speed. In regard to the parachute problem, it is reported that the terminal speed of human free fall is about 120 miles/hour. The parachutist hopes to make a soft landing, a landing that is essentially equal to falling off a 12ft wall. This means that the terminal velocity with parachute open must be the same as the velocity acquired on falling off the wall. More simply put it is useful to achieve a terminal speed during the parachute-open portion of the jump that is equivalent to the speed attained when one falls off a 12 ft wall. Simple energy equations on falling through a height h( and neglecting air resistance over a small distance, e.g. 12 ft) yield Clear[ h, g, m] g=9.8065; (*meters/sec^2*) h=(12 * (12/39.37)); (*meters*) Solve [(1/2) * m * v^2 == m * g * h, v] {{v -> }, {v -> }} So the velocity one hopes to land at is approximately 8.47 m/s. If we allow for air resistance proportional to the square of the velocity or v air resistance constant k is given by v=8.47; (*meters/sec*) Solve[ k== (g/v^2), k] 2 = g/k, then the {{k -> }} So the air resistance constant for the landing at terminal speed is approximately.1367 m-1. The air resistance constant for the free fall part can be calculated from the terminal velocity v = g/k which is the case when the air resistance is taken to be directly proportional to velocity. This is valid since the atmosphere is fairly thin at a great height and the falling human body is relatively compact. If we take the terminal velocity to be 120 miles/hour, which is equal to m/s then,

3 clw.ma 3 v = Solve [k == g/v, k] {{k -> }} (*meters/sec*) So the air resistance constant for the free fall will be approximately.1828 s-1. Now that the issue of air resistance is clarified and the constants are derived, the model of the parachute fall can be formulated.

4 clw.ma 4 Mathematical Model In order to give a better view of the situation, I offer the rather crude representation given below. The rectangle and the line extending from it represent the plane and its continuing path as it flies away. The green line is that of the parachutist and his descent. The rather odd circle is a representation of the angle theta which will become important in building equations for the motion of the parachutist. height ground It will be necessary to define a table of symbols and units. Description Type Symbol Units Horizontal distance travelled by parachutist Variable x(t) m Vertical distance dropped by parachutist Variable y(t) m Time Variable t s Velocity of parachutist Variable v m/s Mass of parachutist plus equipment Parameter m kg Air resistance force Variable R N Air resistance constant Parameter k s -1 Acceleration due to gravity Constant g m/s 2 Angle of inclination of path of parachutist Variable theta deg Initial height Parameter h m Initial horizonatal velocity Parameter u m/s

5 clw.ma 5 To formulate a model equations of motions for the parachutist must be defined. Application of Newton s law gives two equations: one for the horizontal motion and one for the vertical. For the horizontal motion, -R cos ϑ = m x [t] and for vertical motion, -R sin ϑ + mg = m y [t] where, R = mkvn. Ιn essence these equations are a representation of the standard F = ma. They are formulated with respect to the component forces of the vertical and horizontal directions. Τhen from calculus we know, v[t] = Sqrt [ (x [t])^2 + (y [t])^2] x [t] = v[t] cos ϑ y [t] = v[t] sin ϑ The exponent n will be taken as 1 for free fall and 2 for the effect once the parachute has opened. Using the above relations we can easily eliminate v and ϑ to get x [t] = -k x [t] (x [t]^2 + y [t]^2) ^ ((n-1)/2) y [t] = -g - k y [t] (x [t]^2 + y [t]^2) ^ ((n-1)/2) These two differential equations make up the general mathematical model for the parachute drop. It is important to note that the assumption is made that the motion takes place in one plane. In other words this model is only two dimensional. For the first part of the motion, the free fall, the assumption is made that n=1 which leads the two equations to reduce to x [t] = -k x [t]

6 clw.ma 6 y [t] = -g - k y [t] To find the equations of motions Mathematica is used to solve the previous differential equations. Clear[ solution1 ] solution1 = DSolve[ {x [t] == -k x [t], x[0] == 0, x [0] == u}, x, t] u u {{x -> Function[t, ]}} k k t E k Clear[ solution2 ] solution2 = DSolve[ {y [t] == -g - (k y [t]), y[0] == 0, y [0] == 0}, y, t] g g g t {{y -> Function[t, ]}} 2 k t 2 k k E k The two equations solved for above are x[t] = ( u/k ) * [1 - exp( -kt) ] y[t] = - (gt/k) + [ (g/k2) * [ 1- exp( -kt) ] So long as the assumptions made on air resistance hold and the parachute is not opened, then these two equations give the path of the falling person. Through some manipulation of the equations above it is possible to solve for y directly in terms of x and eliminate t. Clear[ x, k, t, y, g] Solve [ x == (u/k) - (u/(k * Exp[ k*t])), t] u Log[ ] u - k x {{t -> }} k t = Log[u/(u - k*x)]/k; Solve [y == -(g t / k) - (g / (Exp[k t] k^2)) - (g / k^2), y] u 2 g u - g k x + g u Log[ ] u - k x {{y -> -( )}} k u

7 clw.ma 7 The above shows that y can be explicitly expressed in terms of x by eliminating t and this is equivalent to y = - (gx/ku) - ((g/k 2)ln( 1 - (kx/u) )) While it is of interest to see the graph of the motion, it is better to do so later on since there is a differing k value that is dependent on time. It is of interest to find the velocity of the jumper as the drop takes place which can be done by taking the de of the equations for the motion which is given by x [t] and y [t]. Clear [ u, k, t] D[ (u/k) - ((u/k) * Exp[-k t]), t] u ---- k t E D[ -(g t / k) - (g / (Exp[k t] k^2)) - (g / k^2), t] g g -(-) k k t E k So the equations describing velocity for the first part of the fall are x [t] = u/e^(k*t) y [t] = - g/k - g/(e^(k*t)*k) Since v2 = x [t] 2 + y [t] 2 v2 is equivalent to 2 g g 2 u (-(-) ) k k t 2 k t E k E The graph of the equation shows the velocity of the jumper while he is in free fall.

8 clw.ma 8 g= 9.8; (*meters/sec2*) k=.1828; (*s-1*) u= 125; (*meters/sec*) Plot[ Sqrt[%13], {t, 0, 10.18}, PlotRange -> {{0,11},{45,125}} ] It can be seen from the graph and its behavior that as time elapses v has a minimum value. In other words, after the jumper leaves the plane his velocity decreases until it reaches a minimum. If one considers that initially he had zero vertical velocity and the horizontal velocity of the plane it makes sense that since he loses the planes propulsion with time that his velocity will reach a minimum before it starts to increase again. This can also be checked through differentiation. If the derivative of the velocity equation is set equal to zero, the time for the minumum can be found and through substitution so can the velocity. D[(g/k - g/(e^(k*t)*k))^2 + u^2/e^(2*k*t), t] g g 2 g ( ) k k t 2 E k 2 k u k t 2 k t E E By taking this derivative and setting it equal to zero we can find the time of this minimum velocity. Solve [ (2*g*(g/k - g/(e^(k*t)*k)))/e^(k*t) - (2*k*u^2)/E^(2*k*t) == 0, t] g + k u Log[ ] 2 g {{t -> }} k

9 clw.ma 9 The speed at this time, t, is obtained by substituting the above into the equation for v simplifying. 2 and t = Log[(g^2 + k^2*u^2)/g^2]/k; Solve [v^2 ==(g/k - g/(e^(k*t)*k))^2 + u^2/e^(2*k*t), v] k u k u {{v -> -(u Sqrt[ ])}, {v -> u Sqrt[ ]}} g + k u g + k u Simplify[ u*(1 - (k^2*u^2)/(g^2 + k^2*u^2))^(1/2) ] 2 g u Sqrt[ ] g + k u The minimun speed is given above. Now the initial value of v is u, the horizintal speed of the plane and the terminal speed is g/k for the free fall; so the miniumum speed of the parachutist is logically less than the that of the initial value of u and less than the terminal speed. and 2 u Sqrt [ g ] < u (initial speed) g2 + k2u2 2 u Sqrt [ g ] < g/k( terminal speed) g2 + k2u2 Taking k =.1828 s-1 and u = 125 m/s (the initial horizontal speed of the the parachutist, the same as that of the plane) we can find the time and the position of the jumper at the minimum velocity as well as that velocity itself. k =.1828; u = 125; g = ; Solve [ v == u*(g^2/(g^2 + k^2*u^2))^(1/2), v] {{v -> }} Solve [t == Log[(g^2 + k^2*u^2)/g^2]/k, t] Solve[True, ]

10 clw.ma 10 t = ; Solve [ x == ( u/k ) * (1 - Exp [-k t] ), x] {{x -> }} Solve[ y == (g t/k) - ( (g/k^2) * ( 1- Exp[ -k t] )), y ] {{y -> }} So the parachutist reaches a minimum speed of 49.31m/s after 10.18s and he has travelled 577.5m in the horizontal direction and fallen m down. The minimum speed obtained by the jumper during free fall is then around 110 miles per hour. Regardless of the value for n and k the parachutist will still experience decreasing velocity before speeding back up again. This time of minimum velocity is perhaps the most appropriate time to open the parachute. When the parachute is opened, there will be a sharp jerk due to the abrupt change in the resistance force. This force can be considerable (and probably unpleasant for the parachutist), which is why the decision can now be made to open the parachute when the speed is a minimum. We can calculate this change in force which causes the jerk from the difference between the values of R before and after the opening. Before the opening, R = mk1v = m * * ( where m is the mass of the jumper) and after the opening, R = mk2v2 = m *.1367 * (49.31) *49.31*m m.1367*49.31^2*m The difference is about 320 * mass (Newtons) which is large, but on the other hand the parachute will not be opened instantaneously; so this change may be spread over several seconds. To simulate the remainder of the this descent, the same equations need to be solved when k=.1367m-1 and n=2. These will represent the motion once the parachute is opened. Once again these are the equations.

11 clw.ma 11 x [t] = -k x [t] (x [t]^2 + y [t]^2) ^ ((n-1)/2) y [t] = -g - k y [t] (x [t]^2 + y [t]^2) ^ ((n-1)/2) So with n=2 and the new value for k NDSolve is used to interpolate the functions over values for time. Since seconds has elapsed in model, initial conditions will be given at seconds. Then the final part of the descent can be graphed. Clear [ g, k, t, v, x, y, solution] k =.1367; g = ; solution = NDSolve[ {-k x [t] ((x [t]^2 + y [t]^2)^.5) == x [t], -g -(k y [t] ((x [t]^2 + y [t]^2)^.5)) == y [t], x[10.18] == 577.5, x [10.18] == 19.44, y[10.18] == , y [10.18] == }, {x[t],y[t]}, {t,10.18,40}] {{x[t] -> InterpolatingFunction[{10.18, 40.}, <>][t], y[t] -> InterpolatingFunction[{10.18, 40.}, <>][t]}} ParametricPlot[ Evaluate[ {x[t],y[t]} /. solution ], {t, 10.18,40}, PlotRange -> {{0,600},{0,600}}, PlotStyle -> RGBColor[1,0,0], AxesLabel -> {ground, height}] {Rectangle[{0,500},{50,550}]} {Rectangle[{0, 500}, {50, 550}]} Show[ %27, Graphics[{%}]] height ground -Graphics- This view is not the best but it does show how far the parachutist went in the initial 10 seconds of free fall. A better picture can be seen by zooming in.

12 clw.ma 12 ParametricPlot[ Evaluate[ {x[t],y[t]} /. solution ], {t, 10.18,40}, PlotRange -> {{550,600},{100,300}}, PlotStyle -> RGBColor[1,0,0], AxesLabel -> {ground(meters), height(meters)}] height meters ground meters Graphics- This new view shows the actual jerk that the parachutist recieves when the chute opens and that it does in fact give quite a force. It now becomes possible to graph the motion during the first ten seconds and the combine the two graphs with the differing air resistance to achieve one picture of the total motion. Clear[ solution1, k, u ] k=.1828; u = 125; solution1 = NDSolve[ {x [t] == -k x [t], x[0] == 0, x [0] == u}, x, {t,0,10.18}] {{x -> InterpolatingFunction[{0., 10.18}, <>]}} Clear[ solution2, k, u, g ] g = ; k =.1828; solution2 = NDSolve[ {y [t] == g - (k y [t]), y[0] == 500, y [0] == 0}, y, {t,0,10.18}] {{y -> InterpolatingFunction[{0., 10.18}, <>]}}

13 clw.ma 13 ParametricPlot[ {x[t]/. solution1[[1]], y[t]/.solution2[[1]]}, {t,0,10.18}, PlotRange -> {{0,600},{0,600}}, PlotStyle -> RGBColor[0,1,0], AxesLabel-> {ground,height}] height ground ParametricPlot[ Evaluate[ {x[t],y[t]} /. solution ], {t, 10.18,40}, PlotRange -> {{0,600},{0,600}}, PlotStyle -> RGBColor[1,0,0], AxesLabel-> {ground, height}] height Graphics- -Graphics ground

14 clw.ma 14 This is not such a great view but it does give a perspective of the distance travelled during free fall and that travelled with the chute open. Show [%45, PlotRange -> {{550,610},{175,230}}] height ground Show[ %44, %43] height ground -Graphics- -Graphics- The above graph shows the actual change in position once the parachute is open. Another topic of interest is the velocity of the jumper through the fall. The graph below represents the change in velocity with time and requires some explanation. The green curve is the velocity of the jumper in free fall until he pulls the chute. We saw this graph earlier in the model. At seconds the parachutist opens the chute and the the red line represents the change in velocity with time as he continues his descent. He will hit the terminal speed with the chute open at approximately 14 seconds and he will land at 33 seconds. The smaller

15 Graphicsclw.ma 15 dashed line represents the terminal speed with the chute of 8.47m/s or the speed acquired when falling off a 12 ft wall. The larger dashed line represents the terminal velocity he would have achieved had he not pulled the chute at seconds and had continued in free fall. He would have built back up his speed and fallen with a velocity of m/s or 120 miles/hour. It is my opinion that he would not have survived the impact with the ground at that speed and it was wise to pull the chute. Show[%174,%167,%172] velocity time

16 clw.ma 16 Conclusion While most potential parachutists don t consider the actual mechanics behind a jump when they decide whether or not to step out of a plane that is 2000ft in the air, I am sure that the instructors, pilots, and manufacturers take this into account. Most parachutes have secondary back- up chutes that contain a gaseous cartridge triggered at a certain altitude. This automatic release prevents the jumper from reaching terminal speed again once he has reached his minimum velocity. Sometimes malfunctions cause the release of this chute and sometimes the crazy person, I mean parachutist, just wants to wait until the last second. Parachutists, according to the Encyclopedia Brittanica, are typically instructed to pull the cord at a time that corresponds to the minimum velocity they will achieve so the formulas in this model are of importance in knowing how to ensure safety and enjoyment. In review these equations are the ones describing the motion of the fall and may be solved using the methods demosnstrated in this model in accordance with the values of k and n. x [t] = -k x [t] (x [t]^2 + y [t]^2) ^ ((n-1)/2) y [t] = -g - k y [t] (x [t]^2 + y [t]^2) ^ ((n-1)/2) If the free fall part is considered the equations below come into play and can be used to calculate the most comfortable time to pull the chute and the velocity at that time. These equations are only dependent upon u, the plane s horizontal speed, and two known constants k and g; therefore, this model has some application in the real world. x[t] = ( u/k ) * [1 - exp( -kt) ] y[t] = - (gt/k) + [ (g/k2) * [ 1- exp( -kt) ] time of minimum velocity = Log[(g^2 + k^2*u^2)/g^2]/k v(minimum velocity) = u*(g^2/(g^2 + k^2*u^2))^(1/2) Obviously the height is an important factor but with these equations the height is easily determinable. The horizontal motion also plays a greater factor than one might think since the jumper initially travels only with a horizontal velocity. The time of the minimum speed is in essence when the horizontal speed is zero and only the vertical velocity is left so these equations are also very useful in determining precisely where a person will land. This is quite handy to know unless you enjoy crashing into trees however small the speed. In conclusion this model takes some of the simpler principles of physics and applies them to a real-life situation.

17 clw.ma 17

MiSP FORCE AND GRAVITY Teacher Guide, L1 L3. Introduction

MiSP FORCE AND GRAVITY Teacher Guide, L1 L3. Introduction MiSP FORCE AND GRAVITY Teacher Guide, L1 L3 Introduction This unit uses BASE jumping and skydiving to illustrate Newton s three laws of motion and to explore the concept of gravity. The activities are

More information

1. A sphere with a radius of 1.7 cm has a volume of: A) m 3 B) m 3 C) m 3 D) 0.11 m 3 E) 21 m 3

1. A sphere with a radius of 1.7 cm has a volume of: A) m 3 B) m 3 C) m 3 D) 0.11 m 3 E) 21 m 3 1. A sphere with a radius of 1.7 cm has a volume of: A) 2.1 10 5 m 3 B) 9.1 10 4 m 3 C) 3.6 10 3 m 3 D) 0.11 m 3 E) 21 m 3 2. A 25-N crate slides down a frictionless incline that is 25 above the horizontal.

More information

10.2

10.2 10.1 10.2 10.3 10.4 10.5 10.6 d = ½ g t 2 d = 5 m g = 10 m/s 2 t = sqrt (2d/g) t = sqrt (1) t = 1 second Time to hit ground = 1 second In that 1 second, horizontal distance travelled = 20m Horizontal speed

More information

Physics 18 Spring 2011 Homework 4 Wednesday February 9, 2011

Physics 18 Spring 2011 Homework 4 Wednesday February 9, 2011 Physics 18 Spring 2011 Homework 4 Wednesday February 9, 2011 Make sure your name is on your homework, and please box your final answer. Because we will be giving partial credit, be sure to attempt all

More information

= 40 N. Q = 60 O m s,k

= 40 N. Q = 60 O m s,k Sample Exam #2 Technical Physics Multiple Choice ( 6 Points Each ): F app = 40 N 20 kg Q = 60 O = 0 1. A 20 kg box is pulled along a frictionless floor with an applied force of 40 N. The applied force

More information

empirical expressions. The most commonly used expression is F

empirical expressions. The most commonly used expression is F Air resistance or drag is a very common type of friction experienced in many situations, a leaf falling from a tree, riding your bicycle or a jet flying through the air. It is often impossible to ignore

More information

Constants: Acceleration due to gravity = 9.81 m/s 2

Constants: Acceleration due to gravity = 9.81 m/s 2 Constants: Acceleration due to gravity = 9.81 m/s 2 PROBLEMS: 1. In an experiment, it is found that the time t required for an object to travel a distance x is given by the equation = where is the acceleration

More information

Constants: Acceleration due to gravity = 9.81 m/s 2

Constants: Acceleration due to gravity = 9.81 m/s 2 Constants: Acceleration due to gravity = 9.81 m/s 2 PROBLEMS: 1. In an experiment, it is found that the time t required for an object to travel a distance x is given by the equation = where is the acceleration

More information

NEWTON S LAWS OF MOTION

NEWTON S LAWS OF MOTION NAME SCHOOL INDEX NUMBER DATE NEWTON S LAWS OF MOTION 1. 1995 Q21 P1 State Newton s first law of motion (1 mark) 2. 1998 Q22 P1 A body of mass M is allowed to slide down an inclined plane. State two factors

More information

4.5 Earth to the Moon

4.5 Earth to the Moon 258 4.5 Earth to the Moon A projectile launched from the surface of the earth is attracted both by the earth and the moon. The altitude r(t) of the projectile above the earth is known to satisfy the initial

More information

Kinematics 2. What equation relates the known quantities to what is being asked?

Kinematics 2. What equation relates the known quantities to what is being asked? Physics R Date: 1. A cheetah goes from rest to 60 miles per hour (26.8 m/s) in 3 seconds. Calculate the acceleration of the cheetah. Kinematics Equations Kinematics 2 How to solve a Physics problem: List

More information

y(t) = y 0 t! 1 2 gt 2. With y(t final ) = 0, we can solve this for v 0 : v 0 A ĵ. With A! ĵ =!2 and A! = (2) 2 + (!

y(t) = y 0 t! 1 2 gt 2. With y(t final ) = 0, we can solve this for v 0 : v 0 A ĵ. With A! ĵ =!2 and A! = (2) 2 + (! 1. The angle between the vector! A = 3î! 2 ĵ! 5 ˆk and the positive y axis, in degrees, is closest to: A) 19 B) 71 C) 90 D) 109 E) 161 The dot product between the vector! A = 3î! 2 ĵ! 5 ˆk and the unit

More information

CHAPTER 1 INTRODUCTION TO NUMERICAL METHOD

CHAPTER 1 INTRODUCTION TO NUMERICAL METHOD CHAPTER 1 INTRODUCTION TO NUMERICAL METHOD Presenter: Dr. Zalilah Sharer 2018 School of Chemical and Energy Engineering Universiti Teknologi Malaysia 16 September 2018 Chemical Engineering, Computer &

More information

Review 3: Forces. 1. Which graph best represents the motion of an object in equilibrium? A) B) C) D)

Review 3: Forces. 1. Which graph best represents the motion of an object in equilibrium? A) B) C) D) 1. Which graph best represents the motion of an object in equilibrium? A) B) C) D) 2. A rock is thrown straight up into the air. At the highest point of the rock's path, the magnitude of the net force

More information

PHYSICS 211 LAB #3: Frictional Forces

PHYSICS 211 LAB #3: Frictional Forces PHYSICS 211 LAB #3: Frictional Forces A Lab Consisting of 4 Activities Name: Section: TA: Date: Lab Partners: Circle the name of the person to whose report your group printouts will be attached. Individual

More information

Foundations of Physical Science. Unit One: Forces and Motion

Foundations of Physical Science. Unit One: Forces and Motion Foundations of Physical Science Unit One: Forces and Motion Chapter 3: Forces and Motion 3.1 Force, Mass and Acceleration 3.2 Weight, Gravity and Friction 3.3 Equilibrium, Action and Reaction Learning

More information

State two other scalar quantities in physics that have the same unit as each other [1]

State two other scalar quantities in physics that have the same unit as each other [1] 1 (a) Energy and work done are scalar quantities and have the same unit as each other. State two other scalar quantities in physics that have the same unit as each other....... [1] (b) Two forces A and

More information

3 Using Newton s Laws

3 Using Newton s Laws 3 Using Newton s Laws What You ll Learn how Newton's first law explains what happens in a car crash how Newton's second law explains the effects of air resistance 4(A), 4(C), 4(D), 4(E) Before You Read

More information

A-level MATHEMATICS. Paper 2. Exam Date Morning Time allowed: 2 hours SPECIMEN MATERIAL

A-level MATHEMATICS. Paper 2. Exam Date Morning Time allowed: 2 hours SPECIMEN MATERIAL SPECIMEN MATERIAL Please write clearly, in block capitals. Centre number Candidate number Surname Forename(s) Candidate signature A-level MATHEMATICS Paper 2 Exam Date Morning Time allowed: 2 hours Materials

More information

34.3. Resisted Motion. Introduction. Prerequisites. Learning Outcomes

34.3. Resisted Motion. Introduction. Prerequisites. Learning Outcomes Resisted Motion 34.3 Introduction This Section returns to the simple models of projectiles considered in Section 34.1. It explores the magnitude of air resistance effects and the effects of including simple

More information

To study the motion of an object under the influence

To study the motion of an object under the influence L A B 3 FALLING OBJECTS First and Second Derivatives To study the motion of an object under the influence of gravity, we need equipment to track the motion of the object. We can use calculus to analyze

More information

PH Fall - Section 04 - Version A DRAFT

PH Fall - Section 04 - Version A DRAFT 1. A truck (traveling in a straight line), starts from rest and accelerates to 30 m/s in 20 seconds. It cruises along at that constant speed for one minute, then brakes, coming to a stop in 25 m. Determine

More information

Non-textbook problem #I: The kinetic energy of a body depends on its mass and speed as. K = 1 2 mv2 (1) m 1 v 2 1 = 1 2 m 2v 2 2 (2)

Non-textbook problem #I: The kinetic energy of a body depends on its mass and speed as. K = 1 2 mv2 (1) m 1 v 2 1 = 1 2 m 2v 2 2 (2) PHY 309 K. Solutions for Problem set # 7. Non-textbook problem #I: The kinetic energy of a body depends on its mass and speed as K = 1 mv (1) Therefore, two bodies of respective masses m 1 and m and speeds

More information

2.2 Average vs. Instantaneous Description

2.2 Average vs. Instantaneous Description 2 KINEMATICS 2.2 Average vs. Instantaneous Description Name: 2.2 Average vs. Instantaneous Description 2.2.1 Average vs. Instantaneous Velocity In the previous activity, you figured out that you can calculate

More information

Experiment 4 Free Fall

Experiment 4 Free Fall PHY9 Experiment 4: Free Fall 8/0/007 Page Experiment 4 Free Fall Suggested Reading for this Lab Bauer&Westfall Ch (as needed) Taylor, Section.6, and standard deviation rule ( t < ) rule in the uncertainty

More information

Physics 191 Free Fall

Physics 191 Free Fall Physics 191 Free Fall 2016-09-21 1 Introduction 2 2 Experimental Procedure 2 3 Homework Questions - Hand in before class! 3 4 Data Analysis 3 4.1 Prepare the data in Excel..................................

More information

Forces and Newton s Laws

Forces and Newton s Laws chapter 3 Forces and Newton s Laws section 3 Using Newton s Laws Before You Read Imagine riding on a sled, or in a wagon, or perhaps a school bus that stops quickly or suddenly. What happens to your body

More information

An object moves back and forth, as shown in the position-time graph. At which points is the velocity positive?

An object moves back and forth, as shown in the position-time graph. At which points is the velocity positive? 1 The slope of the tangent on a position-time graph equals the instantaneous velocity 2 The area under the curve on a velocity-time graph equals the: displacement from the original position to its position

More information

Spring 2010 Physics 141 Practice Exam II Phy141_mt1b.pdf

Spring 2010 Physics 141 Practice Exam II Phy141_mt1b.pdf 1. (15 points) You are given two vectors: A has length 10. and an angle of 60. o (with respect to the +x axis). B has length 10. and an angle of 200. o (with respect to the +x axis). a) Calculate the components

More information

Chapter 5 Force and Motion

Chapter 5 Force and Motion Chapter 5 Force and Motion Chapter Goal: To establish a connection between force and motion. Slide 5-2 Chapter 5 Preview Slide 5-3 Chapter 5 Preview Slide 5-4 Chapter 5 Preview Slide 5-5 Chapter 5 Preview

More information

a/g a/g 2 x/ x/1000 j/g v/10 v/10

a/g a/g 2 x/ x/1000 j/g v/10 v/10 ODE MODELS FOR THE PARACHUTE PROBLEM DOUGLAS B. MEADE y Abstract. Classroom discussions relating to the modelling of physical phenomena has experienced a resurgence in recent years. One problem that is

More information

This chapter covers all kinds of problems having to do with work in physics terms. Work

This chapter covers all kinds of problems having to do with work in physics terms. Work Chapter 7 Working the Physics Way In This Chapter Understanding work Working with net force Calculating kinetic energy Handling potential energy Relating kinetic energy to work This chapter covers all

More information

Chapter 2 One-Dimensional Kinematics. Copyright 2010 Pearson Education, Inc.

Chapter 2 One-Dimensional Kinematics. Copyright 2010 Pearson Education, Inc. Chapter 2 One-Dimensional Kinematics Units of Chapter 2 Position, Distance, and Displacement Average Speed and Velocity Instantaneous Velocity Acceleration Motion with Constant Acceleration Applications

More information

Forces and Motion in One Dimension

Forces and Motion in One Dimension Nicholas J. Giordano www.cengage.com/physics/giordano Forces and Motion in One Dimension Applications of Newton s Laws We will learn how Newton s Laws apply in various situations We will begin with motion

More information

AP Physics C: Mechanics Practice (Newton s Laws including friction, resistive forces, and centripetal force).

AP Physics C: Mechanics Practice (Newton s Laws including friction, resistive forces, and centripetal force). AP Physics C: Mechanics Practice (Newton s Laws including friction, resistive forces, and centripetal force). 1981M1. A block of mass m, acted on by a force of magnitude F directed horizontally to the

More information

Acceleration due to Gravity Key Stage 4

Acceleration due to Gravity Key Stage 4 Acceleration due to Gravity Key Stage 4 Topics covered: force, mass, acceleration, gravitational field strength, impact forces. Watch the video Newton s Laws of Motion, https://vimeo.com/159043081 Your

More information

Math 2250 Lab 3 Due Date : 2/2/2017

Math 2250 Lab 3 Due Date : 2/2/2017 Math 2250 Lab Due Date : 2/2/2017 Name: UID: Unless stated otherwise, show all your work and explain your reasoning. You are allowed to use any results from lecture or the text as long as they are referenced

More information

Part 1: Integration problems from exams

Part 1: Integration problems from exams . Find each of the following. ( (a) 4t 4 t + t + (a ) (b ) Part : Integration problems from 4-5 eams ) ( sec tan sin + + e e ). (a) Let f() = e. On the graph of f pictured below, draw the approimating

More information

Figure 5.1a, b IDENTIFY: Apply to the car. EXECUTE: gives.. EVALUATE: The force required is less than the weight of the car by the factor.

Figure 5.1a, b IDENTIFY: Apply to the car. EXECUTE: gives.. EVALUATE: The force required is less than the weight of the car by the factor. 51 IDENTIFY: for each object Apply to each weight and to the pulley SET UP: Take upward The pulley has negligible mass Let be the tension in the rope and let be the tension in the chain EXECUTE: (a) The

More information

The next 20 questions are worth 1 point each. a) TRUE b) FALSE 1) If something always has a constant velocity, then it can still accelerate.

The next 20 questions are worth 1 point each. a) TRUE b) FALSE 1) If something always has a constant velocity, then it can still accelerate. PHY 161 EXAM I-preview This exam is closed book and closed notes. You may use your calculator. You have the regular class-time to complete the exam (9:10 10:00 or 10:20 11:10). Please put your name on

More information

Name. VCE Physics Unit 3 Preparation Work

Name. VCE Physics Unit 3 Preparation Work Name. VCE Physics Unit 3 Preparation Work Transition into 2019 VCE Physics Unit 3+4 Units 3 and 4 include four core areas of study plus one detailed study. Unit 3: How do fields explain motion and electricity?

More information

Mechanics. Time (s) Distance (m) Velocity (m/s) Acceleration (m/s 2 ) = + displacement/time.

Mechanics. Time (s) Distance (m) Velocity (m/s) Acceleration (m/s 2 ) = + displacement/time. Mechanics Symbols: Equations: Kinematics The Study of Motion s = distance or displacement v = final speed or velocity u = initial speed or velocity a = average acceleration s u+ v v v u v= also v= a =

More information

Report Team /09/2012

Report Team /09/2012 Report 3082 Next month Felix Baumgartner plans on breaking the world record for high altitude skydiving. He will make his jump from a capsule suspended beneath a balloon, at the edge of space. After Felix

More information

Example force problems

Example force problems PH 105 / LeClair Fall 2015 Example force problems 1. An advertisement claims that a particular automobile can stop on a dime. What net force would actually be necessary to stop a 850 kg automobile traveling

More information

SHATIN TSUNG TSIN SECONDARY SCHOOL FIRST EXAMINATION PHYSICS S4 Date : /12/2008

SHATIN TSUNG TSIN SECONDARY SCHOOL FIRST EXAMINATION PHYSICS S4 Date : /12/2008 P1 SHATIN TSUNG TSIN SECONDARY SCHOOL 2008-09 FIRST EXAMINATION PHYSICS S4 Date : /12/2008 Full marks : 67 marks Instructions 1. There are TWO sections in this paper. 2. Answer ALL questions. 3. Only calculators

More information

Choose the best answer for each of Questions 1-14 below. Mark your answer on your scantron form using a #2 pencil.

Choose the best answer for each of Questions 1-14 below. Mark your answer on your scantron form using a #2 pencil. Name: Section #: PART I: MULTIPLE CHOICE QUESTIONS (5 pts each) Choose the best answer for each of Questions 1-14 below. Mark your answer on your scantron form using a # pencil. 1. Young s modulus describes

More information

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

PHYSICS. Chapter 5 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 5 Lecture RANDALL D. KNIGHT Chapter 5 Force and Motion IN THIS CHAPTER, you will learn about the connection between force and motion.

More information

AP Physics C: Work, Energy, and Power Practice

AP Physics C: Work, Energy, and Power Practice AP Physics C: Work, Energy, and Power Practice 1981M2. A swing seat of mass M is connected to a fixed point P by a massless cord of length L. A child also of mass M sits on the seat and begins to swing

More information

CHAPTER 2 TEST REVIEW

CHAPTER 2 TEST REVIEW IB PHYSICS Name: Period: Date: # Marks: 69 Raw Score: IB Curve: DEVIL PHYSICS BADDEST CLASS ON CAMPUS CHAPTER 2 TEST REVIEW 1. Samantha walks along a horizontal path in the direction shown. The curved

More information

Differential Equations and the Parachute Problem

Differential Equations and the Parachute Problem Differential Equations and the Parachute Problem Ronald Phoebus and Cole Reilly May 10, 2004 Abstract The parachute problem is a classical first semester differential equations problem often introduced

More information

Version PREVIEW Semester 1 Review Slade (22222) 1

Version PREVIEW Semester 1 Review Slade (22222) 1 Version PREVIEW Semester 1 Review Slade () 1 This print-out should have 48 questions. Multiple-choice questions may continue on the next column or page find all choices before answering. Holt SF 0Rev 10A

More information

Physics 101. Hour Exam I Fall Last Name: First Name Network-ID Discussion Section: Discussion TA Name:

Physics 101. Hour Exam I Fall Last Name: First Name Network-ID Discussion Section: Discussion TA Name: Last Name: First Name Network-ID Discussion Section: Discussion TA Name: Instructions Turn off your cell phone and put it away. This is a closed book exam. You have ninety (90) minutes to complete it.

More information

Advanced Subsidiary / Advanced Level

Advanced Subsidiary / Advanced Level GCE Examinations Mechanics Module M1 Advanced Subsidiary / Advanced Level Paper F Time: 1 hour 30 minutes Instructions and Information Candidates may use any calculator except those with a facility for

More information

Chapter 5 - Differentiating Functions

Chapter 5 - Differentiating Functions Chapter 5 - Differentiating Functions Section 5.1 - Differentiating Functions Differentiation is the process of finding the rate of change of a function. We have proven that if f is a variable dependent

More information

PHYS 124 Section A1 Mid-Term Examination Spring 2006 SOLUTIONS

PHYS 124 Section A1 Mid-Term Examination Spring 2006 SOLUTIONS PHYS 14 Section A1 Mid-Term Examination Spring 006 SOLUTIONS Name Student ID Number Instructor Marc de Montigny Date Monday, May 15, 006 Duration 60 minutes Instructions Items allowed: pen or pencil, calculator

More information

PHYSICS 111 SPRING EXAM 1: February 6, 2017; 8:15pm - 9:45pm

PHYSICS 111 SPRING EXAM 1: February 6, 2017; 8:15pm - 9:45pm PHYSICS 111 SPRING 2018 EXAM 1: February 6, 2017; 8:15pm - 9:45pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 20 multiple-choice questions plus 1 extra credit question,

More information

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Fall Department of Mathematics

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Fall Department of Mathematics Mathematical Models MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Fall 2018 Ordinary Differential Equations The topic of ordinary differential equations (ODEs) is

More information

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Spring Department of Mathematics

Mathematical Models. MATH 365 Ordinary Differential Equations. J. Robert Buchanan. Spring Department of Mathematics Mathematical Models MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Spring 2018 Ordinary Differential Equations The topic of ordinary differential equations (ODEs)

More information

2. KINEMATICS. By Liew Sau Poh

2. KINEMATICS. By Liew Sau Poh 2. KINEMATICS By Liew Sau Poh 1 OBJECTIVES 2.1 Linear motion 2.2 Projectiles 2.3 Free falls and air resistance 2 OUTCOMES Derive and use equations of motion with constant acceleration Sketch and use the

More information

PHYSICS Kinematics in One Dimension

PHYSICS Kinematics in One Dimension PHYSICS Kinematics in One Dimension August 13, 2012 www.njctl.org 1 Motion in One Dimension Return to Table of Contents 2 Distance We all know what the distance between two objects is... So what is it?

More information

Chapter 2 Kinematics in One Dimension

Chapter 2 Kinematics in One Dimension Chapter 2 Kinematics in One Dimension The Cheetah: A cat that is built for speed. Its strength and agility allow it to sustain a top speed of over 100 km/h. Such speeds can only be maintained for about

More information

ENIAC s Problem. 1 Discussion

ENIAC s Problem. 1 Discussion ENIAC s Problem 1 Discussion A Bit of History Initiated during the height of World War II, the Electronic Numerical Integrator and Calculator (ENIAC) was designed to make ballistics tables, which required

More information

UAM Paradigm Lab. Uniform Acceleration Background. X-t graph. V-t graph now. What about displacement? *Displacement method 2 9/18/2017

UAM Paradigm Lab. Uniform Acceleration Background. X-t graph. V-t graph now. What about displacement? *Displacement method 2 9/18/2017 9/8/07 UAM Paradigm Lab Uniform Acceleration Background Wheel down a rail Observations Dots got further apart as the wheel rolled down rail This means the change in position increased over time X-t graph

More information

Kinematics. v (m/s) ii. Plot the velocity as a function of time on the following graph.

Kinematics. v (m/s) ii. Plot the velocity as a function of time on the following graph. Kinematics 1993B1 (modified) A student stands in an elevator and records his acceleration as a function of time. The data are shown in the graph above. At time t = 0, the elevator is at displacement x

More information

Physics 1A, Summer 2011, Summer Session 1 Quiz 3, Version A 1

Physics 1A, Summer 2011, Summer Session 1 Quiz 3, Version A 1 Physics 1A, Summer 2011, Summer Session 1 Quiz 3, Version A 1 Closed book and closed notes. No work needs to be shown. 1. Three rocks are thrown with identical speeds from the top of the same building.

More information

Chapter 2 Describing Motion: Kinematics in One Dimension

Chapter 2 Describing Motion: Kinematics in One Dimension Chapter 2 Describing Motion: Kinematics in One Dimension Units of Chapter 2 Reference Frames and Displacement Average Velocity Instantaneous Velocity Acceleration Motion at Constant Acceleration Solving

More information

PHY218 SPRING 2016 Review for Exam#2: Week 9 Review: Newton s Laws, Work, Energy, and Power

PHY218 SPRING 2016 Review for Exam#2: Week 9 Review: Newton s Laws, Work, Energy, and Power Review: Newton s Laws, Work, Energy, and Power These are selected problems that you are to solve independently or in a team of 2-3 in order to better prepare for your Exam#2 1 Problem 1: Inclined Plane

More information

Chapter 2. Motion in One Dimension

Chapter 2. Motion in One Dimension Chapter 2 Motion in One Dimension Web Resources for Physics 1 Physics Classroom http://www.khanacademy.org/science/physics http://ocw.mit.edu/courses/physics/ Quantities in Motion Any motion involves three

More information

Math 116 Final Exam April 26, 2013

Math 116 Final Exam April 26, 2013 Math 116 Final Exam April 26, 2013 Name: Instructor: Section: 1. Do not open this exam until you are told to do so. 2. This exam has 13 pages including this cover. There are 10 problems. Note that the

More information

What are Numerical Methods? (1/3)

What are Numerical Methods? (1/3) What are Numerical Methods? (1/3) Numerical methods are techniques by which mathematical problems are formulated so that they can be solved by arithmetic and logic operations Because computers excel at

More information

Forces and Movement. Book pg 23 25, /09/2016 Syllabus , 1.24

Forces and Movement. Book pg 23 25, /09/2016 Syllabus , 1.24 Forces and Movement Book pg 23 25, 39-40 Syllabus 1.15-1.18, 1.24 Reflect What is the relationship between mass, force and acceleration? Learning Outcomes 1. Demonstrate an understanding of the effects

More information

Kinematics A train accelerates from rest at a rate of 2 m/(s*s), for a time of 20 seconds. How much distance does the train cover?

Kinematics A train accelerates from rest at a rate of 2 m/(s*s), for a time of 20 seconds. How much distance does the train cover? Physics R Date: 1. A cheetah goes from rest to 60 miles per hour (26.8 m/s) in 3 seconds. Calculate the acceleration of the cheetah. Kinematics Equations Kinematics 2 How to solve a Physics problem: 1.

More information

2. Mass, Force and Acceleration

2. Mass, Force and Acceleration . Mass, Force and Acceleration [This material relates predominantly to modules ELP034, ELP035].1 ewton s first law of motion. ewton s second law of motion.3 ewton s third law of motion.4 Friction.5 Circular

More information

1-D Motion: Free Falling Objects

1-D Motion: Free Falling Objects v (m/s) a (m/s^2) 1-D Motion: Free Falling Objects So far, we have only looked at objects moving in a horizontal dimension. Today, we ll look at objects moving in the vertical. Then, we ll look at both

More information

Circular Motion. I. Centripetal Impulse. The centripetal impulse was Sir Isaac Newton s favorite force.

Circular Motion. I. Centripetal Impulse. The centripetal impulse was Sir Isaac Newton s favorite force. Circular Motion I. Centripetal Impulse The centripetal impulse was Sir Isaac Newton s favorite force. The Polygon Approximation. Newton made a business of analyzing the motion of bodies in circular orbits,

More information

PHYSICS 221 SPRING EXAM 1: February 16, 2012; 8:00pm 10:00pm

PHYSICS 221 SPRING EXAM 1: February 16, 2012; 8:00pm 10:00pm PHYSICS 221 SPRING 2012 EXAM 1: February 16, 2012; 8:00pm 10:00pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit questions,

More information

Chapter 2. Kinematics in One Dimension. continued

Chapter 2. Kinematics in One Dimension. continued Chapter 2 Kinematics in One Dimension continued 2.6 Freely Falling Bodies Example 10 A Falling Stone A stone is dropped from the top of a tall building. After 3.00s of free fall, what is the displacement

More information

Everybody remains in a state of rest or continues to move in a uniform motion, in a straight line, unless acting on by an external force.

Everybody remains in a state of rest or continues to move in a uniform motion, in a straight line, unless acting on by an external force. NEWTON S LAWS OF MOTION Newton s First Law Everybody remains in a state of rest or continues to move in a uniform motion, in a straight line, unless acting on by an external force. Inertia (Newton s 1

More information

Kinematics Introduction

Kinematics Introduction Kinematics Introduction Kinematics is the study of the motion of bodies. As such it deals with the distance/displacement, speed/velocity, and the acceleration of bodies. Although we are familiar with the

More information

The Acceleration Due to Gravity: Free Fall Name

The Acceleration Due to Gravity: Free Fall Name The Acceleration Due to Gravity: Free Fall Name I. Discussion Partner Early in the 17th century the very important discovery was made that, when the effects of air resistance are eliminated, all bodies,

More information

Physics 111. Lecture 8 (Walker: 5.1-3) Force (F) Mass (m) Newton s 2 nd Law: F = ma. Summary - 2D Kinematics. = (20.0 m/s)(6.

Physics 111. Lecture 8 (Walker: 5.1-3) Force (F) Mass (m) Newton s 2 nd Law: F = ma. Summary - 2D Kinematics. = (20.0 m/s)(6. Physics Lecture 8 (Walker: 5.-3) Force (F) Mass (m) Newton s nd Law: F = ma Example: A Supply Drop Helicopter drops supply package to flood victims on raft. When package is released, helicopter is 00 m

More information

Physics 2211 M Quiz #2 Solutions Summer 2017

Physics 2211 M Quiz #2 Solutions Summer 2017 Physics 2211 M Quiz #2 Solutions Summer 2017 I. (16 points) A block with mass m = 10.0 kg is on a plane inclined θ = 30.0 to the horizontal, as shown. A balloon is attached to the block to exert a constant

More information

PhysicsAndMathsTutor.com 1

PhysicsAndMathsTutor.com 1 PhysicsAndMathsTutor.com 1 Q1. An apple and a leaf fall from a tree at the same instant. Both apple and leaf start at the same height above the ground but the apple hits the ground first. You may be awarded

More information

Ordinary Differential Equations: Worked Examples with Solutions. Edray Herber Goins Talitha Michal Washington

Ordinary Differential Equations: Worked Examples with Solutions. Edray Herber Goins Talitha Michal Washington Ordinary Differential Equations: Worked Examples with Solutions Edray Herber Goins Talitha Michal Washington July 31, 2016 2 Contents I First Order Differential Equations 5 1 What is a Differential Equation?

More information

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

PHYSICS. Chapter 5 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 5 Lecture RANDALL D. KNIGHT Chapter 5 Force and Motion IN THIS CHAPTER, you will learn about the connection between force and motion.

More information

Lab #7: Energy Conservation

Lab #7: Energy Conservation Lab #7: Energy Conservation Photo by Kallin http://www.bungeezone.com/pics/kallin.shtml Reading Assignment: Chapter 7 Sections,, 3, 5, 6 Chapter 8 Sections - 4 Introduction: Perhaps one of the most unusual

More information

Reminder: Acceleration

Reminder: Acceleration Reminder: Acceleration a = change in velocity during time "t elapsed time interval "t = "v "t Can be specified by giving magnitude a = Δv / Δt and sign. Positive velocity, increasing speed => positive

More information

1982B1. The first meters of a 100-meter dash are covered in 2 seconds by a sprinter who starts from rest and accelerates with a constant

1982B1. The first meters of a 100-meter dash are covered in 2 seconds by a sprinter who starts from rest and accelerates with a constant 1982B1. The first meters of a 100-meter dash are covered in 2 seconds by a sprinter who starts from rest and accelerates with a constant acceleration. The remaining 90 meters are run with the same velocity

More information

1 What is Science? Worksheets CHAPTER CHAPTER OUTLINE

1 What is Science? Worksheets CHAPTER CHAPTER OUTLINE www.ck12.org Chapter 1. What is Science? Worksheets CSS AP Physics 1 2015-16 Summer Assignment Part 1 of 3 CHAPTER 1 What is Science? Worksheets CHAPTER OUTLINE 1.1 Scientific Inquiry 1.2 Fundamental Units

More information

Physics 101 Discussion Week 3 Explanation (2011)

Physics 101 Discussion Week 3 Explanation (2011) Physics 101 Discussion Week 3 Explanation (2011) D3-1. Velocity and Acceleration A. 1: average velocity. Q1. What is the definition of the average velocity v? Let r(t) be the total displacement vector

More information

1.1 Graphing Motion. IB Physics 11 Kinematics

1.1 Graphing Motion. IB Physics 11 Kinematics IB Physics 11 Kinematics 1.1 Graphing Motion Kinematics is the study of motion without reference to forces and masses. We will need to learn some definitions: A Scalar quantity is a measurement that has

More information

St. Joseph s Anglo-Chinese School

St. Joseph s Anglo-Chinese School Time allowed:.5 hours Take g = 0 ms - if necessary. St. Joseph s Anglo-Chinese School 008 009 First Term Examination Form 6 ASL Physics Section A (40%) Answer ALL questions in this section. Write your

More information

1. The age of the universe is about 14 billion years. Assuming two significant figures, in powers of ten in seconds this corresponds to

1. The age of the universe is about 14 billion years. Assuming two significant figures, in powers of ten in seconds this corresponds to 1. The age of the universe is about 14 billion years. Assuming two significant figures, in powers of ten in seconds this corresponds to A) 9.2 10 12 s B) 8.3 10 14 s C) 1.6 10 16 s D) 4.4 10 17 s E) 2.7

More information

Year 10 Physics - Forces and Energy - Test

Year 10 Physics - Forces and Energy - Test Year 10 Physics - Forces and Energy - Test Name Information: / 34 marks Use the following formulae where they are relevant to questions: v = d t a = v t v = u + at F = m a (also: Weight = m g) Work done

More information

Chapter 5: Newton s Laws of Motion

Chapter 5: Newton s Laws of Motion Chapter 5: Newton s Laws of Motion UAnswers to Conceptual Questions 6. The drag racer needs an engine to turn the wheels, which makes them push against the ground. It is only in this way that the ground

More information

Chapter 4. The Laws of Motion

Chapter 4. The Laws of Motion Chapter 4 The Laws of Motion Classical Mechanics Describes the relationship between the motion of objects in our everyday world and the forces acting on them Conditions when Classical Mechanics does not

More information

Physics Mid-Term Practice Exam

Physics Mid-Term Practice Exam Physics Mid-Term Practice Exam Multiple Choice. Identify the choice that best completes the statement or answers the question. 1. Which one of the following problems would NOT be a part of physics? a.

More information

Section /07/2013. PHY131H1F University of Toronto Class 9 Preclass Video by Jason Harlow. Based on Knight 3 rd edition Ch. 5, pgs.

Section /07/2013. PHY131H1F University of Toronto Class 9 Preclass Video by Jason Harlow. Based on Knight 3 rd edition Ch. 5, pgs. PHY131H1F University of Toronto Class 9 Preclass Video by Jason Harlow Based on Knight 3 rd edition Ch. 5, pgs. 116-133 Section 5.1 A force is a push or a pull What is a force? What is a force? A force

More information

According to Newton s 2 nd Law

According to Newton s 2 nd Law According to Newton s 2 nd Law If the force is held constant the relationship between mass and acceleration is direct/inverse. If the mass is held constant the relationship between force and acceleration

More information

66 Chapter 6: FORCE AND MOTION II

66 Chapter 6: FORCE AND MOTION II Chapter 6: FORCE AND MOTION II 1 A brick slides on a horizontal surface Which of the following will increase the magnitude of the frictional force on it? A Putting a second brick on top B Decreasing the

More information