Collision Resolution

Size: px
Start display at page:

Download "Collision Resolution"

Transcription

1 Collision Resolution

2 Our Problem Collision detection (supposedly) reported a collision. We want to solve it, i.e. move back the colliding objects apart from each other. In which direction and with what intensity? Momentum, velocity, forces 2

3 Collision resolution To resolve the collision it is necessary to have: Time of collision: the first instant the collision is detected. Contact point: the point where the colliding objects first touch. Contact normal: a normal to the plane passing through the contact point and oriented in the direction separating the two objects. 3

4 Computing the exact time (somewhere between t and t + t) of collision is not always feasible We can approximate it by bisection. Repeatedly bisecting the time interval and testing, finding a arbitrary short interval [t 0, t 1 ] for which: The objects do not collide at t 0. The objects collide at t 1. Time of collision Computationally expensive! Usually in games, the frame rate t is small enough to not bother. 4

5 Contact point and normal To estimate the direction of the collision we use the position of the objects at the frame before the collision Closest points at t t assumed as those with largest depth penetration at t. Needs to store previous positions. Usually done for numerical integration anyway. 5

6 Collision Resolution We now have a mean to estimate time of collision, contact points and contact normal. We still have to correct the position and orientation of the colliding objects 6

7 Inelastic collisions energy is not preserved. Objects stop in place, stick together, etc. are easy to implement Backing out or stopping process. Elastic collisions Types of Collisions Energy is fully preserved. e.g. (ideal) billiard balls. More difficult to calculate. Magnitude of resulting velocities 7

8 Linear velocity Setting: objects A and B, resp. masses m A and m B, and initial velocity v A and v B. Unit collision normal n, and the contact point P n P v A+ v A v B v B+ 8

9 Instant impulses We can solve the collision by using an impulsebased technique. At collision time we apply an impulse on each object at P in the direction n ( n for one of the object). Pushing the two objects apart. The impulse magnitude: j. Velocity is then changed accordingly from v to v +. n impulse B A P impulse A B v A+ v A v B v B+ 9

10 Reminder: Impulses The rate of change of the momentum, i.e. a force delivered in an instant: F t = p = m(v t + t v(t)) τ t = L = I(ω t + t ω(t)) Momentum is always conserved: m A v A (t + t) + m B v B (t + t) = m A v A (t) + m B v B (t) And so is energy: E Kt t + t + E P t + t + E Kr t + t = E Kt t + E P t + E Kr (t) + E O 10

11 Linear velocity By conservation we get: m A v A + j A n = m A v A+ m B v B j B n = m B v B+ And explicitly for the velocities: v A+ = v A + j A m A n v B+ = v B j B m B n 11

12 Coefficient of Restitution To model the elasticity of a collision we define the coefficient of restitution C R of the collision. It describes the ratio of speeds after and before collision along the collision normal C R = v A+ v B+ n v A v B n C R = 1: ideal elastic collision (E k is conserved) C R < 1: inelastic collision (loss of velocity). C R = 0: the objects stick together. 12

13 Velocity Correction We also know that the velocities before and after collision relate with the coefficient of restitution C R = v A+ v B+ n v A v B n So we have j A = (1 + C R) v A v B n m A m B j B = (1 + C R) v A v B n m A m B 13

14 Velocity Correction We can finally calculate the outgoing velocities 7.1 v A+ = v A + j A m A n v B+ = v B j B m B n Larger mass difference less velocity change. 14

15 Angular Velocity When the normal is off the center of rotation of the objects, the collision also produces a rotation of the two objects. n ω A (t) P ω B (t) v A (t) v B (t) 15

16 Angular velocity Handling rotational collision similarly to linear collision. The impulse factor j is adapted accordingly. If one or both objects are rotating, the rotational velocity is added to the general velocity: v A = v A + ω A r A v B = v B + ω B r B where ω are the angular velocities and r the displacement from the center of rotation to the points of contact. 16

17 Angular velocity The coefficient of restitution equation is adapted accordingly: C R = v A+ v A v B+ v B n n This coefficient is used for further calculation of the linear velocity through the updated j A and j B 17

18 Angular velocity By conservation of angular momentum: I A ω A + r A j n = I A ω A+ I B ω B r B (j n) = I B ω B+ And we get: ω A+ = ω A + I A 1 (r A j n ) ω B+ = ω B I B 1 (r B j n ) 18

19 Angular velocity Generalizing the case of linear, the updated factor j: j = (1 + C R ) v A v B n I m A m 1 A r A n r A + I 1 B r B n r B n B 19

20 Angular velocity With this updated factor j, we calculate the outgoing angular velocities ω A+ = ω A + I A 1 (r A j A n ) ω B+ = ω B I B 1 (r B j B n ) This factor is also used to calculate the outgoing linear velocities (same as linear resolution): v A+ = v A + j A m A n v B+ = v B j B m B n 20

21 Angular velocity from Linear Velocity Two colliding non-rotating objects can create rotation. Is it creating angular momentum from linear momentum? No! Both momentums are conserved, and are separable entities. Angular momentum is relative to a point and measures the entire system. Though neither object rotates around its COM, the system has angular momentum around the mutual COM. COM 21

22 The full algorithm: Collision resolution Run collision detection to find contact point(s) and contact normal. Calculate linear and angular velocities at these contact points. Use coefficients of restitution and conservation of momentum to determine the impulses to apply. Solve for velocities using the impulses

