Modeling motion with VPython Every program that models the motion of physical objects has two main parts:

Size: px
Start display at page:

Download "Modeling motion with VPython Every program that models the motion of physical objects has two main parts:"

Transcription

1 1 Modelng moton wth VPython Eery program that models the moton o physcal objects has two man parts: 1. Beore the loop: The rst part o the program tells the computer to: a. Create numercal alues or constants we mght need b. Create 3D objects c. Ge them ntal postons and momenta 2. The whle loop: The second part o the program, the loop, contans the statements that the computer reads to tell t how to ncrement the poston o the objects oer and oer agan, makng them moe on screen. These statements tell the computer: a. How to calculate the net orce on the objects b. How to calculate the new momentum o each object, usng the net orce and the momentum prncple c. How to nd the new postons o the objects, usng the momenta We wll now ntroduce how to model moton wth a computer. The program you wll wrte wll model the moton o a an cart on a track. A small electrc an mounted on a cart pushes on the ar wth a constant orce, so the ar exerts a constant orce on the an blades. 1. Beore the loop Creatng the objects Open IDLE or Python, and type the usual begnnng statement: rom sual mport * Frst we ll create a box object to represent the track that s one meter long. On the next lne type the ollowng: track = box(pos=ector(0,-.075, 0), sze=(1.0, 0.05,.10)) The pos attrbute o a box object s the poston o the center o the box. The sze attrbute ges the box s length n the x, y and z drectons. To represent the an cart, we wll use a sphere object. (You could use a box you preer, but spheres are somewhat easer to deal wth.) We wll place the cart at the let sde o the track to start. On the next lne type the ollowng: cart = sphere(pos=ector(-0.5,0,0), radus=0.05, color=color.green) Run the program to see the track and cart. Intal condtons Any object that moes needs two ector quanttes declared beore the loop begns: 1. ntal poston; and 2. ntal momentum. We e already gen the cart an ntal poston o 0.5, 0, 0 m. Now we need to ge t an ntal momentum. I you push the cart wth your hand, the ntal momentum s the momentum o the cart just ater t leaes your hand. Snce the denton o momentum, at speeds much less than the speed o lght, s p m, we need to tell the computer the cart s mass and the cart s ntal elocty.

2 2 On a new lne type the ollowng: cart.m = 0.80 We hae made up a new attrbute named m or the object named cart. The symbol cart.m now stands or the alue 0.80 (a scalar), whch represents the mass o the cart n klograms. Now that we hae the mass, multplyng the mass by the ntal elocty wll ge the ntal momentum. Let s ge the cart an ntal elocty o 0.5, 0, 0 m/s. Then, the ntal momentum would be the mass tmes ths ntal elocty ector. On a new lne type the ollowng: cart.p = cart.m*ector(0.5, 0, 0) Ths now ges the cart an ntal momentum alue that s ( 0.80 kg) 0.5, 0, 0 m/s = 0.4, 0, 0 kg m/s. The symbol cart.p wll stand or the momentum o the cart (a ector) throughout the program. Note: We could hae called the momentum just p, or the mass just m, nstead o cart.p or cart.m. There are no bult n physcs attrbutes p or m or objects lke there are bult-n geometrcal attrbutes pos or radus. We can make any attrbutes we want. It s useul to create attrbutes lke mass or momentum or objects; ths way, we can easly tell apart the masses and momenta o derent objects. Tme step and tme To make the cart moe we wll use the equaton deltat to stand or the tme step t On a new lne type the ollowng: deltat = 0.01 r = r + repeatedly n a loop. We need to dene a arable. Here we wll use the alue t = 0.01 s. Also set a arable t, whch stands or cumulate tme, to start at zero seconds. Each tme through the program loop we wll wrte, we wll ncrement the alue o t by deltat (n ths case, 0.01 seconds). On a new lne type the ollowng: t = 0 In your notebook, wrte the answers to the ollowng questons. Your nstructor wll ask you about them. (1) Calculate how ar the cart wll moe n one tme step (one executon o the loop). (2) How many executons o the loop wll t take or the cart to moe one meter? (3) What wll the tme t be ater mong one meter? CHECKPOINT M1: Ask an nstructor to check your work or credt. You can read ahead whle you re watng to be checked o. Ths completes the rst part o the program, whch tells the computer to: a. Create numercal alues or constants we mght need b. Create 3D objects c. Ge them ntal postons and momenta

3 3 The whle loop Constant momentum moton Somebody or somethng gae the cart some ntal momentum. We re not concerned here wth how t got that ntal momentum. We ll predct how the cart wll moe n the uture, ater t acqured ts ntal momentum. We wll create a whle loop. Each tme the program runs through ths loop, t wll do two thngs: 1. Use the cart s current momentum to calculate the cart s new poston 2. Increment the cumulate tme t by deltat On a new lne type the ollowng: whle t<3.0: Make sure the statement ends wth :, then press Enter. Note that the cursor s now ndented on the next lne. I t s not, place the cursor just ater the : and press Enter. Ths tells the computer to keep executng the loop whle the cumulate tme s less than 3 seconds. In class, you learned that the new poston o an object ater a short tme nteral r = r + t s gen by where r s the nal poston o the object, and r s ts ntal poston. Ths assumes that the elocty doesn t change ery much durng the short tme nteral t. Snce at low speed p m, or p / m, we can wrte r = r + ( p / m) We wll use ths equaton to ncrement the poston o the cart n the program. Frst, we must translate t so VPython can understand t. On the ndented lne ater the whle statement, type the ollowng: cart.pos = cart.pos + (cart.p/cart.m)*deltat Notce how ths statement corresponds to the algebrac equaton: r = r + ( p / m) cart.pos = cart.pos + (cart.p/cart.m)*deltat Fnal poston Intal poston Velocty Tme step

