Physics 2210 Fall smartphysics 09 Work and Potential Energy, Part II 10/02/2015

Size: px
Start display at page:

Download "Physics 2210 Fall smartphysics 09 Work and Potential Energy, Part II 10/02/2015"

Transcription

1 Physics 10 Fall 015 smartphysics 09 Work and Potential Energy, Part II 10/0/015

2 r i Top View O In the limit N the blue path becomes the black path Frictionless, horizontal surface Spring of force constant k relaxed length L 0 W s = The green path gives the same work as the blue path r f m r f The red path also gives the same work as the green and blue paths Path from r i to r f Approximate path by N that alternate n = 1,,3, N, (n 1)th: radial (n)th: arc F s r for arcs: work done along the even segments vanish F r n r n = 0 F s r for radial steps: Only work done along the odd segments contribute F r n 1 r n 1 = F r n 1 r n 1 F(r)dd lim N F r n 1 r n 1 r i n=1 N F r = k(r L 0 )

3 r f W s F s r dd r i Work done by a Spring r f = k r L 0 dd Change of Variable x = r L 0, x = dr r i r f L 0 W s k xdx = 1 kx r i L 0 r i L 0 W s = 1 k r f L 0 ri L 0 r f = k r L 0 dd r i r f L 0 Or of we let x represent the deformation (which we already did), then W s = 1 k L f Li, or W s = 1 k x f x i Potential Energy of a Spring U S r U S L 0 = W s L0 r = 1 k r L 0 L 0 L 0 = + 1 k r L 0 0 = 1 k r L 0 Taking the relaxed spring to have ZERO potential energy (usually best choice) NOTE: U S = 1 k L, or U S = 1 kx x is not spring length NOTE: x is not spring length

4 Poll A box sliding on a horizontal frictionless surface runs into a fixed spring, compressing it a distance x 1 from its relaxed position while momentarily coming to rest. If the initial speed of the box were doubled, how far x would the spring compress? A. x = x 1 B. x = x 1 C. x = 4 x 1 NOTE: x is not spring length

5 Example 08-0 (1/3) A block of mass m is pushed up against a spring, compressing it a distance x, and the block is then released. The spring projects the block along a frictionless horizontal surface, giving the block a speed v. The same spring is then used to project a second block of mass 4m, giving it a speed of 5v. What distance x was the spring compressed in the second case? Answer in terms of a numerical factor times x, the compression of the first block. (%i1) /* total energy */ Energy: 0.5*mass*speed^ + 0.5*k*compression^; (%o1) 0.5 mass speed compression k (%i) E1i: Energy, mass=m, speed=0, compression=x; (%o) 0.5 k x (%i3) E1f: Energy, mass=m, speed=v, compression=0; (%o3) 0.5 m v (%i4) eqn1: E1i = E1f; (%o4) 0.5 k x = 0.5 m v (%i5) Ei: Energy, mass=4*m, speed=0, compression=x; (%o5) 0.5 k x... continued NOTE: x is not spring length

6 Example 08-0 (/3) Spring on mass m, compression x, results in speed v. same spring on mass 4m: speed of 5v. What distance was the spring compressed in the second case? i.e. x / x =? (%i6) Ef: Energy, mass=4*m, speed=5*v, compression=0; (%o6) 50.0 m v (%i7) eqn: Ei = Ef; (%o7) 0.5 k x = 50.0 m v (%i8) /* strategy: solve for k in each case */ soln1: solve(eqn1, k); m v (%o8) [k = ----] x (%i9) k1: rhs(soln1[1]), numer; m v (%o9) ---- x NOTE: x is not spring length... continued

7 Example 08-0 (3/3) Spring on mass m, compression x, results in speed v. same spring on mass 4m: speed of 5v. What distance was the spring compressed in the second case? i.e. x / x =? (%i10) soln: solve(eqn, k); 100 m v (%o10) [k = ] x (%i11) k: rhs(soln[1]), numer; 100 m v (%o11) x (%i1) soln3: solve(k1=k, x); (%o1) [x = - 10 x, x = 10 x] (%i13) /* take positive root */ x: rhs(soln3[]); (%o13) 10 x Answer: 10 NOTE: x is not spring length

8 Universal Gravitation (in HW for unit 9) r M F G m We treat the gravitational force exerted by a very large spherical mass M on a small mass m as if M is stationary with its center at the origin. Then the force on m always points towards the origin, and with a radial component of F r = GGG r The minus sign means it points inward r f W G = F r r dd r i r f = r i GGG r dd W G = GGG r f = GGG r dd r i 1 r f 1 r i GGm = 1 r 1 r i r f It is conventional to choose U G = 0 at r = U G = 0 GGG 1 r 1 = GGG r U G = GGG r

9 Poll (checkpoint for unit 8) Consider two identical objects released from rest high above the surface of the earth (neglect air resistance for this question). Case 1: we release an object from a height above the surface of the earth equal to 1 earth radius, its kinetic energy just before it hits the earth is K 1. Case we release an object from a height above the surface of the earth equal to earth radii, its kinetic energy just before it hits the earth to be K. Compare the kinetic energy of the two just before they hit the surface of the earth. A. K = K 1 B. K = 4 K 1 C. K = (4/3) K 1 D. K = (3/) K 1

10 Unit 09 In your instructor terms: E = j work done by non conservative force j