23 Resting contact Our resolution system is theoretically complete. Some special cases can be handled more efficiently. We can have resting contacts between objects For example, a box colliding with on the floor. the floor theoretically moves down, but is assumed stationary, because of theoretically very large mass. 23

24 Resting contact In our current framework, a box sitting on the floor may jitter around the surface. 24

25 Resting contact A resting contact occurs when the relative velocity of the two objects along the normal is null (or smaller than some tolerance). One solution: to artificially reduce the coefficient of restitution when we are in that case. Typically linearly dependent on the relative velocity or directly set to zero. after resolution the two objects will have a null relative velocity the box sticks to the unmoving floor. 25

26 Friction In practice, there is friction between two objects when in contact. Static friction: relatively stationary. Kinetic friction: moving relatively to each other. Rolling friction: is usually ignored in game physics. We can add the friction force in our previous equations using impulses. 26

27 Friction The friction acts in the tangential plane of the collision normal and resists the movement t = n v A v B n t n v A v B v B (t) v A (t) where the vectors are normalized 27

28 Kinetic Friction The velocity equations become: v A+ = v A + j A(n + μ k t) m A v B+ = v B j B(n + μ k t) m B ω A+ = ω A + I A 1 (r A j (n + μ k t) ) ω B+ = ω B I B 1 (r B j (n + μ k t) ) 28

29 Static Friction For small relative velocity, static friction is used. The friction impulses need to be adjusted. When will objects break off? The tangential direction may be undetermined (collision normal and relative velocity parallel) Alternative techniques should be used. 29

30 End of Collision resolution Next Soft-body physics

GAME PHYSICS (INFOMGP) FINAL EXAM

GAME PHYSICS (INFOMGP) FINAL EXAM GAME PHYSICS (INFOMGP) FINAL EXAM 15/JUN/ 016 LECTURER: AMIR VAXMAN Student name: Student number: This exam is 3 hours long and consists of 5 exercises. The points add up to 100. Answer only in English.

More information

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost

Game Physics. Game and Media Technology Master Program - Utrecht University. Dr. Nicolas Pronost Game and Media Technology Master Program - Utrecht University Dr. Nicolas Pronost Essential physics for game developers Introduction The primary issues Let s move virtual objects Kinematics: description

More information

Projects. Assignments. Plan. Motivational Films. Motivational Film 1/6/09. Dynamics II. Forces, Collisions and Impulse

Projects. Assignments. Plan. Motivational Films. Motivational Film 1/6/09. Dynamics II. Forces, Collisions and Impulse Projects Dynamics II Forces, Collisions and Impulse Presentations: Dates: Week 0: Mon, Feb 6 Week 0: Wed, Feb 8 Finals Week: Tues, Feb 4 (:30 :30) room TBA 5 minutes / presentation Schedule now on Web

More information

Final Exam. June 10, 2008, 1:00pm

Final Exam. June 10, 2008, 1:00pm PHYSICS 101: Fundamentals of Physics Final Exam Final Exam Name TA/ Section # June 10, 2008, 1:00pm Recitation Time You have 2 hour to complete the exam. Please answer all questions clearly and completely,

More information

The... of a particle is defined as its change in position in some time interval.

The... of a particle is defined as its change in position in some time interval. Distance is the. of a path followed by a particle. Distance is a quantity. The... of a particle is defined as its change in position in some time interval. Displacement is a.. quantity. The... of a particle

More information

Chapter 8: Momentum, Impulse, & Collisions. Newton s second law in terms of momentum:

Chapter 8: Momentum, Impulse, & Collisions. Newton s second law in terms of momentum: linear momentum: Chapter 8: Momentum, Impulse, & Collisions Newton s second law in terms of momentum: impulse: Under what SPECIFIC condition is linear momentum conserved? (The answer does not involve collisions.)

More information

z F 3 = = = m 1 F 1 m 2 F 2 m 3 - Linear Momentum dp dt F net = d P net = d p 1 dt d p n dt - Conservation of Linear Momentum Δ P = 0

z F 3 = = = m 1 F 1 m 2 F 2 m 3 - Linear Momentum dp dt F net = d P net = d p 1 dt d p n dt - Conservation of Linear Momentum Δ P = 0 F 1 m 2 F 2 x m 1 O z F 3 m 3 y Ma com = F net F F F net, x net, y net, z = = = Ma Ma Ma com, x com, y com, z p = mv - Linear Momentum F net = dp dt F net = d P dt = d p 1 dt +...+ d p n dt Δ P = 0 - Conservation

More information

Notes Momentum. Momentum and Impulse. - The product (multiplication) of an objects mass and velocity is called momentum.

Notes Momentum. Momentum and Impulse. - The product (multiplication) of an objects mass and velocity is called momentum. Notes Momentum Momentum and Impulse - The product (multiplication) of an objects mass and velocity is called momentum. Momentum is the energy of motion of an object. Momentum is represented by the letter.

More information

Collisions. Conservation of Momentum Elastic and inelastic collisions. Serway For practice: Chapter 9, problems 10, 11, 23, 70, 75

Collisions. Conservation of Momentum Elastic and inelastic collisions. Serway For practice: Chapter 9, problems 10, 11, 23, 70, 75 Collisions Conservation of Momentum Elastic and inelastic collisions Serway 9.3-9.4 For practice: Chapter 9, problems 10, 11, 23, 70, 75 Momentum: p = mv Impulse (a vector) is defined as F t (for a constant

More information

Q1. For a completely inelastic two-body collision the kinetic energy of the objects after the collision is the same as:

Q1. For a completely inelastic two-body collision the kinetic energy of the objects after the collision is the same as: Coordinator: Dr.. Naqvi Monday, January 05, 015 Page: 1 Q1. For a completely inelastic two-body collision the kinetic energy of the objects after the collision is the same as: ) (1/) MV, where M is the

