Modeling the Motion of a Projectile in Air

Size: px
Start display at page:

Download "Modeling the Motion of a Projectile in Air"

Transcription

1 In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle and the energy principle; model the motion with a computer program to simulate this motion, both with and without air resistance, to see the effects of a dissipative force on motion, and to decompose the forces into parallel and perpendicular components; and plot the energy graphs for this system to see the effects of dissipative forces on energy. 1 Preparation: Analysis A ball (mass 50 kg) is fired from a cannon with an initial velocity of 60,30,0 m/s at a location of 500,100,0 m. For simplicity, let s first consider the force of air resistance on the ball to be negligible. Answer the following questions on a whiteboard. Start from fundamental physics principles and be clear about your choice of system. Do not use any pre-derived formulas. Be prepared to show all steps in your work to your TA, not just the final answer. 1. Starting from the energy principle, find the speed (magnitude of velocity) of the ball just before it hits the ground (defined by the plane y=0). 2. Starting from the momentum principle, find the x-component of the velocity of the ball just before it hits the ground. (Hint: You are near the surface of the Earth) 3. Starting from the momentum principle and the position update formula, find the amount of time it takes for the ball to hit the ground after it is fired from the cannon. 4. How far has the package traveled horizontally during the time it was falling? Draw a diagram showing the path of the ball during this time. 5. Imagine that the mass of the ball was 100 kg instead of 50 kg (all else being the same). Qualitatively, how would your answers to parts 1 through 4 change? Explain briefly. 6. Finally, let s imagine the force of air resistance (see page 245 of the textbook) to be substantial enough that it cannot be ignored (which is closer to reality in a case such as this.) In your own words, how would your answers to parts 1 through 5 change? Would the mass of the ball affect your answers in this case? Draw a new diagram showing the path ball for the case of nonzero air resistance. 1

2 Write your answers to the above questions on a sheet of paper, so that you can compare them to the results you get using the computer model. Compare your work with a neighboring group. Have an instructor check your work before proceeding to the program. 2 Modeling the motion without air resistance Download the VPython script from the WebAssign assignment. Read through the code carefully before moving on. Make sure you understand the structure of the code, and meanings of the various parameters. 2.1 Writing the program First, we will use the program to model the motion of the fired ball in the case of no air resistance. You will need to insert the proper code into the while loop of the program. Your code should do the following: 1. calculate the net force on the ball 2. update the ball s momentum 3. update the position of the ball 4. draw a trail for the ball 5. determine the parallel component of the net force 6. determine the perpendicular component of the net force 7. update the locations and axes of the arrows representing these components 8. update time After the loop, add code to print the final values of: the time the balls speed the x- and y-component of the ball s velocity the x-component of the ball s position When finished, run the program. 2

3 2.2 Questions about the model Answer these questions on your whiteboard. 1. Observe the trajectory of the ball. What do you notice? What is the ball s final position? Does this agree with what you predicted in your written analysis? 2. Compare your calculated final speed and total time of the drop to those predicted by the computer model. 3. Change the mass of the ball to 100 kg. Does this make any difference to the motion? 4. Increase the time step by a factor of 10 of the original value, run the program. Discuss the resulting 5. Increase the time step by a factor of 100 of the original value, run the program. Discuss the resulting 6. Return the time step to its original value. 3 Modeling the motion with air resistance Now modify the computer program to include the force of air resistance on the falling package. An approximate formula for the force of air resistance on an object is given by: F air = 1 2 CρAv2ˆv where C is the drag coefficient, ρ is the density of air (called D in the program), A is the cross sectional area of the object, and v is the object s speed. Note that the direction of the force is opposite to object s velocity. The drag coefficient depends on the shape and surface properties of the object. We will assume our ball is a smooth sphere with a drag coefficient of about 0.1. The ball has a radius of 1 m, and the density of air at sea level is about 1.3 kg/m 3. Check the Constants section of your program to make sure these values are entered correctly. Once you have modified the program, run it, and answer the following questions on your whiteboard. 1. Observe the trajectory of the ball. What do you notice? What has changed from the case without air resistance? Compare the final position of this ball with the one from the previous section. Does this agree with what you predicted in your written analysis? 2. How has the final velocity before impact changed? Does this make sense? 3. Try using a mass of 100 kg and 200 kg for the ball. Does changing the mass make a difference to the motion? Why? 4. Try different values of the drag coefficient between 0.05 and 1.0 to see what effect it has on the Compare your work with a neighboring group. Have an instructor check your work before proceeding to the next section. 3