4 4 In the program, the nal and ntal poston s wrtten the same way: cart.pos. Ths sn t really an equalty, but an assgnment statement; cart.pos s beng assgned a new alue equal to ts old alue plus (cart.p/cart.m)*deltat. Fnally we need to ncrement the cumulate tme t. On the ndented lne ater the whle statement, type the ollowng: t = t + deltat Now, run the program Slowng down the anmaton When you run the program, you should see the sphere at ts nal pont. The program s executed so rapdly that the entre moton occurs aster than we can see. We can slow down the anmaton rate by addng a rate statement. Place the cursor at the end o the statement that reads whle t<3.0:. Press Enter to nsert a new, ndented statement rght beore the cart.pos statement. On ths new lne, type the ollowng: rate(100) Eery tme the computer executes the loop, when t reads rate(100), t pauses long enough to ensure the loop wll take 1/100 th o a second. Thereore, the computer wll only execute the loop 100 tmes per second. Now, run the program. You should see the sphere trael to the rght at a constant elocty, stoppng beyond the edge o the track. Note: The cart gong beyond the edge o the track sn t a good smulaton o what really happens, but t s what we told the computer to do. There are no bult-n physcal behaors, lke gratatonal orce, n VPython. Rght now, all we e done s tell the program to make the cart moe n a straght lne. I we wanted the cart to all o the edge, we would hae to enter statements nto the program to tell the computer how to do ths. CHECKPOINT M2: Ask an nstructor to check your work or credt. You can read ahead whle you re watng to be checked o. 2. Force and momentum prncple Now we wll mody our program to nclude a orce on the cart. Ths means we wll hae to add statements to the program that tell the computer that there s a orce on the cart, and tell t how to use the momentum prncple to change the cart s momentum due to the orce. Suppose you push a cart, and ater leang your hand t has an ntal momentum to the rght, as beore. But now, the an on the cart s opposng ths ntal momentum, so that there s a net orce on the cart to the let. Ths orce s about 0.4 newtons. In your notebook, wrte the answer to the ollowng queston. (4) Wrte the orce ector that ponts to the let (the -x drecton) wth a magntude o 0.4 N. Let s use our program to model ths stuaton. Frst let s add a statement that creates a orce ector. In the loop, nsert a new statement rght ater the rate(100) statement. Type the ollowng:

5 5 Fnet = ector(-0.4, 0, 0) Note: Ths orce has a constant (ector) alue; t doesn t change each tme through the loop, unlke the cart s poston. We could hae, thereore, wrtten ths statement beore the loop. But n most o the programs we wrte, orce wll be changng wth tme, so orce calculatons should go nsde the loop. Next, we need to use the momentum prncple. The momentum prncple says the change n an object s momentum n a short tme perod s equal to the net orce on t, tmes the tme nteral (ths assumes that the orce doesn t change much durng the short tme nteral). In symbols, ths s: where p s the cart s momentum, and F net p = p p = F net s the net orce on the cart. We can rewrte ths as: p = p + Fnet We then use ths equaton n the program, whch tells the computer how to calculate a new momentum or the cart. Insert a new statement n the loop, rght ater the lne that reads Fnet = ector(-0.4, 0, 0). On ths new lne, type the ollowng: cart.p = cart.p + Fnet*deltat Note the smlarty between ths statement and the statement that updates the poston. Here s how the algebrac equaton corresponds to the VPython code: p = p + Fnet cart.p = cart.p + Fnet*deltat Fnal momentum Intal momentum Net orce Tme step Run the program. You should see the sphere moe to the rght a small dstance beore changng drecton and mong to the let. Change the ntal momentum o the cart so that t moes a greater dstance to the rght beore changng drecton: make the ntal speed o the cart 0.9 m/s, wth drecton to the rght. Run the program. You should now see the sphere moe much closer to the rght end o the track beore t starts mong to the let.

6 6 3. Moton n two dmensons Let s try gng the cart a component o ntal momentum n the y-drecton (that s, upward). Let s assume that we are n outer space, where gratatonal orces on the cart are neglgble. We want to explore a stuaton where the moton s two-dmensonal. Change the ntal elocty o the cart to 0.7, 0.1, 0 m/s and run the program. The sphere now makes a path n the shape o a parabola. Let s look more careully at the momentum o the cart durng ts moton by prntng out the momentum ector at each executon o the loop. Insert a new statement n the loop, just ater the lne that reads cart.p = cart.p+fnet*deltat. Type the ollowng on ths new lne: prnt t=, t, cart.p=, cart.p Run the program. The alues o tme t and momentum cart.p are now prnted n the text output wndow at eery executon o the loop. Reer to these alues when dong the ollowng exercses. In your notebook, wrte the answers to the ollowng questons. Your nstructor wll ask you about them. (5) Usng the prnted lst o momentum ectors, calculate p. That s, pck one o the ectors to be the nal momentum, and subtract rom t the ector just aboe t, whch s the ntal momentum: p = p p =?,?,? kg m/s (6) Calculate the ector Fnet. (In the program, ths would be Fnet*deltat.) F net =?,?,? N s (7) Do your calculatons show that the change n momentum p s equal to (8) Look at the prnted lst o momentum ectors agan. Why aren t the y or z components o the momentum changng? Add a tral to the cart, to see ts trajectory clearly. You saw n your ball n a box program that ths noles creatng a cure object beore the whle loop, then appendng the mong object s poston to ths cure object eery tme you go through the loop. I the name o your cure object s cart.tral, the statement to add a pont to the cure s cart.tral.append(pos=cart.pos). In your notebook, make approxmate graphs o p x s. t, p y s. t, and p z s. t. Be prepared to explan your graphs. F net? CHECKPOINT M3: Ask an nstructor to check your work or credt. You can read ahead whle you re watng to be checked o. Ater beng checked o, you can submt your nal program to be graded. 4. Playng around What would you need to do to nclude the eects o graty? The gratatonal orce near the Earth s 0, mg, 0, where g = +9.8 N/kg ( the magntude o the gratatonal eld ; see textbook p. 40). Turn on graty and turn o the an orce, use a small deltat o or accuracy, and use an statement to make the cart bounce on the track, as you dd to make a ball bounce o the walls o a box. Ge the cart an ntal elocty o 0.7, 3.0, 0 m/s. Eentually you ll see the cart bouncng o nothng! Can you thnk how to change your program to do somethng more realstc? Hnt: You can combne logcal tests by usng the keywords and and or. For example, the logcal expresson (y < 3 ) and (z > 2) s true only both o these condtons are true.

Name: PHYS 110 Dr. McGovern Spring 2018 Exam 1. Multiple Choice: Circle the answer that best evaluates the statement or completes the statement.

Name: PHYS 110 Dr. McGovern Spring 2018 Exam 1. Multiple Choice: Circle the answer that best evaluates the statement or completes the statement. Name: PHYS 110 Dr. McGoern Sprng 018 Exam 1 Multple Choce: Crcle the answer that best ealuates the statement or completes the statement. #1 - I the acceleraton o an object s negate, the object must be

More information

Linear Momentum. Equation 1

Linear Momentum. Equation 1 Lnear Momentum OBJECTIVE Obsere collsons between two carts, testng or the conseraton o momentum. Measure energy changes durng derent types o collsons. Classy collsons as elastc, nelastc, or completely

More information

Chapter 2. Pythagorean Theorem. Right Hand Rule. Position. Distance Formula