More information

Name: Class: Date: p 1 = p 2. Given m = 0.15 kg v i = 5.0 m/s v f = 3.0 m/s Solution

Name: Class: Date: p 1 = p 2. Given m = 0.15 kg v i = 5.0 m/s v f = 3.0 m/s Solution Assessment Chapter Test A Teacher Notes and Answers Momentum and Collisions CHAPTER TEST A (GENERAL) 1. c 2. c 3. b 4. c 5. a p i = 4.0 kg m/s p f = 4.0 kg m/s p = p f p i = ( 4.0 kg m/s) 4.0 kg m/s =

More information

Compare the momentum of the same object moving with different velocities. Identify examples of change in the momentum of an object.

Compare the momentum of the same object moving with different velocities. Identify examples of change in the momentum of an object. HOLT CH 6 notes Objectives :Compare the momentum of different moving objects. Compare the momentum of the same object moving with different velocities. Identify examples of change in the momentum of an

More information

System of objects (particles)

System of objects (particles) Today Ch 6, Momentum and Collisions System of particles Elastic vs. inelastic collision Elastic collision in 1D Collision in 2D Center of mass Motion of system of particles (Motion of center of mass) 1

More information

Thursday Simulation & Unity

Thursday Simulation & Unity Rigid Bodies Simulation Homework Build a particle system based either on F=ma or procedural simulation Examples: Smoke, Fire, Water, Wind, Leaves, Cloth, Magnets, Flocks, Fish, Insects, Crowds, etc. Simulate

More information

Lecture 6 Physics 106 Spring 2006

Lecture 6 Physics 106 Spring 2006 Lecture 6 Physics 106 Spring 2006 Angular Momentum Rolling Angular Momentum: Definition: Angular Momentum for rotation System of particles: Torque: l = r m v sinφ l = I ω [kg m 2 /s] http://web.njit.edu/~sirenko/

More information

Chapter 9 Linear Momentum and Collisions

Chapter 9 Linear Momentum and Collisions Chapter 9 Linear Momentum and Collisions The Center of Mass The center of mass of a system of particles is the point that moves as though (1) all of the system s mass were concentrated there and (2) all

More information

Energy Conservation AP

Energy Conservation AP Energy Conservation AP Manicouagan Reservoir seen from space shuttle; formed almost 1 million years ago when a large meteorite hit Earth Earth did work on meteorite to change its kinetic energy energy

More information

AP PHYSICS C Momentum Name: AP Review

AP PHYSICS C Momentum Name: AP Review AP PHYSICS C Momentum Name: AP Review Momentum How hard it is to stop a moving object. Related to both mass and velocity. For one particle p = mv For a system of multiple particles P = p i = m ivi Units:

More information

A) 4.0 m/s B) 5.0 m/s C) 0 m/s D) 3.0 m/s E) 2.0 m/s. Ans: Q2.

A) 4.0 m/s B) 5.0 m/s C) 0 m/s D) 3.0 m/s E) 2.0 m/s. Ans: Q2. Coordinator: Dr. W. Al-Basheer Thursday, July 30, 2015 Page: 1 Q1. A constant force F ( 7.0ˆ i 2.0 ˆj ) N acts on a 2.0 kg block, initially at rest, on a frictionless horizontal surface. If the force causes

More information

Section 1 Momentum and Impulse. Chapter 6. Preview. Objectives Linear Momentum. Houghton Mifflin Harcourt Publishing Company

Section 1 Momentum and Impulse. Chapter 6. Preview. Objectives Linear Momentum. Houghton Mifflin Harcourt Publishing Company Section 1 Momentum and Impulse Preview Objectives Linear Momentum Section 1 Momentum and Impulse Objectives Compare the momentum of different moving objects. Compare the momentum of the same object moving

More information

PHYSICS I RESOURCE SHEET