11 Poll A block of mass m, initially held at rest on a frictionless ramp a vertical distance H above the floor, slides down the ramp and onto a floor where friction causes it to stop a distance D from the bottom of the ramp. The coefficient of kinetic friction between the box and the floor is μ k. What is the macroscopic work done on the block by friction during this process? A. mgh B. mgh C. μ k mgd D. 0

12 Example (1/3) The kg block slides down a frictionless curved ramp, starting from rest at a height of h = 4 m. The block then slides d = 10 m on a rough horizontal surface before coming to rest. (a)what is the speed of the block at the bottom of the ramp? (b)what is the energy dissipated by friction? (c) What is the coefficient of friction between the block and the horizontal surface? (%i1) Energy: 0.5*m*v^ + m*g*y; (%o1) g m y m v (%i) /* at top from rest */ E0: Energy, v=0, y=h; (%o) g h m (%i3) /* at bottom of ramp v=v1, y=0 */ E1: Energy, v=v1, y=0; (%o3) 0.5 m v1 (%i4) /* Energy is conserved down the ramp: no friction Solve for v1 */ soln1: solve(e1=e0, v1); rat: replaced 0.5 by 1/ = 0.5 (%o4) [v1 = - sqrt() sqrt(g h), v1 = sqrt() sqrt(g h)]

13 Example (/3) The kg block slides down a frictionless curved ramp, starting from rest at a height of h = 4 m. The block then slides d = 10 m on a rough horizontal surface before coming to rest. (a)what is the speed of the block at the bottom of the ramp? (b)what is the energy dissipated by friction? (c) What is the coefficient of friction between the block and the horizontal surface? (%i5) /* take positive root */ v1: rhs(soln1[]); (%o5) sqrt() sqrt(g h) (%i7) v1, g=9.81, h=4, numer; (%o7) Answer (a) 8.86 m/s (%i8) /* Energy dissipated by friction is the total energy of the system before the rough surface */ E0, m=, g=9.81, h=4; (%o8) Answer (b) 78.5 J (%i9) /* Work done by surface is W=-E0, but it is also W=-Fs*d where Fs is the magnitude of the friction force which is given by Fs=mu_k*N, but here the normal force has magnitude N=m*g */ N: m*g; (%o9) g m... continued

14 Example (3/3) The kg block slides down a frictionless curved ramp, starting from rest at a height of h = 4 m. The block then slides d = 10 m on a rough horizontal surface before coming to rest. (a)what is the speed of the block at the bottom of the ramp? (b)what is the energy dissipated by friction? (c) What is the coefficient of friction between the block and the horizontal surface? (%i10) Fs: mu_k*n; (%o10) (%i11) soln: solve(-fs*d=-e0, mu_k); g m mu_k (%o11) [mu_k = -] (%i1) mu_k: rhs(soln[1]); (%o1) - (%i13) mu_k, h=4, d=10; (%o13) - Answer (c) mu_k = 0.40 h d 5 h d

15 Unit 09

16 Poll The potential energy of an object U as a function of x looks like the plot shown above. Where is the force the biggest in the negative x direction? a b c d

17 Unit 10

18 Unit 10

19 Poll A glazed doughnut is shown above. Where is the center of mass of this doughnut? A. The center of mass is not defined in cases where mass is missing. B. Somewhere inside the solid part of the doughnut C. In the center of the hole.

Physics 2210 Fall smartphysics 08 Conservative Force and Potential Energy 09 Work and Potential Energy, Part II 09/30/2015

Physics 2210 Fall smartphysics 08 Conservative Force and Potential Energy 09 Work and Potential Energy, Part II 09/30/2015 Physics 10 Fall 015 smartphysics 08 Conservative Force and Potential Energy 09 Work and Potential Energy, Part II 09/30/015 Conservative forces Definition: Forces whose work done an object is (always)

More information

Physics 2210 Fall smartphysics 09 Work and Potential Energy, Part II 10 Center-of-Mass 10/05/2015

Physics 2210 Fall smartphysics 09 Work and Potential Energy, Part II 10 Center-of-Mass 10/05/2015 Physics 2210 Fall 2015 smartphysics 09 Work and Potential Energy, Part II 10 Center-of-Mass 10/05/2015 Exam 2: smartphysics units 4-9 Midterm Exam 2: Day: Fri Oct. 09, 2015 Time: regular class time Section

More information

Physics 2414 Group Exercise 8. Conservation of Energy

Physics 2414 Group Exercise 8. Conservation of Energy Physics 244 Group Exercise 8 Name : OUID : Name 2: OUID 2: Name 3: OUID 3: Name 4: OUID 4: Section Number: Solutions Solutions Conservation of Energy A mass m moves from point i to point f under the action

More information

( ) = ( ) W net = ΔKE = KE f KE i W F. F d x. KE = 1 2 mv2. Note: Work is the dot product of F and d. Work-Kinetic Energy Theorem

( ) = ( ) W net = ΔKE = KE f KE i W F. F d x. KE = 1 2 mv2. Note: Work is the dot product of F and d. Work-Kinetic Energy Theorem Work-Kinetic Energy Theorem KE = 1 2 mv2 W F change in the kinetic energy of an object F d x net work done on the particle ( ) = ( ) W net = ΔKE = KE f KE i Note: Work is the dot product of F and d W g

More information

Rutgers University Department of Physics & Astronomy. 01:750:271 Honors Physics I Fall Lecture 10. Home Page. Title Page. Page 1 of 37.