Chapter 2. Pythagorean Theorem. Right Hand Rule. Position. Distance Formula Chapter Moton n One Dmenson Cartesan Coordnate System The most common coordnate system or representng postons n space s one based on three perpendcular spatal axes generally desgnated x, y, and z. Any

More information

Momentum. Momentum. Impulse. Momentum and Collisions

Momentum. Momentum. Impulse. Momentum and Collisions Momentum Momentum and Collsons From Newton s laws: orce must be present to change an object s elocty (speed and/or drecton) Wsh to consder eects o collsons and correspondng change n elocty Gol ball ntally

More information

Physics 105: Mechanics Lecture 13

Physics 105: Mechanics Lecture 13 Physcs 05: Mechancs Lecture 3 Wenda Cao NJIT Physcs Department Momentum and Momentum Conseraton Momentum Impulse Conseraton o Momentum Collsons Lnear Momentum A new undamental quantty, lke orce, energy

More information

Page 1. Clicker Question 9: Physics 131: Lecture 15. Today s Agenda. Clicker Question 9: Energy. Energy is Conserved.

Page 1. Clicker Question 9: Physics 131: Lecture 15. Today s Agenda. Clicker Question 9: Energy. Energy is Conserved. Physcs 3: Lecture 5 Today s Agenda Intro to Conseraton o Energy Intro to some derent knds o energy Knetc Potental Denton o Mechancal Energy Conseraton o Mechancal Energy Conserate orces Examples Pendulum

More information

GAUTENG DEPARTMENT OF EDUCATION SENIOR SECONDARY INTERVENTION PROGRAMME PHYSICAL SCIENCES GRADE 12 SESSION 1 (LEARNER NOTES)

GAUTENG DEPARTMENT OF EDUCATION SENIOR SECONDARY INTERVENTION PROGRAMME PHYSICAL SCIENCES GRADE 12 SESSION 1 (LEARNER NOTES) PHYSICAL SCIENCES GRADE 1 SESSION 1 (LEARNER NOTES) TOPIC 1: MECHANICS PROJECTILE MOTION Learner Note: Always draw a dagram of the stuaton and enter all the numercal alues onto your dagram. Remember to

More information

Physics 101 Lecture 9 Linear Momentum and Collisions

Physics 101 Lecture 9 Linear Momentum and Collisions Physcs 0 Lecture 9 Lnear Momentum and Collsons Dr. Al ÖVGÜN EMU Physcs Department www.aogun.com Lnear Momentum and Collsons q q q q q q q Conseraton o Energy Momentum Impulse Conseraton o Momentum -D Collsons

More information

EMU Physics Department.

EMU Physics Department. Physcs 0 Lecture 9 Lnear Momentum and Collsons Assst. Pro. Dr. Al ÖVGÜN EMU Physcs Department www.aogun.com Lnear Momentum q Conseraton o Energy q Momentum q Impulse q Conseraton o Momentum q -D Collsons

More information

Lecture 16. Chapter 11. Energy Dissipation Linear Momentum. Physics I. Department of Physics and Applied Physics

Lecture 16. Chapter 11. Energy Dissipation Linear Momentum. Physics I. Department of Physics and Applied Physics Lecture 16 Chapter 11 Physcs I Energy Dsspaton Lnear Momentum Course webste: http://aculty.uml.edu/andry_danylov/teachng/physcsi Department o Physcs and Appled Physcs IN IN THIS CHAPTER, you wll learn

More information

Prof. Dr. I. Nasser T /16/2017

Prof. Dr. I. Nasser T /16/2017 Pro. Dr. I. Nasser T-171 10/16/017 Chapter Part 1 Moton n one dmenson Sectons -,, 3, 4, 5 - Moton n 1 dmenson We le n a 3-dmensonal world, so why bother analyzng 1-dmensonal stuatons? Bascally, because

More information

Physics 2A Chapter 3 HW Solutions

Physics 2A Chapter 3 HW Solutions Phscs A Chapter 3 HW Solutons Chapter 3 Conceptual Queston: 4, 6, 8, Problems: 5,, 8, 7, 3, 44, 46, 69, 70, 73 Q3.4. Reason: (a) C = A+ B onl A and B are n the same drecton. Sze does not matter. (b) C

More information

Chapter 9 Linear Momentum and Collisions

Chapter 9 Linear Momentum and Collisions Chapter 9 Lnear Momentum and Collsons m = 3. kg r = ( ˆ ˆ j ) P9., r r (a) p m ( ˆ ˆj ) 3. 4. m s = = 9.. kg m s Thus, p x = 9. kg m s and p y =. kg m s (b) p px p y p y θ = tan = tan (.33) = 37 px = +

More information

Work is the change in energy of a system (neglecting heat transfer). To examine what could

Work is the change in energy of a system (neglecting heat transfer). To examine what could Work Work s the change n energy o a system (neglectng heat transer). To eamne what could cause work, let s look at the dmensons o energy: L ML E M L F L so T T dmensonally energy s equal to a orce tmes

More information

ONE-DIMENSIONAL COLLISIONS

ONE-DIMENSIONAL COLLISIONS Purpose Theory ONE-DIMENSIONAL COLLISIONS a. To very the law o conservaton o lnear momentum n one-dmensonal collsons. b. To study conservaton o energy and lnear momentum n both elastc and nelastc onedmensonal

More information

Motion in One Dimension

Motion in One Dimension Moton n One Dmenson Speed ds tan ce traeled Aerage Speed tme of trael Mr. Wolf dres hs car on a long trp to a physcs store. Gen the dstance and tme data for hs trp, plot a graph of hs dstance ersus tme.

More information

Use these variables to select a formula. x = t Average speed = 100 m/s = distance / time t = x/v = ~2 m / 100 m/s = 0.02 s or 20 milliseconds

Use these variables to select a formula. x = t Average speed = 100 m/s = distance / time t = x/v = ~2 m / 100 m/s = 0.02 s or 20 milliseconds The speed o a nere mpulse n the human body s about 100 m/s. I you accdentally stub your toe n the dark, estmatethe tme t takes the nere mpulse to trael to your bran. Tps: pcture, poste drecton, and lst

More information

Problem While being compressed, A) What is the work done on it by gravity? B) What is the work done on it by the spring force?

Problem While being compressed, A) What is the work done on it by gravity? B) What is the work done on it by the spring force? Problem 07-50 A 0.25 kg block s dropped on a relaed sprng that has a sprng constant o k 250.0 N/m (2.5 N/cm). The block becomes attached to the sprng and compresses t 0.12 m beore momentarl stoppng. Whle

More information