PHYSICS I RESOURCE SHEET PHYSICS I RESOURCE SHEET Cautions and Notes Kinematic Equations These are to be used in regions with constant acceleration only You must keep regions with different accelerations separate (for example,

More information

Momentum. The way to catch a knuckleball is to wait until it stops rolling and then pick it up. -Bob Uecker

Momentum. The way to catch a knuckleball is to wait until it stops rolling and then pick it up. -Bob Uecker Chapter 11 -, Chapter 11 -, Angular The way to catch a knuckleball is to wait until it stops rolling and then pick it up. -Bob Uecker David J. Starling Penn State Hazleton PHYS 211 Chapter 11 -, motion

More information

Simple Harmonic Motion Practice Problems PSI AP Physics B

Simple Harmonic Motion Practice Problems PSI AP Physics B Simple Harmonic Motion Practice Problems PSI AP Physics B Name Multiple Choice 1. A block with a mass M is attached to a spring with a spring constant k. The block undergoes SHM. Where is the block located

More information

Momentum Conceptual Questions. 1. Which variable has more impact on an object s motion? Its mass or its velocity?

Momentum Conceptual Questions. 1. Which variable has more impact on an object s motion? Its mass or its velocity? AP Physics I Momentum Conceptual Questions 1. Which variable has more impact on an object s motion? Its mass or its velocity? 2. Is momentum a vector or a scalar? Explain. 3. How does changing the duration

More information

3. Kinetics of Particles

3. Kinetics of Particles 3. Kinetics of Particles 3.1 Force, Mass and Acceleration 3.3 Impulse and Momentum 3.4 Impact 1 3.1 Force, Mass and Acceleration We draw two important conclusions from the results of the experiments. First,

More information

AP Physics C. Momentum. Free Response Problems

AP Physics C. Momentum. Free Response Problems AP Physics C Momentum Free Response Problems 1. A bullet of mass m moves at a velocity v 0 and collides with a stationary block of mass M and length L. The bullet emerges from the block with a velocity

More information

Write your name legibly on the top right hand corner of this paper

Write your name legibly on the top right hand corner of this paper NAME Phys 631 Summer 2007 Quiz 2 Tuesday July 24, 2007 Instructor R. A. Lindgren 9:00 am 12:00 am Write your name legibly on the top right hand corner of this paper No Books or Notes allowed Calculator

More information

Chapter 8 LINEAR MOMENTUM AND COLLISIONS

Chapter 8 LINEAR MOMENTUM AND COLLISIONS Chapter 8 LINEAR MOMENTUM AND COLLISIONS Linear Momentum Momentum and Newton s Second Law Impulse Conservation of Linear Momentum Inelastic Collisions Elastic Collisions Center of Mass Systems with Changing

More information

11. (7 points: Choose up to 3 answers) What is the tension,!, in the string? a.! = 0.10 N b.! = 0.21 N c.! = 0.29 N d.! = N e.! = 0.

11. (7 points: Choose up to 3 answers) What is the tension,!, in the string? a.! = 0.10 N b.! = 0.21 N c.! = 0.29 N d.! = N e.! = 0. A harmonic wave propagates horizontally along a taut string of length! = 8.0 m and mass! = 0.23 kg. The vertical displacement of the string along its length is given by!!,! = 0.1!m cos 1.5!!! +!0.8!!,

More information

Chapter 9. Linear Momentum

Chapter 9. Linear Momentum Chapter 9 Linear Momentum Linear Momentum Conservation of Linear Momentum Kinetic Energy of a System Collisions Collisions in Center of Mass Reference Frame MFMcGraw-PHY 45 Chap09Ha-Momentum-Revised-10//01

More information

4.) A baseball that weighs 1.6 N leaves a bat with a speed of 40.0 m/s. Calculate the kinetic energy of the ball. 130 J

4.) A baseball that weighs 1.6 N leaves a bat with a speed of 40.0 m/s. Calculate the kinetic energy of the ball. 130 J AP Physics-B Energy And Its Conservation Introduction: Energy is a term that most of us take for granted and use quite freely. We assume we know what we are talking about when speaking of energy. In truth,

More information

Part Two: Earlier Material

Part Two: Earlier Material Part Two: Earlier Material Problem 1: (Momentum and Impulse) A superball of m 1 = 0.08kg, starting at rest, is dropped from a height falls h 0 = 3.0m above the ground and bounces back up to a height of

More information

Momentum. A ball bounces off the floor as shown. The direction of the impulse on the ball, is... straight up straight down to the right to the left

Momentum. A ball bounces off the floor as shown. The direction of the impulse on the ball, is... straight up straight down to the right to the left Momentum A ball bounces off the floor as shown. The direction of the impulse on the ball,, is... A: B: C: D: straight up straight down to the right to the left This is also the direction of Momentum A

More information

Physics of Rotation. Physics 109, Introduction To Physics Fall 2017

Physics of Rotation. Physics 109, Introduction To Physics Fall 2017 Physics of Rotation Physics 109, Introduction To Physics Fall 017 Outline Next two lab periods Rolling without slipping Angular Momentum Comparison with Translation New Rotational Terms Rotational and

More information

p p I p p p I p I p p

p p I p p p I p I p p Net momentum conservation for collision on frictionless horizontal surface v1i v2i Before collision m1 F on m1 from m2 During collision for t v1f m2 F on m2 from m1 v2f +x direction After collision F F

More information

PHYS 154 Practice Test 3 Spring 2018

PHYS 154 Practice Test 3 Spring 2018 The actual test contains 1 multiple choice questions and 2 problems. However, for extra exercise, this practice test includes 4 problems. Questions: N.B. Make sure that you justify your answers explicitly

More information

Chapter Work, Energy and Power. Q1. The co-efficient of restitution e for a perfectly elastic collision is [1988] (a) 1 (b) 0 (c) (d) 1 Ans: (a)

Chapter Work, Energy and Power. Q1. The co-efficient of restitution e for a perfectly elastic collision is [1988] (a) 1 (b) 0 (c) (d) 1 Ans: (a) Chapter Work, Energy and Power Q1. The co-efficient of restitution e for a perfectly elastic collision is [1988] (a) 1 (b) 0 (c) (d) 1 Q2. A bullet of mass 10g leaves a rifle at an initial velocity of

More information

Assignment 4: Rigid Body Dynamics

Assignment 4: Rigid Body Dynamics Assignment 4: Rigid Body Dynamics Due April 4 at :59pm Introduction Rigid bodies are a fundamental element of many physical simulations, and the physics underlying their motions are well-understood. In

More information

Welcome back to Physics 211

Welcome back to Physics 211 Welcome back to Physics 211 Today s agenda: Impulse and momentum 09-2 1 Current assignments Reading: Chapter 10 in textbook Prelecture due next Tuesday HW#8 due this Friday at 5 pm. 09-2 2 9-2.1 A crash