Rutgers University Department of Physics & Astronomy. 01:750:271 Honors Physics I Fall Lecture 10. Home Page. Title Page. Page 1 of 37. Rutgers University Department of Physics & Astronomy 01:750:271 Honors Physics I Fall 2015 Lecture 10 Page 1 of 37 Midterm I summary 100 90 80 70 60 50 40 30 20 39 43 56 28 11 5 3 0 1 Average: 82.00 Page

More information

General Physics I Work & Energy

General Physics I Work & Energy General Physics I Work & Energy Forms of Energy Kinetic: Energy of motion. A car on the highway has kinetic energy. We have to remove this energy to stop it. The brakes of a car get HOT! This is an example

More information

Old Exams Questions Ch. 8 T072 Q2.: Q5. Q7.

Old Exams Questions Ch. 8 T072 Q2.: Q5. Q7. Old Exams Questions Ch. 8 T072 Q2.: A ball slides without friction around a loop-the-loop (see Fig 2). A ball is released, from rest, at a height h from the left side of the loop of radius R. What is the

More information

Chapter 8: Potential Energy and Conservation of Energy Work and kinetic energy are energies of motion.

Chapter 8: Potential Energy and Conservation of Energy Work and kinetic energy are energies of motion. Chapter 8: Potential Energy and Conservation of Energy Work and kinetic energy are energies of motion. K = K f K i = 1 2 mv 2 f rf = v v F dr Consider a vertical spring oscillating with mass m attached

More information

Physics 2210 Fall smartphysics 10 Center-of-Mass 11 Conservation of Momentum 10/21/2015

Physics 2210 Fall smartphysics 10 Center-of-Mass 11 Conservation of Momentum 10/21/2015 Physics 2210 Fall 2015 smartphysics 10 Center-of-Mass 11 Conservation of Momentum 10/21/2015 Collective Motion and Center-of-Mass Take a group of particles, each with mass m i, position r i and velocity

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

Today: Work, Kinetic Energy, Potential Energy. No Recitation Quiz this week

Today: Work, Kinetic Energy, Potential Energy. No Recitation Quiz this week Today: Work, Kinetic Energy, Potential Energy HW #4 due Thursday, 11:59 p.m. pm No Recitation Quiz this week 1 What is Energy? Mechanical Electromagnetic PHY 11 PHY 13 Chemical CHE 105 Nuclear PHY 555

More information

Name Student ID Phys121 Win2011

Name Student ID Phys121 Win2011 (1) (3 pts) The airplane in the figure below is travelling at a constant speed and at a fixed altitude with its engines providing forward thrust. Which of the free-body diagrams below best represents the

More information

Physics 211 Lecture 9

Physics 211 Lecture 9 Physics 211 Lecture 9 Today's Concepts: a) Energy and Friction b) Potential energy & force Mechanics Lecture 9, Slide 1 Hour Exam One on THIS Thursday This is a 50 minute exam. Most of the practice exams

More information

A. B. C. D. E. v x. ΣF x

A. B. C. D. E. v x. ΣF x Q4.3 The graph to the right shows the velocity of an object as a function of time. Which of the graphs below best shows the net force versus time for this object? 0 v x t ΣF x ΣF x ΣF x ΣF x ΣF x 0 t 0

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

Common Exam 3, Friday, April 13, :30 9:45 A.M. at KUPF 205 Chaps. 6, 7, 8. HW #8 and HW #9: Due tomorrow, April 6 th (Fri)

Common Exam 3, Friday, April 13, :30 9:45 A.M. at KUPF 205 Chaps. 6, 7, 8. HW #8 and HW #9: Due tomorrow, April 6 th (Fri) Common Exam 3, Friday, April 13, 2007 8:30 9:45 A.M. at KUPF 205 Chaps. 6, 7, 8 Bring calculators (Arrive by 8:15) HW #8 and HW #9: Due tomorrow, April 6 th (Fri) Today. Chapter 8 Hints for HW #9 Quiz

More information

(35+70) 35 g (m 1+m 2)a=m1g a = 35 a= =3.27 g 105

(35+70) 35 g (m 1+m 2)a=m1g a = 35 a= =3.27 g 105 Coordinator: Dr. W. L-Basheer Monday, March 16, 2015 Page: 1 Q1. 70 N block and a 35 N block are connected by a massless inextendable string which is wrapped over a frictionless pulley as shown in Figure

More information

Phys101 Second Major-162 Zero Version Coordinator: Dr. Kunwar S. Saturday, March 25, 2017 Page: N Ans:

Phys101 Second Major-162 Zero Version Coordinator: Dr. Kunwar S. Saturday, March 25, 2017 Page: N Ans: Coordinator: Dr. Kunwar S. Saturday, March 25, 2017 Page: 1 Q1. Only two horizontal forces act on a 3.0 kg body that can move over a frictionless floor. One force is 20 N, acting due east, and the other

More information

Recall: Gravitational Potential Energy

Recall: Gravitational Potential Energy Welcome back to Physics 15 Today s agenda: Work Power Physics 15 Spring 017 Lecture 10-1 1 Recall: Gravitational Potential Energy For an object of mass m near the surface of the earth: U g = mgh h is height

More information

Announcements. If you think there was an error in the scoring, fill out a regrade form and had back to ME (not TAs)