4 4 Plotting energy graphs We will now add code to plot graphs of kinetic energy, potential energy, and their sum for the system of the ball and Earth (but not the air). Before the loop, type in the following statements: Kgraph=gcurve(color=color.red) Ugraph=gcurve(color=color.cyan) KplusUgraph=gcurve(color=color.yellow) Now in the loop of the program, after updating the position of the objects, but before updating time, add code to calculate the kinetic energy of the ball, K, and the gravitational potential energy, U. Note that you can use the approximation for gravitational potential energy near the Earth s surface, mgy. In fact, this formula gives the difference in potential energy from a fixed reference point (i.e., the ground), not the actual potential energy. This is fine because we are only interested in how the potential energy changes in this case. Immediately after the code that calculates K and U, add statements to plot these values: Kgraph.plot(pos=(t,K)) Ugraph.plot(pos=(t,U)) KplusUgraph.plot(pos=(t,K+U)) 5 Numerical Experiments Let s first examine the case of zero air resistance. Do not erase the air resistance statements in your program you can temporarily set the value of the drag coefficient to zero. Run the program. Set C to 0 to remove the effects of and run the program. 1. Do the graphs of K and U make sense? 2. Is the graph of K + U for the Earth-ball system what you expect? Now reset C to 0.1 to include air resistance again and run the program. 1. What has happened to the graph of K + U? Where is the energy going? 2. How has the graph of K changed from the no air resistance case? 3. Notice the rate of change of K + U (the slope of this curve) is highest when the kinetic energy is highest. If this is hard to notice, try changing the drag coefficient from 0.1 to 0.4. Why is this the case? (Think about which quantities the air resistance force depends on.) 4. Discuss the phenomenon of energy dissipation as it pertains to this numerical experiment. Use specific examples (e.g., C=0 vs C=0.05). 4

5 6 Turn in your program to WebAssign You will need this program for a homework assignment. Before uploading it, make sure it works properly. Make sure everyone in the group agrees that the program is correct. Check with a neighboring group and your TA. Everyone should turn in the program to WebAssign, and make sure everyone has a copy of the program. You will need this program for a homework assignment. When you turn in a program to WebAssign, be sure to follow the instructions given there, which may sometimes ask you to change some of the parameters in your program. You can retrieve the program from WebAssign once you have uploaded it. Have an instructor check your work for credit. Submit your program to WebAssign and answer any WebAssign questions for this lab. Last edited: Friday 27 th August, 2010 at 1:33pm 5

Calculating and displaying the magnetic field of a single moving charged particle

Calculating and displaying the magnetic field of a single moving charged particle 1 Introduction Calculating displaying the magnetic of a single moving charged particle A proton moves with a constant Calculating Calculating velocity of 4 10 displaying displaying 4 m/s in the the the

More information

1 Newton s 2nd and 3rd Laws

1 Newton s 2nd and 3rd Laws Physics 13 - Winter 2007 Lab 2 Instructions 1 Newton s 2nd and 3rd Laws 1. Work through the tutorial called Newton s Second and Third Laws on pages 31-34 in the UW Tutorials in Introductory Physics workbook.

More information

Computer Model of Spring-Mass System. Q1: Can a computer model of a mass-spring system, based on the finite-time form of the momentum principle

Computer Model of Spring-Mass System. Q1: Can a computer model of a mass-spring system, based on the finite-time form of the momentum principle QUESTIONS: Parts I, II (this week s activity): Computer Model of Spring-Mass System Q1: Can a computer model of a mass-spring system, based on the finite-time form of the momentum principle and using your

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 115.3 MIDTERM TEST Alternative Sitting October 011 Time: 90 minutes NAME: (Last) Please Print (Given) STUDENT NO.: LECTURE

More information

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm

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

More information

PHYSICS 221 Fall 2013 EXAM 2: November 6, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #:

PHYSICS 221 Fall 2013 EXAM 2: November 6, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #: PHYSICS 221 Fall 2013 EXAM 2: November 6, 2013 8:15pm 10:15pm Name (printed): Recitation Instructor: Section #: INSTRUCTIONS: This exam contains 25 multiple choice questions, plus two extra credit questions,

More information

2013 Purdue University 1

2013 Purdue University 1 Lab #11 Collisions: Rutherford Scattering OBJECTIVES In this lab you will: Use the energy and momentum principles to analyze the problem of Rutherford scattering, and estimate the initial conditions to

More information