More information

What are two forms of Potential Energy that we commonly use? Explain Conservation of Energy and how we utilize it for problem-solving technics.

What are two forms of Potential Energy that we commonly use? Explain Conservation of Energy and how we utilize it for problem-solving technics. Bell Ringer: Define Kinetic Energy, Potential Energy, and Work. What are two forms of Potential Energy that we commonly use? Explain Conservation of Energy and how we utilize it for problem-solving technics.

More information

Impulse/Momentum And Its Conservation

Impulse/Momentum And Its Conservation Impulse/Momentum And Its Conservation Which is easier to stop? Truck, car, bowling ball, or baseball all moving at 30 mph. Baseball -it is the least massive. Baseball at 30 mph or a baseball at 90 mph.

More information

Impulse (J) J = FΔ t Momentum Δp = mδv Impulse and Momentum j = (F)( p = ( )(v) F)(Δ ) = ( )(Δv)

Impulse (J) J = FΔ t Momentum Δp = mδv Impulse and Momentum j = (F)( p = ( )(v) F)(Δ ) = ( )(Δv) Impulse (J) We create an unbalancing force to overcome the inertia of the object. the integral of force over time The unbalancing force is made up of the force we need to unbalance the object and the time

More information

Practice Test for Midterm Exam

Practice Test for Midterm Exam A.P. Physics Practice Test for Midterm Exam Kinematics 1. Which of the following statements are about uniformly accelerated motion? Select two answers. a) If an object s acceleration is constant then it

More information

PH1104/PH114S MECHANICS

PH1104/PH114S MECHANICS PH04/PH4S MECHANICS SEMESTER I EXAMINATION 06-07 SOLUTION MULTIPLE-CHOICE QUESTIONS. (B) For freely falling bodies, the equation v = gh holds. v is proportional to h, therefore v v = h h = h h =.. (B).5i

More information

Chapter 7- Linear Momentum

Chapter 7- Linear Momentum Chapter 7- Linear Momentum Old assignments and midterm exams (solutions have been posted on the web) can be picked up in my office (LB-212) All marks, including assignments, have been posted on the web.

More information

Ch. 2 The Laws of Motion

Ch. 2 The Laws of Motion Ch. 2 The Laws of Motion Lesson 1 Gravity and Friction Force - A push or pull we pull on a locker handle push a soccer ball or on the computer keys Contact force - push or pull on one object by another

More information

Name & Surname:... No:... Class: 11 /...

Name & Surname:... No:... Class: 11 /... METU D. F. HIGH SCHOOL 2017-2018 ACADEMIC YEAR, 1 st SEMESTER GRADE 11 / PHYSICS REVIEW FOR GENERAL EXAM-3 UNIFORMLY ACCELERATED MOTION IN TWO DIMENSIONS, ENERGY, IMPULSE & MOMENTUM & TORQUE DECEMBER 2017

More information

Sometimes (like on AP test) you will see the equation like this:

Sometimes (like on AP test) you will see the equation like this: Work, Energy & Momentum Notes Chapter 5 & 6 The two types of energy we will be working with in this unit are: (K in book KE): Energy associated with of an object. (U in book PE): Energy associated with

More information

Simulation in Computer Graphics Elastic Solids. Matthias Teschner

Simulation in Computer Graphics Elastic Solids. Matthias Teschner Simulation in Computer Graphics Elastic Solids Matthias Teschner Outline Introduction Elastic forces Miscellaneous Collision handling Visualization University of Freiburg Computer Science Department 2

More information

Center of Mass & Linear Momentum

Center of Mass & Linear Momentum PHYS 101 Previous Exam Problems CHAPTER 9 Center of Mass & Linear Momentum Center of mass Momentum of a particle Momentum of a system Impulse Conservation of momentum Elastic collisions Inelastic collisions

More information

Conservation of Momentum: Marble Collisions Student Version

Conservation of Momentum: Marble Collisions Student Version Conservation of Momentum: Marble Collisions Student Version In this lab you will roll a marble down a ramp, and at the bottom of the ramp the marble will collide with another marble. You will measure the

More information

Chapter 7. Impulse and Momentum

Chapter 7. Impulse and Momentum Chapter 7 Impulse and Momentum 7.1 The Impulse-Momentum Theorem There are many situations when the force on an object is not constant. 7.1 The Impulse-Momentum Theorem DEFINITION OF IMPULSE The impulse

More information

CHAPTER 9 LINEAR MOMENTUM AND COLLISION

CHAPTER 9 LINEAR MOMENTUM AND COLLISION CHAPTER 9 LINEAR MOMENTUM AND COLLISION Couse Outline : Linear momentum and its conservation Impulse and Momentum Collisions in one dimension Collisions in two dimension The center of mass (CM) 9.1 Linear

More information

2016 PHYSICS FINAL REVIEW PACKET

2016 PHYSICS FINAL REVIEW PACKET 2016 PHYSICS FINAL REVIEW PACKET EXAM BREAKDOWN CHAPTER TOPIC # OF QUESTIONS 6 CONSERVATION OF ENERGY 22 7 MOMENTUM/COLLISIONS 17 5 CIRCULAR MOTION GRAVITY/SATELLITE MOTION 30 11 WAVES 24 - ELECTROMAGNETISM/MISC./LABS

More information

(D) Based on Ft = m v, doubling the mass would require twice the time for same momentum change