Announcements. If you think there was an error in the scoring, fill out a regrade form and had back to ME (not TAs) Exam 1 scores posted on Canvas: Ø Announcements If you think there was an error in the scoring, fill out a regrade form and had back to ME (not TAs) Ø Must return regrade forms before next Wednesday, October

More information

Conservative vs. Non-conservative forces Gravitational Potential Energy. Conservation of Mechanical energy

Conservative vs. Non-conservative forces Gravitational Potential Energy. Conservation of Mechanical energy Next topic Conservative vs. Non-conservative forces Gravitational Potential Energy Mechanical Energy Conservation of Mechanical energy Work done by non-conservative forces and changes in mechanical energy

More information

AP Physics. Chapters 7 & 8 Review

AP Physics. Chapters 7 & 8 Review AP Physics Chapters 7 & 8 Review 1.A particle moves along the x axis and is acted upon by a single conservative force given by F x = ( 20 4.0x)N where x is in meters. The potential energy associated with

More information

Ch 5 Work and Energy

Ch 5 Work and Energy Ch 5 Work and Energy Energy Provide a different (scalar) approach to solving some physics problems. Work Links the energy approach to the force (Newton s Laws) approach. Mechanical energy Kinetic energy

More information

Chapter 8. Potential Energy and Energy Conservation

Chapter 8. Potential Energy and Energy Conservation Chapter 8. Potential Energy and Energy Conservation Introduction In Ch 7 Work- Energy theorem. We learnt that total work done on an object translates to change in it s Kinetic Energy In Ch 8 we will consider

More information

AP Physics C. Work and Energy. Free-Response Problems. (Without Calculus)

AP Physics C. Work and Energy. Free-Response Problems. (Without Calculus) AP Physics C Work and Energy Free-Response Problems (Without Calculus) 1. A block with a mass m =10 kg is released from rest and slides a distance d = 5 m down a frictionless plane inclined at an angle

More information

Homework #5. Ph 231 Introductory Physics, Sp-03 Page 1 of 4

Homework #5. Ph 231 Introductory Physics, Sp-03 Page 1 of 4 Homework #. Ph Introductory Physics, Sp-0 Page of -A. A 7 kg block moves in a straight line under the influence of a force that varies with position as shown in the figure at the right. If the force is

More information

PHYS Summer Professor Caillault Homework Solutions. Chapter 8

PHYS Summer Professor Caillault Homework Solutions. Chapter 8 PHYS 1111 - Summer 007 - Professor Caillault Homework Solutions Chapter 8 5. Picture the Problem The physical situation is depicted at right. for the Strategy Use W sp = 1 k x i x f work done by the spring.

More information

Chapter 14 Potential Energy and Conservation of Energy

Chapter 14 Potential Energy and Conservation of Energy Chapter 4 Potential Energy and Conservation of Energy Chapter 4 Potential Energy and Conservation of Energy... 2 4. Conservation of Energy... 2 4.2 Conservative and Non-Conservative Forces... 3 4.3 Changes

More information

Worksheet #06 Conservation of Mechanical Energy

Worksheet #06 Conservation of Mechanical Energy Worksheet #06 1. James Bond (90.0 kg), outfitted with perfectly matching skis and skiware, is at the top of a steep slope that a secret spy like him can easily handle. He lets himself go from rest and

More information

Work and energy. 15 m. c. Find the work done by the normal force exerted by the incline on the crate.

Work and energy. 15 m. c. Find the work done by the normal force exerted by the incline on the crate. Work and energy 1. A 10.0-kg crate is pulled 15.0 m up along a frictionless incline as shown in the figure below. The crate starts at rest and has a final speed of 6.00 m/s. motor 15 m 5 a. Draw the free-body

More information

PSI AP Physics I Work and Energy

PSI AP Physics I Work and Energy PSI AP Physics I Work and Energy Multiple-Choice questions 1. A driver in a 2000 kg Porsche wishes to pass a slow moving school bus on a 4 lane road. What is the average power in watts required to accelerate

More information

Question 8.1 Sign of the Energy II

Question 8.1 Sign of the Energy II Question 8. Sign of the Energy II Is it possible for the gravitational potential energy of an object to be negative? a) yes b) no Question 8. Sign of the Energy II Is it possible for the gravitational

More information

Physics 2210 Fall smartphysics 07 Kinetic Energy and Work (continued) 09/25/2015

Physics 2210 Fall smartphysics 07 Kinetic Energy and Work (continued) 09/25/2015 Physics 2210 Fall 2015 smartphysics 07 Kinetic Energy and Work (continued) 09/25/2015 Exam regrade form can be downloaded and printed from the course web page. If you think there is a mistake in grading

More information

Physics 2210 Fall smartphysics 05 (continued) Newton s Universal Gravitation 06 Friction Forces 09/21/2015

Physics 2210 Fall smartphysics 05 (continued) Newton s Universal Gravitation 06 Friction Forces 09/21/2015 Physics 2210 Fall 2015 smartphysics 05 (continued) Newton s Universal Gravitation 06 Friction Forces 09/21/2015 Exam 1 Statistics Average: 21.08 / 30 Std. Dev.: 6.85 Median: 22 Reminder about Interactive

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

Other Examples of Energy Transfer

Other Examples of Energy Transfer Chapter 7 Work and Energy Overview energy. Study work as defined in physics. Relate work to kinetic energy. Consider work done by a variable force. Study potential energy. Understand energy conservation.

More information