Physics 20 Homework 2 SIMS 2016

Physics 20 Homework 2 SIMS 2016 Physics 20 Homework 2 SIMS 2016 Due: Saturday, August 20 th 1. In class, we ignored air resistance in our discussion of projectile motion. Now, let s derive the relevant equation of motion in the case

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

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

Unit 7: Oscillations

Unit 7: Oscillations Text: Chapter 15 Unit 7: Oscillations NAME: Problems (p. 405-412) #1: 1, 7, 13, 17, 24, 26, 28, 32, 35 (simple harmonic motion, springs) #2: 45, 46, 49, 51, 75 (pendulums) Vocabulary: simple harmonic motion,

More information

Name: Per: Date: Projectile Simulation Lab Activity

Name: Per: Date: Projectile Simulation Lab Activity Name: Per: Date: Projectile Simulation Lab Activity A projectile is defined as any object that is launched into the air without a means of self-propulsion. Like any other object the motion of a projectile

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

Changes in Energy and Momentum

Changes in Energy and Momentum Changes in Energy and Momentum Name: Group Members: Date: TA s Name: Learning Objectives: 1. Understanding the relationship between force, distance and changes in kinetic energy. 2. Understanding the relationship

More information

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity?

Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? Lab Exercise: Gravity (Report) Your Name & Your Lab Partner s Name Due Date Gravity Pre-Lab 1. Why do you need an inclined plane to measure the effects due to gravity? 2. What are several advantage of

More information

PHYSICS 111 SPRING EXAM 2: March 6, 2018; 8:15-9:45 pm

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

More information

Physics 2010 Work and Energy Recitation Activity 5 (Week 9)

Physics 2010 Work and Energy Recitation Activity 5 (Week 9) Physics 2010 Work and Energy Recitation Activity 5 (Week 9) Name Section Tues Wed Thu 8am 10am 12pm 2pm 1. The figure at right shows a hand pushing a block as it moves through a displacement Δ! s. a) Suppose

More information

Student Instruction Sheet: Unit 3, Lesson 3. Solving Quadratic Relations

Student Instruction Sheet: Unit 3, Lesson 3. Solving Quadratic Relations Student Instruction Sheet: Unit 3, Lesson 3 Solving Quadratic Relations Suggested Time: 75 minutes What s important in this lesson: In this lesson, you will learn how to solve a variety of quadratic relations.

More information

Exam 1 Practice SOLUTIONS Physics 111Q.B

Exam 1 Practice SOLUTIONS Physics 111Q.B Exam 1 Practice SOLUTIONS Physics 111Q.B Instructions This is a collection of practice problems for the first exam. The first exam will consist of 7-10 multiple choice questions followed by 1-3 problems

More information

Physics UCSB Winter 2015 First Midterm Exam Tuesday 1/27/2015