Physics 207, Lecture 13, Oct. 15. Energy

Physics 207, Lecture 13, Oct. 15. Energy Physcs 07 Lecture 3 Physcs 07, Lecture 3, Oct. 5 Goals: Chapter 0 Understand the relatonshp between moton and energy Dene Potental Energy n a Hooke s Law sprng Deelop and explot conseraton o energy prncple

More information

total If no external forces act, the total linear momentum of the system is conserved. This occurs in collisions and explosions.

total If no external forces act, the total linear momentum of the system is conserved. This occurs in collisions and explosions. Lesson 0: Collsons, Rotatonal netc Energy, Torque, Center o Graty (Sectons 7.8 Last te we used ewton s second law to deelop the pulse-oentu theore. In words, the theore states that the change n lnear oentu

More information

Period & Frequency. Work and Energy. Methods of Energy Transfer: Energy. Work-KE Theorem 3/4/16. Ranking: Which has the greatest kinetic energy?

Period & Frequency. Work and Energy. Methods of Energy Transfer: Energy. Work-KE Theorem 3/4/16. Ranking: Which has the greatest kinetic energy? Perod & Frequency Perod (T): Tme to complete one ull rotaton Frequency (): Number o rotatons completed per second. = 1/T, T = 1/ v = πr/t Work and Energy Work: W = F!d (pcks out parallel components) F

More information

Gravitational Acceleration: A case of constant acceleration (approx. 2 hr.) (6/7/11)

Gravitational Acceleration: A case of constant acceleration (approx. 2 hr.) (6/7/11) Gravtatonal Acceleraton: A case of constant acceleraton (approx. hr.) (6/7/11) Introducton The gravtatonal force s one of the fundamental forces of nature. Under the nfluence of ths force all objects havng

More information

Physics for Scientists and Engineers. Chapter 9 Impulse and Momentum

Physics for Scientists and Engineers. Chapter 9 Impulse and Momentum Physcs or Scentsts and Engneers Chapter 9 Impulse and Momentum Sprng, 008 Ho Jung Pak Lnear Momentum Lnear momentum o an object o mass m movng wth a velocty v s dened to be p mv Momentum and lnear momentum

More information

General Tips on How to Do Well in Physics Exams. 1. Establish a good habit in keeping track of your steps. For example, when you use the equation

General Tips on How to Do Well in Physics Exams. 1. Establish a good habit in keeping track of your steps. For example, when you use the equation General Tps on How to Do Well n Physcs Exams 1. Establsh a good habt n keepng track o your steps. For example when you use the equaton 1 1 1 + = d d to solve or d o you should rst rewrte t as 1 1 1 = d

More information

Spring Force and Power

Spring Force and Power Lecture 13 Chapter 9 Sprng Force and Power Yeah, energy s better than orces. What s net? Course webste: http://aculty.uml.edu/andry_danylov/teachng/physcsi IN THIS CHAPTER, you wll learn how to solve problems

More information

How does the momentum before an elastic and an inelastic collision compare to the momentum after the collision?

How does the momentum before an elastic and an inelastic collision compare to the momentum after the collision? Experent 9 Conseraton o Lnear Moentu - Collsons In ths experent you wll be ntroduced to the denton o lnear oentu. You wll learn the derence between an elastc and an nelastc collson. You wll explore how

More information

Physics 2A Chapters 6 - Work & Energy Fall 2017

Physics 2A Chapters 6 - Work & Energy Fall 2017 Physcs A Chapters 6 - Work & Energy Fall 017 These notes are eght pages. A quck summary: The work-energy theorem s a combnaton o Chap and Chap 4 equatons. Work s dened as the product o the orce actng on

More information

8.6 The Complex Number System

8.6 The Complex Number System 8.6 The Complex Number System Earler n the chapter, we mentoned that we cannot have a negatve under a square root, snce the square of any postve or negatve number s always postve. In ths secton we want

More information

Physics 207: Lecture 20. Today s Agenda Homework for Monday

Physics 207: Lecture 20. Today s Agenda Homework for Monday Physcs 207: Lecture 20 Today s Agenda Homework for Monday Recap: Systems of Partcles Center of mass Velocty and acceleraton of the center of mass Dynamcs of the center of mass Lnear Momentum Example problems

More information

Slide. King Saud University College of Science Physics & Astronomy Dept. PHYS 103 (GENERAL PHYSICS) CHAPTER 5: MOTION IN 1-D (PART 2) LECTURE NO.

Slide. King Saud University College of Science Physics & Astronomy Dept. PHYS 103 (GENERAL PHYSICS) CHAPTER 5: MOTION IN 1-D (PART 2) LECTURE NO. Slde Kng Saud Unersty College of Scence Physcs & Astronomy Dept. PHYS 103 (GENERAL PHYSICS) CHAPTER 5: MOTION IN 1-D (PART ) LECTURE NO. 6 THIS PRESENTATION HAS BEEN PREPARED BY: DR. NASSR S. ALZAYED Lecture

More information

ENGN 40 Dynamics and Vibrations Homework # 7 Due: Friday, April 15

ENGN 40 Dynamics and Vibrations Homework # 7 Due: Friday, April 15 NGN 40 ynamcs and Vbratons Homework # 7 ue: Frday, Aprl 15 1. Consder a concal hostng drum used n the mnng ndustry to host a mass up/down. A cable of dameter d has the mass connected at one end and s wound/unwound

More information

Conservation Laws (Collisions) Phys101 Lab - 04

Conservation Laws (Collisions) Phys101 Lab - 04 Conservaton Laws (Collsons) Phys101 Lab - 04 1.Objectves The objectves o ths experment are to expermentally test the valdty o the laws o conservaton o momentum and knetc energy n elastc collsons. 2. Theory

More information

Momentum and Collisions. Rosendo Physics 12-B

Momentum and Collisions. Rosendo Physics 12-B Moentu and Collsons Rosendo Physcs -B Conseraton o Energy Moentu Ipulse Conseraton o Moentu -D Collsons -D Collsons The Center o Mass Lnear Moentu and Collsons February 7, 08 Conseraton o Energy D E =

More information

Physics 131: Lecture 16. Today s Agenda

Physics 131: Lecture 16. Today s Agenda Physcs 131: Lecture 16 Today s Agenda Intro to Conseraton o Energy Intro to some derent knds o energy Knetc Potental Denton t o Mechancal Energy Conseraton o Mechancal Energy Conserate orces Examples Pendulum

More information

PHYS 1443 Section 004 Lecture #12 Thursday, Oct. 2, 2014

PHYS 1443 Section 004 Lecture #12 Thursday, Oct. 2, 2014 PHYS 1443 Secton 004 Lecture #1 Thursday, Oct., 014 Work-Knetc Energy Theorem Work under rcton Potental Energy and the Conservatve Force Gravtatonal Potental Energy Elastc Potental Energy Conservaton o

More information

Moments of Inertia. and reminds us of the analogous equation for linear momentum p= mv, which is of the form. The kinetic energy of the body is.

Moments of Inertia. and reminds us of the analogous equation for linear momentum p= mv, which is of the form. The kinetic energy of the body is. Moments of Inerta Suppose a body s movng on a crcular path wth constant speed Let s consder two quanttes: the body s angular momentum L about the center of the crcle, and ts knetc energy T How are these

More information

p p +... = p j + p Conservation Laws in Physics q Physical states, process, and state quantities: Physics 201, Lecture 14 Today s Topics

p p +... = p j + p Conservation Laws in Physics q Physical states, process, and state quantities: Physics 201, Lecture 14 Today s Topics Physcs 0, Lecture 4 Conseraton Laws n Physcs q Physcal states, process, and state quanttes: Today s Topcs Partcle Syste n state Process Partcle Syste n state q Lnear Moentu And Collsons (Chapter 9.-9.4)

More information

Section 8.3 Polar Form of Complex Numbers

Section 8.3 Polar Form of Complex Numbers 80 Chapter 8 Secton 8 Polar Form of Complex Numbers From prevous classes, you may have encountered magnary numbers the square roots of negatve numbers and, more generally, complex numbers whch are 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

AP Physics 1 & 2 Summer Assignment

AP Physics 1 & 2 Summer Assignment AP Physcs 1 & 2 Summer Assgnment AP Physcs 1 requres an exceptonal profcency n algebra, trgonometry, and geometry. It was desgned by a select group of college professors and hgh school scence teachers

More information

Conservation of Angular Momentum = "Spin"

Conservation of Angular Momentum = Spin Page 1 of 6 Conservaton of Angular Momentum = "Spn" We can assgn a drecton to the angular velocty: drecton of = drecton of axs + rght hand rule (wth rght hand, curl fngers n drecton of rotaton, thumb ponts

More information

PHYS 1101 Practice problem set 12, Chapter 32: 21, 22, 24, 57, 61, 83 Chapter 33: 7, 12, 32, 38, 44, 49, 76

PHYS 1101 Practice problem set 12, Chapter 32: 21, 22, 24, 57, 61, 83 Chapter 33: 7, 12, 32, 38, 44, 49, 76 PHYS 1101 Practce problem set 1, Chapter 3: 1,, 4, 57, 61, 83 Chapter 33: 7, 1, 3, 38, 44, 49, 76 3.1. Vsualze: Please reer to Fgure Ex3.1. Solve: Because B s n the same drecton as the ntegraton path s

More information

Experiment 5 Elastic and Inelastic Collisions

Experiment 5 Elastic and Inelastic Collisions PHY191 Experment 5: Elastc and Inelastc Collsons 7/1/011 Page 1 Experment 5 Elastc and Inelastc Collsons Readng: Bauer&Westall: Chapter 7 (and 8, or center o mass deas) as needed Homework 5: turn n the

More information

Physics 2A Chapter 9 HW Solutions

Physics 2A Chapter 9 HW Solutions Phscs A Chapter 9 HW Solutons Chapter 9 Conceptual Queston:, 4, 8, 13 Problems: 3, 8, 1, 15, 3, 40, 51, 6 Q9.. Reason: We can nd the change n momentum o the objects b computng the mpulse on them and usng

More information

Physic 231 Lecture 14

Physic 231 Lecture 14 Physc 3 Lecture 4 Man ponts o last lecture: Ipulses: orces that last only a short te Moentu p Ipulse-Moentu theore F t p ( ) Ipulse-Moentu theore ptot, p, p, p, p, ptot, Moentu and external orces F p ext

More information

TIME OF COMPLETION NAME SOLUTION DEPARTMENT OF NATURAL SCIENCES. PHYS 2211, Exam 2 Section 1 Version 1 October 18, 2013 Total Weight: 100 points

TIME OF COMPLETION NAME SOLUTION DEPARTMENT OF NATURAL SCIENCES. PHYS 2211, Exam 2 Section 1 Version 1 October 18, 2013 Total Weight: 100 points TIME OF COMPLETION NAME SOLUTION DEPARTMENT OF NATURAL SCIENCES PHYS, Exam Secton Verson October 8, 03 Total Weght: 00 ponts. Check your examnaton or completeness pror to startng. There are a total o nne

More information

Linear Momentum. Center of Mass.

Linear Momentum. Center of Mass. Lecture 6 Chapter 9 Physcs I 03.3.04 Lnear omentum. Center of ass. Course webste: http://faculty.uml.edu/ndry_danylov/teachng/physcsi Lecture Capture: http://echo360.uml.edu/danylov03/physcssprng.html

More information

Chapter 7: Conservation of Energy

Chapter 7: Conservation of Energy Lecture 7: Conservaton o nergy Chapter 7: Conservaton o nergy Introucton I the quantty o a subject oes not change wth tme, t means that the quantty s conserve. The quantty o that subject remans constant

More information

A Tale of Friction Basic Rollercoaster Physics. Fahrenheit Rollercoaster, Hershey, PA max height = 121 ft max speed = 58 mph

A Tale of Friction Basic Rollercoaster Physics. Fahrenheit Rollercoaster, Hershey, PA max height = 121 ft max speed = 58 mph A Tale o Frcton Basc Rollercoaster Physcs Fahrenhet Rollercoaster, Hershey, PA max heght = 11 t max speed = 58 mph PLAY PLAY PLAY PLAY Rotatonal Movement Knematcs Smlar to how lnear velocty s dened, angular

More information

Single Variable Optimization

Single Variable Optimization 8/4/07 Course Instructor Dr. Raymond C. Rump Oce: A 337 Phone: (95) 747 6958 E Mal: rcrump@utep.edu Topc 8b Sngle Varable Optmzaton EE 4386/530 Computatonal Methods n EE Outlne Mathematcal Prelmnares Sngle

More information

PHYS 1441 Section 002 Lecture #15

PHYS 1441 Section 002 Lecture #15 PHYS 1441 Secton 00 Lecture #15 Monday, March 18, 013 Work wth rcton Potental Energy Gravtatonal Potental Energy Elastc Potental Energy Mechancal Energy Conservaton Announcements Mdterm comprehensve exam

More information

Chapter 3. r r. Position, Velocity, and Acceleration Revisited

Chapter 3. r r. Position, Velocity, and Acceleration Revisited Chapter 3 Poston, Velocty, and Acceleraton Revsted The poston vector of a partcle s a vector drawn from the orgn to the locaton of the partcle. In two dmensons: r = x ˆ+ yj ˆ (1) The dsplacement vector

More information

G = G 1 + G 2 + G 3 G 2 +G 3 G1 G2 G3. Network (a) Network (b) Network (c) Network (d)

G = G 1 + G 2 + G 3 G 2 +G 3 G1 G2 G3. Network (a) Network (b) Network (c) Network (d) Massachusetts Insttute of Technology Department of Electrcal Engneerng and Computer Scence 6.002 í Electronc Crcuts Homework 2 Soluton Handout F98023 Exercse 21: Determne the conductance of each network

More information

PHYS 1441 Section 002 Lecture #16

PHYS 1441 Section 002 Lecture #16 PHYS 1441 Secton 00 Lecture #16 Monday, Mar. 4, 008 Potental Energy Conservatve and Non-conservatve Forces Conservaton o Mechancal Energy Power Today s homework s homework #8, due 9pm, Monday, Mar. 31!!

More information

One Dimension Again. Chapter Fourteen

One Dimension Again. Chapter Fourteen hapter Fourteen One Dmenson Agan 4 Scalar Lne Integrals Now we agan consder the dea of the ntegral n one dmenson When we were ntroduced to the ntegral back n elementary school, we consdered only functons

More information

Energy and Energy Transfer

Energy and Energy Transfer Energy and Energy Transer Chapter 7 Scalar Product (Dot) Work Done by a Constant Force F s constant over the dsplacement r 1 Denton o the scalar (dot) product o vectors Scalar product o unt vectors = 1

More information

Kinematics in 2-Dimensions. Projectile Motion

Kinematics in 2-Dimensions. Projectile Motion Knematcs n -Dmensons Projectle Moton A medeval trebuchet b Kolderer, c1507 http://members.net.net.au/~rmne/ht/ht0.html#5 Readng Assgnment: Chapter 4, Sectons -6 Introducton: In medeval das, people had

More information

v c motion is neither created nor destroyed, but transferred via interactions. Fri. Wed (.18,.19) Introducing Potential Energy RE 6.

v c motion is neither created nor destroyed, but transferred via interactions. Fri. Wed (.18,.19) Introducing Potential Energy RE 6. r. 6.5-.7 (.) Rest Mass,ork by Changng orces Columba Rep 3pm, here RE 6.b (last day to drop) ed. 6.8-.9(.8,.9) Introducng Potental Energy RE 6.c Tues. H6: Ch 6 Pr s 58,59, 99(a-c), 05(a-c) moton s nether

More information

Chapter 3 and Chapter 4

Chapter 3 and Chapter 4 Chapter 3 and Chapter 4 Chapter 3 Energy 3. Introducton:Work Work W s energy transerred to or rom an object by means o a orce actng on the object. Energy transerred to the object s postve work, and energy

More information

EMU Physics Department

EMU Physics Department Physcs 0 Lecture 8 Potental Energy and Conservaton Assst. Pro. Dr. Al ÖVGÜN EMU Physcs Department www.aovgun.com Denton o Work W q The work, W, done by a constant orce on an object s dened as the product

More information

Chapter 07: Kinetic Energy and Work

Chapter 07: Kinetic Energy and Work Chapter 07: Knetc Energy and Work Conservaton o Energy s one o Nature s undamental laws that s not volated. Energy can take on derent orms n a gven system. Ths chapter we wll dscuss work and knetc energy.

More information

Page 1. Physics 131: Lecture 14. Today s Agenda. Things that stay the same. Impulse and Momentum Non-constant forces

Page 1. Physics 131: Lecture 14. Today s Agenda. Things that stay the same. Impulse and Momentum Non-constant forces Physcs 131: Lecture 14 Today s Agenda Imulse and Momentum Non-constant forces Imulse-momentum momentum thm Conservaton of Lnear momentum Eternal/Internal forces Eamles Physcs 201: Lecture 1, Pg 1 Physcs

More information

Week3, Chapter 4. Position and Displacement. Motion in Two Dimensions. Instantaneous Velocity. Average Velocity

Week3, Chapter 4. Position and Displacement. Motion in Two Dimensions. Instantaneous Velocity. Average Velocity Week3, Chapter 4 Moton n Two Dmensons Lecture Quz A partcle confned to moton along the x axs moves wth constant acceleraton from x =.0 m to x = 8.0 m durng a 1-s tme nterval. The velocty of the partcle

More information

PHYS 1443 Section 002

PHYS 1443 Section 002 PHYS 443 Secton 00 Lecture #6 Wednesday, Nov. 5, 008 Dr. Jae Yu Collsons Elastc and Inelastc Collsons Two Dmensonal Collsons Center o ass Fundamentals o Rotatonal otons Wednesday, Nov. 5, 008 PHYS PHYS

More information

AP Physics Enosburg Falls High School Mr. Bushey. Week 6: Work, Energy, Power

AP Physics Enosburg Falls High School Mr. Bushey. Week 6: Work, Energy, Power AP Physcs Enosburg Falls Hgh School Mr. Bushey ee 6: or, Energy, Power Homewor! Read Gancol Chapter 6.1 6.10 AND/OR Read Saxon Lessons 1, 16, 9, 48! Read Topc Summary Handout! Answer Gancol p.174 Problems

More information

EN40: Dynamics and Vibrations. Homework 7: Rigid Body Kinematics

EN40: Dynamics and Vibrations. Homework 7: Rigid Body Kinematics N40: ynamcs and Vbratons Homewor 7: Rgd Body Knematcs School of ngneerng Brown Unversty 1. In the fgure below, bar AB rotates counterclocwse at 4 rad/s. What are the angular veloctes of bars BC and C?.

More information

ˆ (0.10 m) E ( N m /C ) 36 ˆj ( j C m)

ˆ (0.10 m) E ( N m /C ) 36 ˆj ( j C m) 7.. = = 3 = 4 = 5. The electrc feld s constant everywhere between the plates. Ths s ndcated by the electrc feld vectors, whch are all the same length and n the same drecton. 7.5. Model: The dstances to

More information

36.1 Why is it important to be able to find roots to systems of equations? Up to this point, we have discussed how to find the solution to

36.1 Why is it important to be able to find roots to systems of equations? Up to this point, we have discussed how to find the solution to ChE Lecture Notes - D. Keer, 5/9/98 Lecture 6,7,8 - Rootndng n systems o equatons (A) Theory (B) Problems (C) MATLAB Applcatons Tet: Supplementary notes rom Instructor 6. Why s t mportant to be able to

More information

Week 9 Chapter 10 Section 1-5

Week 9 Chapter 10 Section 1-5 Week 9 Chapter 10 Secton 1-5 Rotaton Rgd Object A rgd object s one that s nondeformable The relatve locatons of all partcles makng up the object reman constant All real objects are deformable to some extent,

More information

PHYSICS 203-NYA-05 MECHANICS

PHYSICS 203-NYA-05 MECHANICS PHYSICS 03-NYA-05 MECHANICS PROF. S.D. MANOLI PHYSICS & CHEMISTRY CHAMPLAIN - ST. LAWRENCE 790 NÉRÉE-TREMBLAY QUÉBEC, QC GV 4K TELEPHONE: 48.656.69 EXT. 449 EMAIL: smanol@slc.qc.ca WEBPAGE: http:/web.slc.qc.ca/smanol/

More information

Physics 40 HW #4 Chapter 4 Key NEATNESS COUNTS! Solve but do not turn in the following problems from Chapter 4 Knight

Physics 40 HW #4 Chapter 4 Key NEATNESS COUNTS! Solve but do not turn in the following problems from Chapter 4 Knight Physcs 40 HW #4 Chapter 4 Key NEATNESS COUNTS! Solve but do not turn n the ollowng problems rom Chapter 4 Knght Conceptual Questons: 8, 0, ; 4.8. Anta s approachng ball and movng away rom where ball was

More information

Conservation of Energy

Conservation of Energy Lecture 3 Chapter 8 Physcs I 0.3.03 Conservaton o Energy Course webste: http://aculty.uml.edu/andry_danylov/teachng/physcsi Lecture Capture: http://echo360.uml.edu/danylov03/physcsall.html 95.4, Fall 03,

More information

LINEAR MOMENTUM. product of the mass m and the velocity v r of an object r r

LINEAR MOMENTUM. product of the mass m and the velocity v r of an object r r LINEAR MOMENTUM Imagne beng on a skateboad, at est that can move wthout cton on a smooth suace You catch a heavy, slow-movng ball that has been thown to you you begn to move Altenatvely you catch a lght,

More information

From Newton s 2 nd Law: v v. The time rate of change of the linear momentum of a particle is equal to the net force acting on the particle.

From Newton s 2 nd Law: v v. The time rate of change of the linear momentum of a particle is equal to the net force acting on the particle. From Newton s 2 nd Law: F ma d dm ( ) m dt dt F d dt The tme rate of change of the lnear momentum of a artcle s equal to the net force actng on the artcle. Conseraton of Momentum +x The toy rocket n dee

More information

Chapter 8: Potential Energy and The Conservation of Total Energy

Chapter 8: Potential Energy and The Conservation of Total Energy Chapter 8: Potental Energy and The Conservaton o Total Energy Work and knetc energy are energes o moton. K K K mv r v v F dr Potental energy s an energy that depends on locaton. -Dmenson F x d U( x) dx

More information

τ rf = Iα I point = mr 2 L35 F 11/14/14 a*er lecture 1

τ rf = Iα I point = mr 2 L35 F 11/14/14 a*er lecture 1 A mass s attached to a long, massless rod. The mass s close to one end of the rod. Is t easer to balance the rod on end wth the mass near the top or near the bottom? Hnt: Small α means sluggsh behavor

More information

G4023 Mid-Term Exam #1 Solutions

G4023 Mid-Term Exam #1 Solutions Exam1Solutons.nb 1 G03 Md-Term Exam #1 Solutons 1-Oct-0, 1:10 p.m to :5 p.m n 1 Pupn Ths exam s open-book, open-notes. You may also use prnt-outs of the homework solutons and a calculator. 1 (30 ponts,

More information

Homework Assignment 3 Due in class, Thursday October 15

Homework Assignment 3 Due in class, Thursday October 15 Homework Assgnment 3 Due n class, Thursday October 15 SDS 383C Statstcal Modelng I 1 Rdge regresson and Lasso 1. Get the Prostrate cancer data from http://statweb.stanford.edu/~tbs/elemstatlearn/ datasets/prostate.data.

More information

5/24/2007 Collisions ( F.Robilliard) 1

5/24/2007 Collisions ( F.Robilliard) 1 5/4/007 Collsons ( F.Robllard) 1 Interactons: In our earler studes o orce and work, we saw, that both these quanttes arse n the context o an nteracton between two bodes. We wll now look ore closely at

More information

PES 1120 Spring 2014, Spendier Lecture 6/Page 1

PES 1120 Spring 2014, Spendier Lecture 6/Page 1 PES 110 Sprng 014, Spender Lecture 6/Page 1 Lecture today: Chapter 1) Electrc feld due to charge dstrbutons -> charged rod -> charged rng We ntroduced the electrc feld, E. I defned t as an nvsble aura

More information

Circuit Variables. Unit: volt (V = J/C)

Circuit Variables. Unit: volt (V = J/C) Crcut Varables Scentfc nestgaton of statc electrcty was done n late 700 s and Coulomb s credted wth most of the dscoeres. He found that electrc charges hae two attrbutes: amount and polarty. There are

More information

CS 331 DESIGN AND ANALYSIS OF ALGORITHMS DYNAMIC PROGRAMMING. Dr. Daisy Tang

CS 331 DESIGN AND ANALYSIS OF ALGORITHMS DYNAMIC PROGRAMMING. Dr. Daisy Tang CS DESIGN ND NLYSIS OF LGORITHMS DYNMIC PROGRMMING Dr. Dasy Tang Dynamc Programmng Idea: Problems can be dvded nto stages Soluton s a sequence o decsons and the decson at the current stage s based on the

More information

Physics 207 Lecture 13. Lecture 13

Physics 207 Lecture 13. Lecture 13 Physcs 07 Lecture 3 Goals: Lecture 3 Chapter 0 Understand the relatonshp between moton and energy Defne Potental Energy n a Hooke s Law sprng Develop and explot conservaton of energy prncple n problem

More information

12. The Hamilton-Jacobi Equation Michael Fowler

12. The Hamilton-Jacobi Equation Michael Fowler 1. The Hamlton-Jacob Equaton Mchael Fowler Back to Confguraton Space We ve establshed that the acton, regarded as a functon of ts coordnate endponts and tme, satsfes ( ) ( ) S q, t / t+ H qpt,, = 0, and

More information

You will analyze the motion of the block at different moments using the law of conservation of energy.

You will analyze the motion of the block at different moments using the law of conservation of energy. Physcs 00A Homework 7 Chapter 8 Where s the Energy? In ths problem, we wll consder the ollowng stuaton as depcted n the dagram: A block o mass m sldes at a speed v along a horzontal smooth table. It next

More information

Unit 5: Quadratic Equations & Functions

Unit 5: Quadratic Equations & Functions Date Perod Unt 5: Quadratc Equatons & Functons DAY TOPIC 1 Modelng Data wth Quadratc Functons Factorng Quadratc Epressons 3 Solvng Quadratc Equatons 4 Comple Numbers Smplfcaton, Addton/Subtracton & Multplcaton

More information

Lectures - Week 4 Matrix norms, Conditioning, Vector Spaces, Linear Independence, Spanning sets and Basis, Null space and Range of a Matrix

Lectures - Week 4 Matrix norms, Conditioning, Vector Spaces, Linear Independence, Spanning sets and Basis, Null space and Range of a Matrix Lectures - Week 4 Matrx norms, Condtonng, Vector Spaces, Lnear Independence, Spannng sets and Bass, Null space and Range of a Matrx Matrx Norms Now we turn to assocatng a number to each matrx. We could

More information

Chapter 8. Potential Energy and Conservation of Energy

Chapter 8. Potential Energy and Conservation of Energy Chapter 8 Potental Energy and Conservaton of Energy In ths chapter we wll ntroduce the followng concepts: Potental Energy Conservatve and non-conservatve forces Mechancal Energy Conservaton of Mechancal

More information

Angular momentum. Instructor: Dr. Hoi Lam TAM ( 譚海嵐 )

Angular momentum. Instructor: Dr. Hoi Lam TAM ( 譚海嵐 ) Angular momentum Instructor: Dr. Ho Lam TAM ( 譚海嵐 ) Physcs Enhancement Programme or Gted Students The Hong Kong Academy or Gted Educaton and Department o Physcs, HKBU Department o Physcs Hong Kong Baptst

More information

MEASUREMENT OF MOMENT OF INERTIA

MEASUREMENT OF MOMENT OF INERTIA 1. measurement MESUREMENT OF MOMENT OF INERTI The am of ths measurement s to determne the moment of nerta of the rotor of an electrc motor. 1. General relatons Rotatng moton and moment of nerta Let us

More information

Chapter 8. Momentum Impulse and Collisions. Analysis of motion: 2 key ideas. Newton s laws of motion. Conservation of Energy

Chapter 8. Momentum Impulse and Collisions. Analysis of motion: 2 key ideas. Newton s laws of motion. Conservation of Energy Chapter 8 Moentu Ipulse and Collsons Analyss o oton: key deas Newton s laws o oton Conseraton o Energy Newton s Laws st Law: An object at rest or traelng n unor oton wll rean at rest or traelng n unor

More information

EPR Paradox and the Physical Meaning of an Experiment in Quantum Mechanics. Vesselin C. Noninski

EPR Paradox and the Physical Meaning of an Experiment in Quantum Mechanics. Vesselin C. Noninski EPR Paradox and the Physcal Meanng of an Experment n Quantum Mechancs Vesseln C Nonnsk vesselnnonnsk@verzonnet Abstract It s shown that there s one purely determnstc outcome when measurement s made on

More information

Finite Difference Method

Finite Difference Method 7/0/07 Instructor r. Ramond Rump (9) 747 698 rcrump@utep.edu EE 337 Computatonal Electromagnetcs (CEM) Lecture #0 Fnte erence Method Lecture 0 These notes ma contan coprghted materal obtaned under ar use

More information

Probability review. Adopted from notes of Andrew W. Moore and Eric Xing from CMU. Copyright Andrew W. Moore Slide 1

Probability review. Adopted from notes of Andrew W. Moore and Eric Xing from CMU. Copyright Andrew W. Moore Slide 1 robablty reew dopted from notes of ndrew W. Moore and Erc Xng from CMU Copyrght ndrew W. Moore Slde So far our classfers are determnstc! For a gen X, the classfers we learned so far ge a sngle predcted

More information

Physics 5153 Classical Mechanics. Principle of Virtual Work-1

Physics 5153 Classical Mechanics. Principle of Virtual Work-1 P. Guterrez 1 Introducton Physcs 5153 Classcal Mechancs Prncple of Vrtual Work The frst varatonal prncple we encounter n mechancs s the prncple of vrtual work. It establshes the equlbrum condton of a mechancal

More information

THE VIBRATIONS OF MOLECULES II THE CARBON DIOXIDE MOLECULE Student Instructions

THE VIBRATIONS OF MOLECULES II THE CARBON DIOXIDE MOLECULE Student Instructions THE VIBRATIONS OF MOLECULES II THE CARBON DIOXIDE MOLECULE Student Instructons by George Hardgrove Chemstry Department St. Olaf College Northfeld, MN 55057 hardgrov@lars.acc.stolaf.edu Copyrght George

More information

EN40: Dynamics and Vibrations. Homework 4: Work, Energy and Linear Momentum Due Friday March 1 st

EN40: Dynamics and Vibrations. Homework 4: Work, Energy and Linear Momentum Due Friday March 1 st EN40: Dynamcs and bratons Homework 4: Work, Energy and Lnear Momentum Due Frday March 1 st School of Engneerng Brown Unversty 1. The fgure (from ths publcaton) shows the energy per unt area requred to

More information

9/19/2013. PHY 113 C General Physics I 11 AM-12:15 PM MWF Olin 101

9/19/2013. PHY 113 C General Physics I 11 AM-12:15 PM MWF Olin 101 PHY 3 C General Physcs I AM-:5 PM MF Oln 0 Plan or Lecture 8: Chapter 8 -- Conservaton o energy. Potental and knetc energy or conservatve orces. Energy and non-conservatve orces 3. Power PHY 3 C Fall 03--

More information

FEEDBACK AMPLIFIERS. v i or v s v 0

FEEDBACK AMPLIFIERS. v i or v s v 0 FEEDBCK MPLIFIERS Feedback n mplers FEEDBCK IS THE PROCESS OF FEEDING FRCTION OF OUTPUT ENERGY (VOLTGE OR CURRENT) BCK TO THE INPUT CIRCUIT. THE CIRCUIT EMPLOYED FOR THIS PURPOSE IS CLLED FEEDBCK NETWORK.

More information

Module 14: THE INTEGRAL Exploring Calculus

Module 14: THE INTEGRAL Exploring Calculus Module 14: THE INTEGRAL Explorng Calculus Part I Approxmatons and the Defnte Integral It was known n the 1600s before the calculus was developed that the area of an rregularly shaped regon could be approxmated

More information