= 1 2 kx2 dw =! F! d! r = Fdr cosθ. T.E. initial. = T.E. Final. = P.E. final. + K.E. initial. + P.E. initial. K.E. initial =

= 1 2 kx2 dw =! F! d! r = Fdr cosθ. T.E. initial. = T.E. Final. = P.E. final. + K.E. initial. + P.E. initial. K.E. initial = Practice Template K.E. = 1 2 mv2 P.E. height = mgh P.E. spring = 1 2 kx2 dw =! F! d! r = Fdr cosθ Energy Conservation T.E. initial = T.E. Final (1) Isolated system P.E. initial (2) Energy added E added

More information

P = dw dt. P = F net. = W Δt. Conservative Force: P ave. Net work done by a conservative force on an object moving around every closed path is zero

P = dw dt. P = F net. = W Δt. Conservative Force: P ave. Net work done by a conservative force on an object moving around every closed path is zero Power Forces Conservative Force: P ave = W Δt P = dw dt P = F net v Net work done by a conservative force on an object moving around every closed path is zero Non-conservative Force: Net work done by a

More information

Lecture 10 Mechanical Energy Conservation; Power

Lecture 10 Mechanical Energy Conservation; Power Potential energy Basic energy Lecture 10 Mechanical Energy Conservation; Power ACT: Zero net work The system of pulleys shown below is used to lift a bag of mass M at constant speed a distance h from the

More information

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc.

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc. Chapter 14 Oscillations 14-1 Oscillations of a Spring If an object vibrates or oscillates back and forth over the same path, each cycle taking the same amount of time, the motion is called periodic. The

More information

Chapter 14 Oscillations

Chapter 14 Oscillations Chapter 14 Oscillations If an object vibrates or oscillates back and forth over the same path, each cycle taking the same amount of time, the motion is called periodic. The mass and spring system is a

More information

If you have a conflict, you should have already requested and received permission from Prof. Shapiro to take the make-up exam.

If you have a conflict, you should have already requested and received permission from Prof. Shapiro to take the make-up exam. Reminder: Exam this Sunday Nov. 9. Chapters 5. 5.4, 3.4,.0, 6, 7. Time: 6:0 7:30 PM Look up locations online. Bring calculator and formula sheet. If you have a conflict, you should have already requested

More information

Physics 2211 A & B Quiz #4 Solutions Fall 2016

Physics 2211 A & B Quiz #4 Solutions Fall 2016 Physics 22 A & B Quiz #4 Solutions Fall 206 I. (6 points) A pendulum bob of mass M is hanging at rest from an ideal string of length L. A bullet of mass m traveling horizontally at speed v 0 strikes it

More information

the spring is compressed and x is the compression

the spring is compressed and x is the compression Lecture 4 Spring problem and conservation of mechanical energy Hooke's Law The restoring force exerted by the spring is directly proportional to its displacement. The restoring force acts in a direction

More information

Welcome back to Physics 211

Welcome back to Physics 211 Welcome back to Physics 211 Today s agenda: Work Power Physics 211 Fall 2012 Lecture 09-2 1 Current assignments HW#9 due this Friday at 5 pm. Short assignment SAGE (Thanks for the feedback!) I am using

More information

Chapter 7: Potential energy and energy conservation

Chapter 7: Potential energy and energy conservation Chapter 7: Potential energy and energy conservation Two types of Potential energy gravitational and elastic potential energy Conservation of total mechanical energy When What: Kinetic energy+potential

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

Potential energy functions used in Chapter 7

Potential energy functions used in Chapter 7 Potential energy functions used in Chapter 7 CHAPTER 7 CONSERVATION OF ENERGY Conservation of mechanical energy Conservation of total energy of a system Examples Origin of friction Gravitational potential

More information

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m PSI AP Physics C Work and Energy (Algebra Based) Multiple Choice Questions (use g = 10 m/s 2 ) 1. A student throws a ball upwards from the ground level where gravitational potential energy is zero. At

More information

Worksheet #05 Kinetic Energy-Work Theorem

Worksheet #05 Kinetic Energy-Work Theorem Physics Summer 08 Worksheet #05 June. 8, 08. A 0-kg crate is pulled 5 m up along a frictionless incline as shown in the figure below. The crate starts at rest and has a final speed of 6.0 m/s. (a) Draw

More information

Phys101 Second Major-162 Zero Version Coordinator: Dr. Kunwar S. Saturday, March 25, 2017 Page: 1

Phys101 Second Major-162 Zero Version Coordinator: Dr. Kunwar S. Saturday, March 25, 2017 Page: 1 Coordinator: Dr. Kunwar S. Saturday, March 25, 2017 Page: 1 Q1. Only two horizontal forces act on a 3.0 kg body that can move over a frictionless floor. One force is 20 N, acting due east, and the other

More information

Chapter 8 Solutions. The change in potential energy as it moves from A to B is. The change in potential energy in going from A to B is

Chapter 8 Solutions. The change in potential energy as it moves from A to B is. The change in potential energy in going from A to B is Chapter 8 Solutions *8. (a) With our choice for the zero level for potential energy at point B, U B = 0. At point A, the potential energy is given by U A = mgy where y is the vertical height above zero

More information

D) No, because of the way work is defined D) remains constant at zero. D) 0 J D) zero

D) No, because of the way work is defined D) remains constant at zero. D) 0 J D) zero CHAPTER 6 REVIEW NAME 1) Can work be done on a system if there is no motion? A) Yes, if an outside force is provided. B) Yes, since motion is only relative. C) No, since a system which is not moving has