(D) Based on Ft = m v, doubling the mass would require twice the time for same momentum change 1. A car of mass m, traveling at speed v, stops in time t when maximum braking force is applied. Assuming the braking force is independent of mass, what time would be required to stop a car of mass m traveling

More information

Which iceboat crosses the finish line with more kinetic energy (KE)?

Which iceboat crosses the finish line with more kinetic energy (KE)? Two iceboats (one of mass m, one of mass 2m) hold a race on a frictionless, horizontal, frozen lake. Both iceboats start at rest, and the wind exerts the same constant force on both iceboats. Which iceboat

More information

A Level. A Level Physics. MECHANICS: Momentum and Collisions (Answers) AQA, Edexcel, OCR. Name: Total Marks: /30

A Level. A Level Physics. MECHANICS: Momentum and Collisions (Answers) AQA, Edexcel, OCR. Name: Total Marks: /30 Visit http://www.mathsmadeeasy.co.uk/ for more fantastic resources. AQA, Edexcel, OCR A Level A Level Physics MECHANICS: Momentum and Collisions (Answers) Name: Total Marks: /30 Maths Made Easy Complete

More information

6.1 Momentum and Impulse A. What is momentum? Newton defined momentum as the quantity of motion

6.1 Momentum and Impulse A. What is momentum? Newton defined momentum as the quantity of motion AP Physics Mechanics Chapter 6 Momentum and Collisions Text chapter 6 - Reading pp. 141-161 - textbook HW -- #1,3,4,6,9,15,16,20,21,23,26,27,25,34,63,70,71 1 6.1 Momentum and Impulse A. What is momentum?

More information

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics Physics 111.6 MIDTERM TEST #2 November 15, 2001 Time: 90 minutes NAME: STUDENT NO.: (Last) Please Print (Given) LECTURE SECTION

More information

Circle correct course: PHYS 1P21 or PHYS 1P91 BROCK UNIVERSITY

Circle correct course: PHYS 1P21 or PHYS 1P91 BROCK UNIVERSITY Tutorial #: Circle correct course: PHYS 1P21 or PHYS 1P91 Name: Student #: BROCK UNIVERSITY Test 7: November 2015 Number of pages: 5 Course: PHYS 1P21/1P91 Number of students: 218 Examination date: 17

More information

Practice Exam #3 A N B. 1.2 N C N D N E. 0 N

Practice Exam #3 A N B. 1.2 N C N D N E. 0 N Practice Exam #3 1. A barbell is mounted on a nearly frictionless axle through its center. The low-mass rod has a length d = 0.9 m, and each ball has a mass m = 0.5 kg. At this instant, there are two forces

More information

Nov. 27, 2017 Momentum & Kinetic Energy in Collisions elastic collision inelastic collision. completely inelastic collision

Nov. 27, 2017 Momentum & Kinetic Energy in Collisions elastic collision inelastic collision. completely inelastic collision Nov. 27, 2017 Momentum & Kinetic Energy in Collisions In our initial discussion of collisions, we looked at one object at a time, however we'll now look at the system of objects, with the assumption that

More information

Rotational & Rigid-Body Mechanics. Lectures 3+4

Rotational & Rigid-Body Mechanics. Lectures 3+4 Rotational & Rigid-Body Mechanics Lectures 3+4 Rotational Motion So far: point objects moving through a trajectory. Next: moving actual dimensional objects and rotating them. 2 Circular Motion - Definitions

More information

OCR Maths M2. Topic Questions from Papers. Collisions

OCR Maths M2. Topic Questions from Papers. Collisions OCR Maths M2 Topic Questions from Papers Collisions 41 Three smooth spheres A, B and C, ofequalradiusandofmassesm kg, 2m kg and 3m kg respectively, lie in a straight line and are free to move on a smooth

More information

Solving Momentum Problems

Solving Momentum Problems Solving Momentum Problems Momentum: For lack of a better definition, momentum is a measure of the oomph that an object has due to its motion. The more mass an object has and the more speed it has the more

More information

Study Guide For Midterm - 25 weeks Physics Exam. d. the force exerted by a towing cable on the car. c. the upward force the road exerts on the car.

Study Guide For Midterm - 25 weeks Physics Exam. d. the force exerted by a towing cable on the car. c. the upward force the road exerts on the car. Name: Class: Date: ID: A Study Guide For Midterm - 25 weeks Physics Exam Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Which of the following is the

More information

Exam II. Spring 2004 Serway & Jewett, Chapters Fill in the bubble for the correct answer on the answer sheet. next to the number.

Exam II. Spring 2004 Serway & Jewett, Chapters Fill in the bubble for the correct answer on the answer sheet. next to the number. Agin/Meyer PART I: QUALITATIVE Exam II Spring 2004 Serway & Jewett, Chapters 6-10 Assigned Seat Number Fill in the bubble for the correct answer on the answer sheet. next to the number. NO PARTIAL CREDIT:

More information

Your Name: PHYSICS 101 MIDTERM. Please circle your section 1 9 am Galbiati 2 10 am Kwon 3 11 am McDonald 4 12:30 pm McDonald 5 12:30 pm Kwon

Your Name: PHYSICS 101 MIDTERM. Please circle your section 1 9 am Galbiati 2 10 am Kwon 3 11 am McDonald 4 12:30 pm McDonald 5 12:30 pm Kwon 1 Your Name: PHYSICS 101 MIDTERM October 26, 2006 2 hours Please circle your section 1 9 am Galbiati 2 10 am Kwon 3 11 am McDonald 4 12:30 pm McDonald 5 12:30 pm Kwon Problem Score 1 /13 2 /20 3 /20 4