Physics UCSB Winter 2015 First Midterm Exam Tuesday 1/27/2015 Physics 1 @ UCSB Winter 2015 First Midterm Exam Tuesday 1/27/2015 Print your last name: Print your first name: Print your perm no.: Check which discussion section you attend (your graded exam will be returned

More information

PHYSICS 221 SPRING 2015

PHYSICS 221 SPRING 2015 PHYSICS 221 SPRING 2015 EXAM 2: April 2, 2015 8:15-10:15pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit questions,

More information

Chapter 3, Problem 28. Agenda. Forces. Contact and Field Forces. Fundamental Forces. External and Internal Forces 2/6/14

Chapter 3, Problem 28. Agenda. Forces. Contact and Field Forces. Fundamental Forces. External and Internal Forces 2/6/14 Agenda Today: Homework Quiz, Chapter 4 (Newton s Laws) Thursday: Applying Newton s Laws Start reading Chapter 5 Chapter 3, Problem 28 A ball with a horizontal speed of 1.25 m/s rolls off a bench 1.00 m

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 115.3 MIDTERM TEST October 23, 2014 Time: 90 minutes NAME: (Last) Please Print (Given) STUDENT NO.: LECTURE SECTION (please

More information

PHY221 Lab 2 - Experiencing Acceleration: Motion with constant acceleration; Logger Pro fits to displacement-time graphs

PHY221 Lab 2 - Experiencing Acceleration: Motion with constant acceleration; Logger Pro fits to displacement-time graphs Page 1 PHY221 Lab 2 - Experiencing Acceleration: Motion with constant acceleration; Logger Pro fits to displacement-time graphs Print Your Name Print Your Partners' Names You will return this handout to

More information

Representations of Motion in One Dimension: Speeding up and slowing down with constant acceleration

Representations of Motion in One Dimension: Speeding up and slowing down with constant acceleration Representations of Motion in One Dimension: Speeding up and slowing down with constant acceleration Name: Group Members: Date: TA s Name: Apparatus: Aluminum track and supports, PASCO Smart Cart, two cart

More information

Purpose: Materials: WARNING! Section: Partner 2: Partner 1:

Purpose: Materials: WARNING! Section: Partner 2: Partner 1: Partner 1: Partner 2: Section: PLEASE NOTE: You will need this particular lab report later in the semester again for the homework of the Rolling Motion Experiment. When you get back this graded report,

More information

OPEN ONLY WHEN INSTRUCTED

OPEN ONLY WHEN INSTRUCTED OPEN ONLY WHEN INSTRUCTED Name: Hr: AP Physics C Mechanics Final Semester Examination Instructions: Write your name on the exam as well as scantron before you begin This exam consists of Section 1) Multiple

More information

Gravity Lab Introduction. Name. Date Block

Gravity Lab Introduction. Name. Date Block Gravity Lab Introduction Name Date Block Introduction: In this lab, computer simulation, we will investigate the factors that effect gravitational force. We know that in order to feel or see the effects

More information

PHY 221 Lab 3 Vectors and Motion in 1 and 2 Dimensions

PHY 221 Lab 3 Vectors and Motion in 1 and 2 Dimensions PHY 221 Lab 3 Vectors and Motion in 1 and 2 Dimensions Print Your Name Print Your Partners' Names Instructions Before lab, read the Introduction, and answer the Pre-Lab Questions on the last page of this

More information

Prelab: Complete the prelab section BEFORE class Purpose:

Prelab: Complete the prelab section BEFORE class Purpose: Lab: Projectile Motion Prelab: Complete the prelab section BEFORE class Purpose: What is the Relationship between and for the situation of a cannon ball shot off a with an angle of from the horizontal.

More information

Lab 10: Ballistic Pendulum

Lab 10: Ballistic Pendulum Lab Section (circle): Day: Monday Tuesday Time: 8:00 9:30 1:10 2:40 Lab 10: Ballistic Pendulum Name: Partners: Pre-Lab You are required to finish this section before coming to the lab it will be checked

More information

Name: Unit 4 Newton s 1 st & 3 rd Law

Name: Unit 4 Newton s 1 st & 3 rd Law Name: Period: Table #: Unit 4 Newton s 1 st & 3 rd Law 1 UNIT IV: Reading - Force Diagrams The analysis of a problem in dynamics usually involves the selection and analysis of the relevant forces acting

More information

Answer the following questions. Please, SHOW ALL YOUR WORK:

Answer the following questions. Please, SHOW ALL YOUR WORK: Introduction In this lab you will use conservation of mechanical energy to predict the motion of objects in situations that are difficult to analyze with force concepts. Prelab Activity Read sections 5.3,

More information

Computer Model of Spring-Mass System, Part 3 of Springs Lab

Computer Model of Spring-Mass System, Part 3 of Springs Lab Computer Model of Spring-Mass System, Part 3 of Springs Lab QUESTIONS: Modeling the real world: Q1: Can a computer program of a mass-spring system, based on the finite-time form of the momentum principle

More information

PHYSICS 221 Fall 2016 EXAM 2: November 02, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #:

PHYSICS 221 Fall 2016 EXAM 2: November 02, :15pm 10:15pm. Name (printed): Recitation Instructor: Section #: PHYSICS 221 Fall 2016 EXAM 2: November 02, 2016 8:15pm 10:15pm Name (printed): Recitation Instructor: Section #: INSTRUCTIONS: This exam contains 25 multiple-choice questions, plus 2 extra-credit questions,

More information

Mark on the diagram the position of the ball 0.50 s after projection.

Mark on the diagram the position of the ball 0.50 s after projection. IB Kinematics Problems 1. This question is about projectile motion. A small steel ball is projected horizontally from the edge of a bench. Flash photographs of the ball are taken at.1 s intervals. The

More information

Figure 2.1 The Inclined Plane

Figure 2.1 The Inclined Plane PHYS-101 LAB-02 One and Two Dimensional Motion 1. Objectives The objectives of this experiment are: to measure the acceleration due to gravity using one-dimensional motion, i.e. the motion of an object

More information

AAPT UNITED STATES PHYSICS TEAM AIP 2008

AAPT UNITED STATES PHYSICS TEAM AIP 2008 8 F = ma Exam AAPT UNITED STATES PHYSICS TEAM AIP 8 8 F = ma Contest 5 QUESTIONS - 75 MINUTES INSTRUCTIONS DO NOT OPEN THIS TEST UNTIL YOU ARE TOLD TO BEGIN Use g = N/kg throughout this contest. You may

More information

General Physics 1 Lab - PHY 2048L Lab 2: Projectile Motion / Solar System Physics Motion PhET Lab Date. Part 1: Projectile Motion

General Physics 1 Lab - PHY 2048L Lab 2: Projectile Motion / Solar System Physics Motion PhET Lab Date. Part 1: Projectile Motion General Physics 1 Lab - PHY 2048L Name Lab 2: Projectile Motion / Solar System Physics Motion PhET Lab Date Author: Harsh Jain / PhET Source: Part 1: Projectile Motion http://phet.colorado.edu/en/simulation/projectile-motion

More information

Overview In chapter 16 you learned how to calculate the Electric field from continuous distributions of charge; you follow four basic steps.

Overview In chapter 16 you learned how to calculate the Electric field from continuous distributions of charge; you follow four basic steps. Materials: whiteboards, computers with VPython Objectives In this lab you will do the following: Computationally model the electric field of a uniformly charged rod Computationally model the electric field

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 5.3 FINAL EXAMINATION NAME: (Last) Please Print (Given) Time: 80 minutes STUDENT NO.: LECTURE SECTION (please check): 0

More information

AP Physics B SUMMER ASSIGNMENT Summer, Instructor: Rhett Butler

AP Physics B SUMMER ASSIGNMENT Summer, Instructor: Rhett Butler AP Physics B SUMMER ASSIGNMENT Summer, 2013 Instructor: Rhett Butler Welcome to AP Physics! I am delighted to be in the position to help further your understanding of the physical world around us. I also

More information

Conservation of Momentum

Conservation of Momentum Learning Goals Conservation of Momentum After you finish this lab, you will be able to: 1. Use Logger Pro to analyze video and calculate position, velocity, and acceleration. 2. Use the equations for 2-dimensional

More information

PHYSICS 111 SPRING EXAM 2: March 6, 2018; 8:15-9:45 pm

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

More information

Potential Energy & Conservation of Energy

Potential Energy & Conservation of Energy PHYS 101 Previous Exam Problems CHAPTER 8 Potential Energy & Conservation of Energy Potential energy Conservation of energy conservative forces Conservation of energy friction Conservation of energy external

More information

Motion II. Goals and Introduction

Motion II. Goals and Introduction Motion II Goals and Introduction As you have probably already seen in lecture or homework, and if you ve performed the experiment Motion I, it is important to develop a strong understanding of how to model

More information

EXPERIMENT 6: COLLISIONS

EXPERIMENT 6: COLLISIONS TA name Lab section Date TA Initials (on completion) Name UW Student ID # Lab Partner(s) EXPERIMENT 6: COLLISIONS CONSERVATION OF ENERGY & MOMENTUM IN COLLISIONS 117 Textbook Reference: Walker, Chapter

More information

PHYSICS 221 SPRING 2014

PHYSICS 221 SPRING 2014 PHYSICS 221 SPRING 2014 EXAM 2: April 3, 2014 8:15-10:15pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit questions,

More information

PHYSICS 221, FALL 2010 FINAL EXAM MONDAY, DECEMBER 13, 2010

PHYSICS 221, FALL 2010 FINAL EXAM MONDAY, DECEMBER 13, 2010 PHYSICS 221, FALL 2010 FINAL EXAM MONDAY, DECEMBER 13, 2010 Name (printed): Nine-digit ID Number: Section Number: Recitation Instructor: INSTRUCTIONS: i. Put away all materials except for pens, pencils,

More information

Topic 2 Revision questions Paper

Topic 2 Revision questions Paper Topic 2 Revision questions Paper 1 3.1.2018 1. [1 mark] The graph shows the variation of the acceleration a of an object with time t. What is the change in speed of the object shown by the graph? A. 0.5

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

Faculty of Engineering and Department of Physics Engineering Physics 131 Midterm Examination Monday February 24, 2014; 7:00 pm 8:30 pm

Faculty of Engineering and Department of Physics Engineering Physics 131 Midterm Examination Monday February 24, 2014; 7:00 pm 8:30 pm Faculty of Engineering and Department of Physics Engineering Physics 131 Midterm Examination Monday February 4, 014; 7:00 pm 8:30 pm 1. No notes or textbooks allowed.. Formula sheets are included (may

More information

PHYSICS 1050 Test 1 University of Wyoming 25 September 2008

PHYSICS 1050 Test 1 University of Wyoming 25 September 2008 Name: PHYSICS 15 Test 1 University of Wyoming 25 September 28 This test is closed-note and closed-book. No written, printed, or recorded material is permitted, with the exception of a formula sheet with

More information

Electric Fields and Potentials

Electric Fields and Potentials Electric Fields and Potentials INTRODUCTION Physicists use the concept of a field to explain the interaction of particles or bodies through space, i.e., the action-at-a-distance force between two bodies

More information

Physics 211 Spring 2014 Final Practice Exam

Physics 211 Spring 2014 Final Practice Exam Physics 211 Spring 2014 Final Practice Exam This exam is closed book and notes. A formula sheet will be provided for you at the end of the final exam you can download a copy for the practice exam from

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 115.3 MIDTERM TEST Time: 90 minutes NAME: (Last) Please Print (Given) STUDENT NO.: LECTURE SECTION (please check): 01 A.

More information

1. The diagram below shows the variation with time t of the velocity v of an object.

1. The diagram below shows the variation with time t of the velocity v of an object. 1. The diagram below shows the variation with time t of the velocity v of an object. The area between the line of the graph and the time-axis represents A. the average velocity of the object. B. the displacement

More information

PHYSICS 221 SPRING EXAM 2: March 30, 2017; 8:15pm 10:15pm

PHYSICS 221 SPRING EXAM 2: March 30, 2017; 8:15pm 10:15pm PHYSICS 221 SPRING 2017 EXAM 2: March 30, 2017; 8:15pm 10:15pm Name (printed): Recitation Instructor: Section # Student ID# INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit

More information

Phys 0175 Practice Midterm Exam II Feb 25, 2009

Phys 0175 Practice Midterm Exam II Feb 25, 2009 Phys 0175 Practice Midterm Exam II Feb 25, 2009 Note: THIS IS A REPRESENTATION OF THE ACTUAL TEST. It is a sample and does not include questions on every topic covered since the start of the semester.

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 115.3 MIDTERM TEST October 22, 2015 Time: 90 minutes NAME: (Last) Please Print (Given) STUDENT NO.: LECTURE SECTION (please

More information

PH 1110 Summary Homework 1

PH 1110 Summary Homework 1 PH 111 Summary Homework 1 Name Section Number These exercises assess your readiness for Exam 1. Solutions will be available on line. 1a. During orientation a new student is given instructions for a treasure

More information

LAB 6 - GRAVITATIONAL AND PASSIVE FORCES

LAB 6 - GRAVITATIONAL AND PASSIVE FORCES 83 Name Date Partners LAB 6 - GRAVITATIONAL AND PASSIVE FORCES OBJECTIVES OVERVIEW And thus Nature will be very conformable to herself and very simple, performing all the great Motions of the heavenly

More information

LAB PHYSICS MIDTERM EXAMINATION STUDY GUIDE

LAB PHYSICS MIDTERM EXAMINATION STUDY GUIDE Freehold Regional High School District 2011-12 LAB PHYSICS MIDTERM EXAMINATION STUDY GUIDE About the Exam The Lab Physics Midterm Examination consists of 32 multiple choice questions designed to assess

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

1. The diagram shows the electric field lines produced by an electrostatic focussing device.

1. The diagram shows the electric field lines produced by an electrostatic focussing device. 1. The diagram shows the electric field lines produced by an electrostatic focussing device. Which one of the following diagrams best shows the corresponding equipotential lines? The electric field lines

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

Planar Motion with Constant Acceleration

Planar Motion with Constant Acceleration Planar Motion with Constant Acceleration 1. If the acceleration vector of an object is perpendicular to its velocity vector, which of the following must be true? (a) The speed is changing. (b) The direction

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 115.3 Physics and the Universe FINAL EXAMINATION December 14, 013 NAME: (Last) Please Print (Given) Time: 3 hours STUDENT

More information

Friction Can Be Rough

Friction Can Be Rough 10.1 Observe and Find a Pattern Friction Can Be Rough Observe the following experiment: Rest a brick on a rough surface. Tie a string around the brick and attach a large spring scale to it. Pull the scale

More information

Student Exploration: Free-Fall Laboratory

Student Exploration: Free-Fall Laboratory Name: Date: Student Exploration: Free-Fall Laboratory Vocabulary: acceleration, air resistance, free fall, instantaneous velocity, terminal velocity, velocity, vacuum Prior Knowledge Questions (Do these

More information

SPRING 2003 Final Exam, Part A

SPRING 2003 Final Exam, Part A Physics 151 SPRING 2003 Final Exam, Part A Roster No.: Score: 17 pts. possible Exam time limit: 2 hours. You may use calculators and both sides of 2 sheets of notes, handwritten only. Closed book; no collaboration.

More information

Static and Kinetic Friction

Static and Kinetic Friction Ryerson University - PCS 120 Introduction Static and Kinetic Friction In this lab we study the effect of friction on objects. We often refer to it as a frictional force yet it doesn t exactly behave as

More information

Name. University of Maryland Department of Physics

Name. University of Maryland Department of Physics Name University of Maryland Department of Physics Exam 2 (Makeup) 18. November. 2009 Instructions: Do not open this examination until the proctor tells you to begin. 1. When the proctor tells you to begin,

More information

Lab 2. Projectile Motion

Lab 2. Projectile Motion Lab 2. Projectile Motion Goals To determine the launch speed of a projectile and its uncertainty by measuring how far it travels horizontally before landing on the floor (called the range) when launched

More information

Time: 1 hour 30 minutes

Time: 1 hour 30 minutes Paper Reference(s) 6678/01 Edexcel GCE Mechanics M2 Gold Level G3 Time: 1 hour 30 minutes Materials required for examination Mathematical Formulae (Pink) Items included with question papers Nil Candidates

More information

Data and Error Analysis

Data and Error Analysis Data and Error Analysis Introduction In this lab you will learn a bit about taking data and error analysis. The physics of the experiment itself is not the essential point. (Indeed, we have not completed

More information

2. To study circular motion, two students use the hand-held device shown above, which consists of a rod on which a spring scale is attached.

2. To study circular motion, two students use the hand-held device shown above, which consists of a rod on which a spring scale is attached. 1. A ball of mass M attached to a string of length L moves in a circle in a vertical plane as shown above. At the top of the circular path, the tension in the string is twice the weight of the ball. At

More information

PHYSICS 231 Laws of motion PHY 231

PHYSICS 231 Laws of motion PHY 231 PHYSICS 231 Laws of motion 1 Newton s Laws First Law: If the net force exerted on an object is zero the object continues in its original state of motion; if it was at rest, it remains at rest. If it was

More information

Lab: Energy-Rubber Band Cannon C O N C E P T U A L P H Y S I C S : U N I T 4

Lab: Energy-Rubber Band Cannon C O N C E P T U A L P H Y S I C S : U N I T 4 Name Date Period Objectives: Lab: Energy-Rubber Band Cannon C O N C E P T U A L P H Y S I C S : U N I T 4 1) Find the energy stored within the rubber band cannon for various displacements. 2) Find the

More information

Speed of waves. Apparatus: Long spring, meter stick, spring scale, stopwatch (or cell phone stopwatch)

Speed of waves. Apparatus: Long spring, meter stick, spring scale, stopwatch (or cell phone stopwatch) Name: Speed of waves Group Members: Date: TA s Name: Apparatus: Long spring, meter stick, spring scale, stopwatch (or cell phone stopwatch) Objectives 1. To directly calculate the speed of waves in a stretched

More information

Projectile Motion I. Projectile motion is an example of. Motion in the x direction is of motion in the y direction

Projectile Motion I. Projectile motion is an example of. Motion in the x direction is of motion in the y direction What is a projectile? Projectile Motion I A projectile is an object upon which the only force acting is gravity. There are a variety of examples of projectiles. An object dropped from rest is a projectile

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

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

Circuit Lab Free Response

Circuit Lab Free Response Circuit Lab Free Response Directions: You will be given 40 minutes to complete the following written portion of the Circuit Lab exam. The following page contains some helpful formulas that you may use

More information

[1] (b) State one difference and one similarity between the electric field of a point charge and the gravitational field of a point mass....

[1] (b) State one difference and one similarity between the electric field of a point charge and the gravitational field of a point mass.... 1 (a) An electric field always exists around a charged particle. Explain what is meant by an electric field.... [1] (b) State one difference and one similarity between the electric field of a point charge

More information

AP Physics 1 Summer Assignment

AP Physics 1 Summer Assignment Name: Email address (write legibly): AP Physics 1 Summer Assignment Packet 3 The assignments included here are to be brought to the first day of class to be submitted. They are: Problems from Conceptual

More information

Physics 2048 Test 3 Dr. Jeff Saul Spring 2001

Physics 2048 Test 3 Dr. Jeff Saul Spring 2001 Physics 248 Test 3 Dr. Jeff Saul Spring 21 Name: Table: Date: READ THESE INSTRUCTIONS BEFORE YOU BEGIN Before you start the test, WRITE YOUR NAME ON EVERY PAGE OF THE EXAM. Calculators are permitted, but

More information

AP PHYSICS 1 UNIT 4 / FINAL 1 PRACTICE TEST

AP PHYSICS 1 UNIT 4 / FINAL 1 PRACTICE TEST AP PHYSICS 1 UNIT 4 / FINAL 1 PRACTICE TEST NAME FREE RESPONSE PROBLEMS Put all answers on this test. Show your work for partial credit. Circle or box your answers. Include the correct units and the correct

More information

Summer AP Assignment 2016

Summer AP Assignment 2016 Summer AP Assignment 2016 Mr. Michael Wichart (Rm. 109) wichart.m@woodstown.org Summer Assignment Goals The main goal of this assignment is to review some of the material that was taught during Honors

More information

Simple Harmonic Oscillator Challenge Problems

Simple Harmonic Oscillator Challenge Problems Simple Harmonic Oscillator Challenge Problems Problem 1: Dimensional Analysis, Estimation and Concepts Imagine that one drilled a hole with smooth sides straight through the center of the earth, of radius

More information

Projectile motion. Objectives. Assessment. Assessment. Equations. Physics terms 5/20/14. Identify examples of projectile motion.

Projectile motion. Objectives. Assessment. Assessment. Equations. Physics terms 5/20/14. Identify examples of projectile motion. Projectile motion Objectives Identify examples of projectile motion. Solve projectile motion problems. problems Graph the motion of a projectile. 1. Which of the events described below cannot be an example

More information

To explore and investigate projectile motion and how it can be applied to various problems.

To explore and investigate projectile motion and how it can be applied to various problems. NAME: ΔY = 0 Projectile Motion Computer Lab Purpose: To explore and investigate projectile motion and how it can be applied to various problems. Procedure: 1. First, go to the following web site http://galileoandeinstein.physics.virginia.edu/more_stuff/applets/projectile

More information

Lab 5: Projectile Motion

Lab 5: Projectile Motion Lab 5 Projectile Motion 47 Name Date Partners Lab 5: Projectile Motion OVERVIEW We learn in our study of kinematics that two-dimensional motion is a straightforward application of onedimensional motion.

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 115.3 Physics and the Universe FINAL EXAMINATION December 8, 2012 NAME: (Last) Please Print (Given) Time: 3 hours STUDENT

More information

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 2-3

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 2-3 A.P. Physics B Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters - 3 * In studying for your test, make sure to study this review sheet along with your quizzes and homework assignments.

More information

Announcement. Quiz on Friday (Graphing and Projectile Motion) No HW due Wednesday

Announcement. Quiz on Friday (Graphing and Projectile Motion) No HW due Wednesday Going over HW3.05 Announcement Quiz on Friday (Graphing and Projectile Motion) No HW due Wednesday As the red ball rolls off the edge, a green ball is dropped from rest from the same height at the same

More information

Motion *All matter in the universe is constantly at motion Motion an object is in motion if its position is changing

Motion *All matter in the universe is constantly at motion Motion an object is in motion if its position is changing Aim: What is motion? Do Now: Have you ever seen a race? Describe what occurred during it. Homework: Vocabulary Define: Motion Point of reference distance displacement speed velocity force Textbook: Read

More information

LAB 4: PROJECTILE MOTION

LAB 4: PROJECTILE MOTION 57 Name Date Partners LAB 4: POJECTILE MOTION A famous illustration from Newton s Principia showing the relationship between projectile motion and orbital motion OVEVIEW We learned in our study of kinematics

More information

ESG Fall 2006 Final Exam

ESG Fall 2006 Final Exam ESG 8.022 Fall 2006 Final Exam Instructor: Michael Shaw Tuesday, December 19th, 1:30PM to 4:30PM Instructions Show work on all problems. Partial credit cannot be granted without adequate progress. Please

More information

PHYSICS 111 SPRING EXAM 3: April 12, 2016; 8:15pm - 9:45pm

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

More information