More information

Work and Potential Energy

Work and Potential Energy Work and Potential Energy One general type of energy is potential energy, U. It is the energy that can be associated with the configuration (or arrangement) of a system of objects that exert forces on

More information

Module 14: Application of the Principle of Conservation of Energy

Module 14: Application of the Principle of Conservation of Energy Module 14: Application of the Principle of Conservation of Energy In the preceding chapter we consider closed systems!e system = 0 in which the only interactions on the constituents of a system were due

More information

Energy Whiteboard Problems

Energy Whiteboard Problems Energy Whiteboard Problems 1. (a) Consider an object that is thrown vertically up into the air. Draw a graph of gravitational force vs. height for that object. (b) Based on your experience with the formula

More information

Chapter 07: Kinetic Energy and Work

Chapter 07: Kinetic Energy and Work Chapter 07: Kinetic Energy and Work Conservation of Energy is one of Nature s fundamental laws that is not violated. Energy can take on different forms in a given system. This chapter we will discuss work

More information

Old Exam. Question Chapter 7 072

Old Exam. Question Chapter 7 072 Old Exam. Question Chapter 7 072 Q1.Fig 1 shows a simple pendulum, consisting of a ball of mass M = 0.50 kg, attached to one end of a massless string of length L = 1.5 m. The other end is fixed. If the

More information

POTENTIAL ENERGY AND ENERGY CONSERVATION

POTENTIAL ENERGY AND ENERGY CONSERVATION 7 POTENTIAL ENERGY AND ENERGY CONSERVATION 7.. IDENTIFY: U grav = mgy so ΔU grav = mg( y y ) SET UP: + y is upward. EXECUTE: (a) ΔU = (75 kg)(9.8 m/s )(4 m 5 m) = +6.6 5 J (b) ΔU = (75 kg)(9.8 m/s )(35

More information

Physics 53 Summer Exam I. Solutions

Physics 53 Summer Exam I. Solutions Exam I Solutions In questions or problems not requiring numerical answers, express the answers in terms of the symbols for the quantities given, and standard constants such as g. In numerical questions

More information

Exam 2: Equation Summary

Exam 2: Equation Summary MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.01 Physics Fall Term 2012 Exam 2: Equation Summary Newton s Second Law: Force, Mass, Acceleration: Newton s Third Law: Center of Mass: Velocity

More information

Quiz Samples for Chapter 7 Kinetic Energy and Work

Quiz Samples for Chapter 7 Kinetic Energy and Work Name: Department: Student ID #: Notice ˆ + ( 1) points per correct (incorrect) answer ˆ No penalty for an unanswered question ˆ Fill the lank ( ) with ( ) if the statement is correct (incorrect) ˆ : corrections

More information

Chapter 7 Potential Energy and Energy Conservation

Chapter 7 Potential Energy and Energy Conservation Chapter 7 Potential Energy and Energy Conservation We saw in the previous chapter the relationship between work and kinetic energy. We also saw that the relationship was the same whether the net external

More information

PHYSICS - CLUTCH CH 07: WORK & ENERGY.

PHYSICS - CLUTCH CH 07: WORK & ENERGY. !! www.clutchprep.com INTRO TO ENERGY & ENERGY FORMS ENERGY: A physical quantity without a precise definition. We don't know exactly WHAT it is, but we know HOW it works. - Energy "exists" in many forms;

More information

Potential Energy. Serway 7.6, 7.7;

Potential Energy. Serway 7.6, 7.7; Potential Energy Conservative and non-conservative forces Gravitational and elastic potential energy Mechanical Energy Serway 7.6, 7.7; 8.1 8.2 Practice problems: Serway chapter 7, problems 41, 43 chapter

More information

ENERGY. Conservative Forces Non-Conservative Forces Conservation of Mechanical Energy Power

ENERGY. Conservative Forces Non-Conservative Forces Conservation of Mechanical Energy Power ENERGY Conservative Forces Non-Conservative Forces Conservation of Mechanical Energy Power Conservative Forces A force is conservative if the work it does on an object moving between two points is independent

More information

Name: Date: Period: AP Physics C Work HO11

Name: Date: Period: AP Physics C Work HO11 Name: Date: Period: AP Physics C Work HO11 1.) Rat pushes a 25.0 kg crate a distance of 6.0 m along a level floor at constant velocity by pushing horizontally on it. The coefficient of kinetic friction

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

The content contained in all sections of chapter 6 of the textbook is included on the AP Physics B exam.

The content contained in all sections of chapter 6 of the textbook is included on the AP Physics B exam. WORK AND ENERGY PREVIEW Work is the scalar product of the force acting on an object and the displacement through which it acts. When work is done on or by a system, the energy of that system is always

More information

Physics 2210 Fall smartphysics 16 Rotational Dynamics 11/13/2015

Physics 2210 Fall smartphysics 16 Rotational Dynamics 11/13/2015 Physics 10 Fall 015 smartphysics 16 Rotational Dynamics 11/13/015 A rotor consists of a thin rod of length l=60 cm, mass m=10.0 kg, with two spheres attached to the ends. Each sphere has radius R=10 cm,

More information

Physics 111. Lecture 18 (Walker: 8.3-4) Energy Conservation I March 11, Conservation of Mechanical Energy