More information

Rigid bodies - general theory

Rigid bodies - general theory Rigid bodies - general theory Kinetic Energy: based on FW-26 Consider a system on N particles with all their relative separations fixed: it has 3 translational and 3 rotational degrees of freedom. Motion

More information

Lab 9 CONSERVATION OF LINEAR MOMENTUM

Lab 9 CONSERVATION OF LINEAR MOMENTUM Lab 9 CONSERVATION OF LINEAR MOMENTUM In this experiment, you will try to verify the Law of Conservation of Linear Momentum using a collision between two cars on the air track. Here are the important concepts

More information

Conservation of Momentum

Conservation of Momentum Conservation of Momentum Law of Conservation of Momentum The sum of the momenta before a collision equal the sum of the momenta after the collision in an isolated system (=no external forces acting).

More information

2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity

2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity 2007 Problem Topic Comment 1 Kinematics Position-time equation Kinematics 7 2 Kinematics Velocity-time graph Dynamics 6 3 Kinematics Average velocity Energy 7 4 Kinematics Free fall Collisions 3 5 Dynamics

More information

Exam 2--PHYS 101--F11--Chapters 4, 5, & 6

Exam 2--PHYS 101--F11--Chapters 4, 5, & 6 ame: Exam 2--PHYS 101--F11--Chapters 4, 5, & 6 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. Consider this figure. What is the normal force acting on

More information

Momentum Practice Problems

Momentum Practice Problems Momentum Practice Problems PSI AP Physics C Name Multiple Choice 1. A steel ball and a piece of clay have equal mass. They are dropped from the same height on a horizontal steel platform. The ball bounces

More information

Lecture 13 REVIEW. Physics 106 Spring What should we know? What should we know? Newton s Laws

Lecture 13 REVIEW. Physics 106 Spring What should we know? What should we know? Newton s Laws Lecture 13 REVIEW Physics 106 Spring 2006 http://web.njit.edu/~sirenko/ What should we know? Vectors addition, subtraction, scalar and vector multiplication Trigonometric functions sinθ, cos θ, tan θ,

More information

23. A force in the negative direction of an x-axis is applied for 27ms to a 0.40kg ball initially moving at 14m/s in the positive direction of the

23. A force in the negative direction of an x-axis is applied for 27ms to a 0.40kg ball initially moving at 14m/s in the positive direction of the 23. A force in the negative direction of an x-axis is applied for 27ms to a 0.40kg ball initially moving at 14m/s in the positive direction of the axis. The force varies in magnitude, and the impulse has

More information

Honor Physics Final Exam Review. What is the difference between series, parallel, and combination circuits?

Honor Physics Final Exam Review. What is the difference between series, parallel, and combination circuits? Name Period Date Honor Physics Final Exam Review Circuits You should be able to: Calculate the total (net) resistance of a circuit. Calculate current in individual resistors and the total circuit current.

More information

PROBLEM 2 10 points. [ ] increases [ ] decreases [ ] stays the same. Briefly justify your answer:

PROBLEM 2 10 points. [ ] increases [ ] decreases [ ] stays the same. Briefly justify your answer: PROBLEM 2 10 points A disk of mass m is tied to a block of mass 2m via a string that passes through a hole at the center of a rotating turntable. The disk rotates with the turntable at a distance R from

More information

SMART CART CONSERVATION OF MOMENTUM

SMART CART CONSERVATION OF MOMENTUM NAME PERIOD DATE SMART CART CONSERVATION OF MOMENTUM Driving Question Objective How is the momentum and kinetic energy of a two-object system affected by a collision? Experimentally demonstrate that linear

More information

Conservation of Momentum

Conservation of Momentum Conservation of Momentum Momentum is a vector quantity that is always conserved. If J = 0, p i = p f The total momentum of an isolated system is constant. Conservation of Energy Energy is a scalar quantity

More information

Chapter 8- Rotational Motion

Chapter 8- Rotational Motion Chapter 8- Rotational Motion Assignment 8 Textbook (Giancoli, 6 th edition), Chapter 7-8: Due on Thursday, November 13, 2008 - Problem 28 - page 189 of the textbook - Problem 40 - page 190 of the textbook

More information

Multiple Choice Review for Final Exam ~ Physics 1020

Multiple Choice Review for Final Exam ~ Physics 1020 Multiple Choice Review for Final Exam ~ Physics 1020 1. You are throwing a ball straight up in the air. At the highest point, the ball s a) velocity and acceleration are zero b) velocity is nonzero, but

More information

(A) 0 (B) mv (C) 2mv (D) 2mv sin θ (E) 2mv cos θ

(A) 0 (B) mv (C) 2mv (D) 2mv sin θ (E) 2mv cos θ Physics 1 Lesson 8 Forces and Momentum Homework Outcomes 1. Define linear momentum. 2. Determine the total linear momentum of a system. 3. Apply the Law of Conservation of Momentum to solve problems. 4.

More information

Distance travelled time taken and if the particle is a distance s(t) along the x-axis, then its instantaneous speed is:

Distance travelled time taken and if the particle is a distance s(t) along the x-axis, then its instantaneous speed is: Chapter 1 Kinematics 1.1 Basic ideas r(t) is the position of a particle; r = r is the distance to the origin. If r = x i + y j + z k = (x, y, z), then r = r = x 2 + y 2 + z 2. v(t) is the velocity; v =

More information