Physics 111. Lecture 18 (Walker: 8.3-4) Energy Conservation I March 11, Conservation of Mechanical Energy Physics 111 Lecture 18 (Walker: 8.3-4) Energy Conservation I March 11, 2009 Lecture 18 1/24 Conservation o Mechanical Energy Deinition o mechanical energy: (8-6) I the only work done in going rom the initial

More information

2 possibilities. 2.) Work is done and... 1.) Work is done and... *** The function of work is to change energy ***

2 possibilities. 2.) Work is done and... 1.) Work is done and... *** The function of work is to change energy *** Work-Energy Theorem and Energy Conservation *** The function of work is to change energy *** 2 possibilities 1.) Work is done and... or 2.) Work is done and... 1 EX: A 100 N box is 10 m above the ground

More information

MECHANICAL (TOTAL) ENERGY

MECHANICAL (TOTAL) ENERGY DO NOW: 1/19 If you haven t already, please take the short google form survey posted on Edmodo Please turn in your Work done by friction Lab in the top tray POTENTIAL ENERGY Stored energy An object that

More information

Power. Power is the time rate at which work W is done by a force Average power. (energy per time) P = dw/dt = (Fcosφ dx)/dt = F v cosφ= F.

Power. Power is the time rate at which work W is done by a force Average power. (energy per time) P = dw/dt = (Fcosφ dx)/dt = F v cosφ= F. Power Power is the time rate at which work W is done by a force Aerage power P ag = W/ t Instantaneous power (energy per time) P = dw/dt = (Fcosφ dx)/dt = F cosφ= F. Unit: watt 1 watt = 1 W = 1 J/s 1 horsepower

More information

FINAL EXAM CLOSED BOOK

FINAL EXAM CLOSED BOOK Physics 7A- Section 2, Fall 2008. Instructor Lanzara FINAL EXAM CLOSED BOOK GOOD LUCK! Print Name Discussion Section# or Time Signature Discussion Section GSI Student ID# Problem Points Score 1 20 2 20

More information

Chapter 5 Newton s Laws of Motion

Chapter 5 Newton s Laws of Motion Chapter 5 Newton s Laws of Motion Newtonian Mechanics Mass Mass is an intrinsic characteristic of a body The mass of a body is the characteristic that relates a force on the body to the resulting acceleration.

More information

Ch 10 HW: Problem Spring Force

Ch 10 HW: Problem Spring Force Ch 10 HW: Problem 10.1 - Spring Force A 3.40-kg block is held against a vertical wall by a spring force in the setup shown below. The spring has a spring constant k = 725 N/m. Someone pushes on the end

More information

Study of work done by a variable force. Overview of energy. Study of work done by a constant force. Understanding of energy conservation.

Study of work done by a variable force. Overview of energy. Study of work done by a constant force. Understanding of energy conservation. Chap. 7: Work and Energy Overview of energy. Study of work done by a constant force as defined in physics. Relation between work and kinetic energy. Study of work done by a variable force. Study of potential

More information

You may wish to closely review the following figures, examples, and the text sections that discuss them:

You may wish to closely review the following figures, examples, and the text sections that discuss them: Physics 1061 Fall 007, Temple University C. J. Martoff, Instructor Midterm Review Sheet The midterm has 7 or 8 questions on it. Each is a "problem" as opposed to definitions, etc. Each problem has several

More information

PHYSICS 221, FALL 2010 EXAM #1 Solutions WEDNESDAY, SEPTEMBER 29, 2010

PHYSICS 221, FALL 2010 EXAM #1 Solutions WEDNESDAY, SEPTEMBER 29, 2010 PHYSICS 1, FALL 010 EXAM 1 Solutions WEDNESDAY, SEPTEMBER 9, 010 Note: The unit vectors in the +x, +y, and +z directions of a right-handed Cartesian coordinate system are î, ĵ, and ˆk, respectively. In

More information

Work and Kinetic Energy I

Work and Kinetic Energy I Work and Kinetic Energy I Scalar Product The scalar product of any two vectors A and B is a scalar quantity equal to the product of the magnitudes of the two vectors and the cosine of the angle φ between

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

Conservation of Energy Concept Questions

Conservation of Energy Concept Questions Conservation of Energy Concept Questions Question 1: A block of inertia m is attached to a relaxed spring on an inclined plane. The block is allowed to slide down the incline, and comes to rest. The coefficient

More information

In this lecture we will discuss three topics: conservation of energy, friction, and uniform circular motion.

In this lecture we will discuss three topics: conservation of energy, friction, and uniform circular motion. 1 PHYS:100 LECTURE 9 MECHANICS (8) In this lecture we will discuss three topics: conservation of energy, friction, and uniform circular motion. 9 1. Conservation of Energy. Energy is one of the most fundamental

More information

P8.14. m 1 > m 2. m 1 gh = 1 ( 2 m 1 + m 2 )v 2 + m 2 gh. 2( m 1. v = m 1 + m 2. 2 m 2v 2 Δh determined from. m 2 g Δh = 1 2 m 2v 2.

P8.14. m 1 > m 2. m 1 gh = 1 ( 2 m 1 + m 2 )v 2 + m 2 gh. 2( m 1. v = m 1 + m 2. 2 m 2v 2 Δh determined from. m 2 g Δh = 1 2 m 2v 2. . Two objects are connected by a light string passing over a light frictionless pulley as in Figure P8.3. The object of mass m is released from rest at height h. Using the principle of conservation of

More information

In the last lecture the concept of kinetic energy was introduced. Kinetic energy (KE) is the energy that an object has by virtue of its motion

In the last lecture the concept of kinetic energy was introduced. Kinetic energy (KE) is the energy that an object has by virtue of its motion 1 PHYS:100 LETUE 9 MEHANIS (8) I. onservation of Energy In the last lecture the concept of kinetic energy was introduced. Kinetic energy (KE) is the energy that an object has by virtue of its motion KINETI

More information

Physics 201, Midterm Exam 2, Fall Answer Key

Physics 201, Midterm Exam 2, Fall Answer Key Physics 201, Midterm Exam 2, Fall 2006 Answer Key 1) A constant force is applied to a body that is already moving. The force is directed at an angle of 60 degrees to the direction of the body s velocity.

More information

PHY 101. Work and Kinetic Energy 7.1 Work Done by a Constant Force

PHY 101. Work and Kinetic Energy 7.1 Work Done by a Constant Force PHY 101 DR M. A. ELERUJA KINETIC ENERGY AND WORK POTENTIAL ENERGY AND CONSERVATION OF ENERGY CENTRE OF MASS AND LINEAR MOMENTUM Work is done by a force acting on an object when the point of application

More information

Introduction to Mechanics Conservative and Nonconservative Forces Potential Energy

Introduction to Mechanics Conservative and Nonconservative Forces Potential Energy Introduction to Mechanics Conservative and Nonconservative Forces Potential Energy Lana Sheridan De Anza College Mar 20, 2018 Last time work of varying force kinetic energy work-kinetic energy theorem

More information

Practice Exam 2. Multiple Choice Identify the choice that best completes the statement or answers the question.

Practice Exam 2. Multiple Choice Identify the choice that best completes the statement or answers the question. Practice Exam 2 Multiple Choice Identify the choice that best completes the statement or answers the question. 1. A roller-coaster car has a mass of 500.0 kg when fully loaded with passengers. At the bottom

More information

2. What would happen to his acceleration if his speed were half? Energy The ability to do work

2. What would happen to his acceleration if his speed were half? Energy The ability to do work 1. A 40 kilogram boy is traveling around a carousel with radius 0.5 meters at a constant speed of 1.7 meters per second. Calculate his centripetal acceleration. 2. What would happen to his acceleration

More information

Final Exam April 26, 2016

Final Exam April 26, 2016 PHYS 050 Spring 016 Name: Final Exam April 6, 016 INSTRUCTIONS: a) No books or notes are permitted. b) You may use a calculator. c) You must solve all problems beginning with the equations on the Information

More information

Last Time: Chapter 6 Today: Chapter 7

Last Time: Chapter 6 Today: Chapter 7 Last Time: Chapter 6 Today: Chapter 7 Last Time Work done by non- constant forces Work and springs Power Examples Today Poten&al Energy of gravity and springs Forces and poten&al energy func&ons Energy

More information

Chapter 8. Potential Energy & Conservation of Energy

Chapter 8. Potential Energy & Conservation of Energy Chapter 8 Potential Energy & Conservation of Energy 8.1 Potential Energy Technically, potential energy is energy that can be associated with the configuration (arrangement) of a system of objects that

More information

Unit-1. Force & Motion. Solutions 1.6 Energy & Motion page a) W 1. = F.x = 1. = F.cos60!.2x =F.x W 2. b) = W 2 = 2. 2.m.v 1.

Unit-1. Force & Motion. Solutions 1.6 Energy & Motion page a) W 1. = F.x = 1. = F.cos60!.2x =F.x W 2. b) = W 2 = 2. 2.m.v 1. page - 76 1. Two objects K and L are stationary over frictionless horizontal surfaces. They are pulled as shown in the figure. The work done on object K when it reaches point A is W 1 and the work done

More information

Webreview practice test. Forces (again)

Webreview practice test. Forces (again) Please do not write on test. ID A Webreview 4.3 - practice test. Forces (again) Multiple Choice Identify the choice that best completes the statement or answers the question. 1. A 5.0-kg mass is suspended

More information

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m

(A) 10 m (B) 20 m (C) 25 m (D) 30 m (E) 40 m Work/nergy 1. student throws a ball upward where the initial potential energy is 0. t a height of 15 meters the ball has a potential energy of 60 joules and is moving upward with a kinetic energy of 40

More information

Work done by multiple forces. WEST VIRGINIA UNIVERSITY Physics

Work done by multiple forces. WEST VIRGINIA UNIVERSITY Physics Work done by multiple forces Work done by multiple forces no normal work tractor work friction work total work = W T +W f = +10 kj no weight work Work-Energy: Finding the Speed total work = W T +W f =

More information

Lecture 18: Work and Energy. Today s Agenda

Lecture 18: Work and Energy. Today s Agenda Lecture 18: Work and Energy Work and Energy Definition of work Examples Today s Agenda Definition of Mechanical Energy Conservation of Mechanical Energy Conservative forces Physics 201: Lecture 10, Pg

More information

Energy present in a variety of forms. Energy can be transformed form one form to another Energy is conserved (isolated system) ENERGY

Energy present in a variety of forms. Energy can be transformed form one form to another Energy is conserved (isolated system) ENERGY ENERGY Energy present in a variety of forms Mechanical energy Chemical energy Nuclear energy Electromagnetic energy Energy can be transformed form one form to another Energy is conserved (isolated system)

More information