Review questions. Before the collision, 70 kg ball is stationary. Afterward, the 30 kg ball is stationary and 70 kg ball is moving to the right.

Review questions. Before the collision, 70 kg ball is stationary. Afterward, the 30 kg ball is stationary and 70 kg ball is moving to the right. Review questions Before the collision, 70 kg ball is stationary. Afterward, the 30 kg ball is stationary and 70 kg ball is moving to the right. 30 kg 70 kg v (a) Is this collision elastic? (b) Find the

More information

= y(x, t) =A cos (!t + kx)

= y(x, t) =A cos (!t + kx) A harmonic wave propagates horizontally along a taut string of length L = 8.0 m and mass M = 0.23 kg. The vertical displacement of the string along its length is given by y(x, t) = 0. m cos(.5 t + 0.8

More information

PS113 Chapter 7. Impulse and Momentum

PS113 Chapter 7. Impulse and Momentum PS113 Chapter 7 Impulse and Momentum 1 The impulse-momentum theorem There are many situations in which the force acting on a object is not constant, but varies with time. The resulting motion can be simply

More information

Chapter 9. Collisions. Copyright 2010 Pearson Education, Inc.

Chapter 9. Collisions. Copyright 2010 Pearson Education, Inc. Chapter 9 Linear Momentum and Collisions Linear Momentum Units of Chapter 9 Momentum and Newton s Second Law Impulse Conservation of Linear Momentum Inelastic Collisions Elastic Collisions Units of Chapter

More information

PY205N Spring The vectors a, b, and c. are related by c = a b. The diagram below that best illustrates this relationship is (a) I

PY205N Spring The vectors a, b, and c. are related by c = a b. The diagram below that best illustrates this relationship is (a) I PY205N Spring 2013 Final exam, practice version MODIFIED This practice exam is to help students prepare for the final exam to be given at the end of the semester. Please note that while problems on this

More information

Chapter 9 Linear Momentum and Collisions

Chapter 9 Linear Momentum and Collisions Chapter 9 Linear Momentum and Collisions Units of Chapter 9 Linear Momentum Momentum and Newton s Second Law Impulse Conservation of Linear Momentum Inelastic Collisions Elastic Collisions Units of Chapter

More information

LINEAR MOMENTUM AND COLLISIONS

LINEAR MOMENTUM AND COLLISIONS LINEAR MOMENTUM AND COLLISIONS Chapter 9 Units of Chapter 9 Linear Momentum Momentum and Newton s Second Law Impulse Conservation of Linear Momentum Inelastic Collisions Elastic Collisions Center of Mass

More information

Table of Contents. Pg. # Momentum & Impulse (Bozemanscience Videos) 1 1/11/16

Table of Contents. Pg. # Momentum & Impulse (Bozemanscience Videos) 1 1/11/16 Table of Contents g. # 1 1/11/16 Momentum & Impulse (Bozemanscience Videos) 2 1/13/16 Conservation of Momentum 3 1/19/16 Elastic and Inelastic Collisions 4 1/19/16 Lab 1 Momentum 5 1/26/16 Rotational Dynamics

More information

PROJECTILE MOTION: CONSERVATION OF MOMENTUM 19 FEBRUARY 2013

PROJECTILE MOTION: CONSERVATION OF MOMENTUM 19 FEBRUARY 2013 PROJECTILE MOTION: CONSERVATION OF MOMENTUM 19 FEBRUARY 2013 Lesson Description In this lesson we: Learn that an object s momentum is the amount of motion it has due to its mass and velocity. Show that

More information

Chapter 7. Impulse and Momentum

Chapter 7. Impulse and Momentum Chapter 7 Impulse and Momentum Chaper 6 Review: Work and Energy Forces and Displacements Effect of forces acting over a displacement Work W = (F cos)s Work changes the Kinetic Energy of a mass Kinetic

More information

a = v2 R where R is the curvature radius and v is the car s speed. To provide this acceleration, the car needs static friction force f = ma = mv2

a = v2 R where R is the curvature radius and v is the car s speed. To provide this acceleration, the car needs static friction force f = ma = mv2 PHY 30 K. Solutions for mid-term test #. Problem 1: The forces acting on the car comprise its weight mg, the normal force N from the road that cancels it, and the static friction force f that provides

More information

Extra credit assignment #4 It can be handed in up until one class before Test 4 (check your course outline). It will NOT be accepted after that.

Extra credit assignment #4 It can be handed in up until one class before Test 4 (check your course outline). It will NOT be accepted after that. Extra credit assignment #4 It can be handed in up until one class before Test 4 (check your course outline). It will NOT be accepted after that. NAME: 4. Units of power include which of the following?

More information

Multiple choice questions [60 points]

Multiple choice questions [60 points] Multiple choice questions [60 points] Answer all of the following questions. Read each question carefully. Fill the correct bubble on your scantron sheet. Each correct answer is worth 4 points. Each question

More information

Impulse and Momentum continued

Impulse and Momentum continued Chapter 7 Impulse and Momentum continued 7.2 The Principle of Conservation of Linear Momentum External forces Forces exerted on the objects by agents external to the system. Net force changes the velocity

More information

Collision Theory Challenge Problems

Collision Theory Challenge Problems Collision Theory Challenge Problems Problem 1 Estimate the energy loss in a completely inelastic collision between two identical cars that collide head-on traveling at highway speeds. Problem 2 You just

More information

Last Name: First Name Network-ID Discussion Section: Discussion TA Name:

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 out of sight. Keep your calculator on your own desk. Calculators cannot be shared.

More information