Old Dominion University Physics 811 Fall 2008

Size: px
Start display at page:

Download "Old Dominion University Physics 811 Fall 2008"

Transcription

1 Old Dominion University Physics 811 Fall 008 Projects Structure of Project Reports: 1 Introduction. Briefly summarize the nature of the physical system. Theory. Describe equations selected for the project. Discuss relevance and limitations of the equations. 3 Method. Describe the algorithm and how it is implemented in the program. 4 Verification of a program. Confirm that your program is not incorrect by considering special cases and by giving at least one comparison to a hand calculation or known result. 5 Results. Show the results in graphical or tabular form. Additional runs can be included in an appendix. Discuss results. 6 Analysis. Summarize your results and explain them in simple physical terms whenever possible. 7 Critique. Summarize the important concepts for which you gained a better understanding and discuss the numerical or computer techniques you learned. Make specific comments on the assignment and your suggestions for improvements or alternatives. 8 Appendix. Give a typical listing of your program. The program should include your name and date, and be self-explanatory (comments, structure) as possible. Project 1: Simple projectile motion (Warming up project) (Due on September 16, 008 by 13:30) Consider a simple case of two-dimensional projectile motion: no air resistance. Equations of the motion are x y f f = x + ( v i = y i 0 + ( v 0 cosθ ) t sinθ ) t gt / 1 Calculate and plot the trajectory of the projectile motion for a given initial conditions (angle, speed and position). You may accept that y f =0.0 Find numerically the angle corresponding to the maximum horizontal range of the projectile for initial y i = 0.0. Calculate for this angle the maximum range, and time of flight. Present results in tabular and graphical forms. 3 Find how the angle corresponding to the maximum horizontal range of the projectile depends on the initial height. Select the initial speed of the projectile as of 100.0m/s, and the free fall acceleration as of 9.81m/s. 1

2 Old Dominion University Physics 811 Fall 008 Project. Data fitting (Due on October 7, 008 by 13:30) Cross sections of ionization by electron and ion impacts have been a subject of extensive studies as well as applications. Atomic data are collected in various international and national atomic data bases. A list of most popular atomic data bases can be found on this web page However, raw data are not practical for use in computer simulations. Therefore for practical applications it is common to fit available data to known formulae or to use some semi-empirical equations. More information on the subject can be found in multiple papers and reviews. The goal of this project is to fit experimental cross sections of electron impact ionization of the Neon ion (Ne + ) to a couple known formulae. Here are the equations: 1 σ ( E) ln IE A E = + I N k = 1 B k 1 I E k (1) where E is the energy of the incident electron, I is the ionization potential, A and B k are the fitting coefficients, E σ( E) = A ln B tan IE + I 1 1 E I β I () where the fitting parameters are A, B and β. Details and explanations for the equations above can be found in papers [1-]. Fitting experimental data from a table below consider various values of k (k = 1,, 3). You may be interested to apply your knowledge of error analysis to the problem. 1 K. L. Bell, H. B. Gilbody, J. G. Hughes, et al J. Phys. Chem. 1, 891 (1983). A. L. Godunov and P. B. Ivanov Physica Scripta. Vol. 59, (1999)

3 Old Dominion University Physics 811 Fall 008 Table.1 Some of published results for the single ionization cross sections of Ne + by electrons, where the impact energy is in ev and cross sections are in cm. Dolder et al. (1963) Donets & Ovsyannikov (1981) Dieserens et al. (1984) E σ E σ E σ

4 Old Dominion University Physics 811 Fall 008 Project 3. Projectile motion with air resistance (Due on October 8, 008 by 13:30) Write a program that simulates the projectile motion with allowing for air resistance, varying air density and wind. The air resistance force on an object moving with speed v can be approximated by F drag =-0.5Cρ 0 Av, where ρ 0 stands for air density (ρ 0 =1.5 kg/m 3 at sea level), and A is the cross section. The drag coefficient C depends on an object shape and for many objects it can be approximated by a value within Use Runge-Kutta method as a primary method for solving a system of differential equations. Extra credit: compare accuracy of Verlet method to Runge-Kutta. Part 1. Study the trajectory of shells of one of the largest cannons "Pariskanone" used during the First World War. Calculate effects of air resistance, varying air density and wind on the range, time of flight and max altitude of shells. Determine the angle (between 0 and 90 degrees) that gives the maximum range for such cannon. Discuss the accuracy of the "Pariskanone". Some initial information: The shell mass - 94 kg., initial speed m/s, caliber - 10 mm, and the C coefficient is about 0.1. Approximate the density of the atmosphere as ρ = ρ 0 *exp(-y/y 0 ), where y is the current altitude, y 0 = 1.0*10 4 m, and ρ 0 is air density at sea level (y=0). Part. In standard university physics textbooks it is assumed that the air, through which projectiles move, has no effects on projectile motion. Let's consider whether we need to revise some well known to us statements if air resistance is taken into account. Statement 1: "Time to move up is equal to time to move down". Suppose an object is thrown vertically upward with an initial velocity. How does the time of ascent compare to the time of descent if air resistance is taken into account? Statement : "Two bullets, one fired horizontally and one dropped vertically from rest at the same instant, reach the ground at the same time". Compare the motion of two identical objects that both start from the same height h. One object is dropped vertically from rest and the other is thrown with a horizontal velocity v. Which object reaches the ground first if air resistance is included? Before doing your computer simulations give reasons for your anticipated answers in each case. Compare later your anticipated answers with results of your computer simulations. For the simulation select any object that you like (but no cats, dogs, etc.). The drag coefficient C for a specific object can be found either in the lecture notes, or in publications, or on the Web. The initial velocity v should be fast enough to observe effects of air resistance, but realistic. 4

5 Old Dominion University Physics 811 Fall 008 Project 4. Random walks (Due on November 6, 008 by 13:30) Part 1. Study quality of a built-in random number generator (in C++ or Fortran): evaluate 3-rd moment of the random number distribution, evaluate near-neighbor correlation, plot a D distribution for two random sequences x i and y i (a parking lot test), plot a D distribution for correlation (x i, x i +4). How the 3-rd moment and near-neighbor correlation do depends on the number of random numbers in your study? You may start from 4 random numbers and increase by on each step. Part. Write a program that simulates a random D walk with the same step size. Four directions are possible (N, E, S, W). Your program will involve two integers, K = the number of random walks to be taken and N = the maximum number of steps in a single walk. Run your program with at least K >= Find the average distance R to be from the origin point after N steps. Assume that R has the asymptotic N dependence R~N a and estimate the exponent a. Part 3. Randomly place the "random walker" on a two-dimension lattice of L sites in a row (like a city with L+1 blocks in a row). Consider the "random walker in a city" as a persistent random walk (on each step the walker cannot step back, only forward, left or right). Find the average distance D (or the average number of steps) in order to be out of the city limit. Is there a connection between D and L? Part 4. Suppose a police foot patrol wants to arrest the random walker not knowing his position ahead of time. What tactics would increase their chances to capture the random walker a) staying at one place waiting for the walker to come, b) random walk from a random point, c) following the same closed path (a square one) inside the city d) following a closed path along the city limits? The speed of the foot patrol is equal to the speed of the walker. Extra credit: Can the random walker affect his chances to be arrested by visiting a bar from time to time and staying there for k turns? The patrol checks bars on each intersection. Would it be different if the patrol does not check bars? 5

6 Old Dominion University Physics 811 Fall 008 Project 5. Classical collisions (Due on November 0, 008 by 13:30) In classical scattering theory the differential scattering cross section is related to the impact parameter and the scattering angle as dσ b = dω sin( θ ) db dθ Part 1: Rutherford scattering. Consider the elastic scattering of a projectile with mass M 1 and electric charge Z 1 with a target of mass M and charge Z. The target is fixed in space. The projectile-target interaction is describe by the Coulomb potential that can be written in atomic units as Z1Z ( R) = R V The analytic solution for the differential cross section is the Rutherford scattering formula. dσ Z1Z = dω 4E sin ( θ / ) Solve the problem of the Rutherford scattering numerically as an ODE initial value problem in the (x,y) plane. You initial conditions are the projectile velocity and the impact parameter. Calculate the differential cross section and compare your numerical result to the Rutherford scattering formula. Part : Rutherford scattering (modified). The target is initially at rest, but may move during the collision due to the projectile-target interaction. Study the effect of the target motion on the differential scattering cross section. Now you have two moving objects. You should test your solutions by calculating the total energy and angular momentum of the system. At any moment of the collision the total energy and the total momentum must be conserved. Sure that the effect would depend on the ratio M 1 /M. Part 3: Yukawa potential (screened Coulomb potential). The long range Coulomb potential has been a serious problem in quantum scattering theory. Study numerically the elastic scattering of two particles interacting by the Yukawa potential Z1Z ( R) = exp( αr) R U Test you results using conservation of the total energy and the total momentum for the two particles. Compare you numerical results with the analytic solution θ = π r min ( b / r 1 ( b / r) ) U( r) / E dr But first check conditions when the equation above is valid. Compare your results for the two potentials (Coulomb and Yukawa). Part 4: Optional. Calculate the total cross section of the elastic scattering for the parts 1-3. Comments: 1) It is much more convenient to work in the atomic system of unit. ) You need to use following numerical procedures: numerical solution of the ODE initial value problem, numerical derivatives, and numerical integration 3) Be reasonable selecting initial conditions, as well as M 1, Z 1, M, Z, and α. 6

Chapter 3 Kinematics in Two Dimensions; Vectors

Chapter 3 Kinematics in Two Dimensions; Vectors Chapter 3 Kinematics in Two Dimensions; Vectors Vectors and Scalars Addition of Vectors Graphical Methods (One and Two- Dimension) Multiplication of a Vector by a Scalar Subtraction of Vectors Graphical

More information

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

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

More information

8/31/2018. PHY 711 Classical Mechanics and Mathematical Methods 10-10:50 AM MWF Olin 103

8/31/2018. PHY 711 Classical Mechanics and Mathematical Methods 10-10:50 AM MWF Olin 103 PHY 7 Classical Mechanics and Mathematical Methods 0-0:50 AM MWF Olin 03 Plan for Lecture :. Brief comment on quiz. Particle interactions 3. Notion of center of mass reference fame 4. Introduction to scattering

More information

Circular motion. Announcements:

Circular motion. Announcements: Circular motion Announcements: Clicker scores through Wednesday are now posted on DL. Scoring is points for a wrong answer, 3 points for a right answer. 13 clicker questions so far, so max is 39 points.

More information

Projectile Motion Exercises

Projectile Motion Exercises Projectile Motion 11.7 Exercises 1 A ball is thrown horizontally from a cliff with a speed of 10ms-I, at the same time as an identical ball is dropped from the cliff. Neglecting the effect of air resistance

More information

Chapter 2. Kinematics in One Dimension. continued

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

More information

3.4 Projectile Motion

3.4 Projectile Motion 3.4 Projectile Motion Projectile Motion A projectile is anything launched, shot or thrown---i.e. not self-propelled. Examples: a golf ball as it flies through the air, a kicked soccer ball, a thrown football,

More information

Introduction to Elementary Particle Physics I

Introduction to Elementary Particle Physics I Physics 56400 Introduction to Elementary Particle Physics I Lecture 2 Fall 2018 Semester Prof. Matthew Jones Cross Sections Reaction rate: R = L σ The cross section is proportional to the probability of

More information

Physics Kinematics: Projectile Motion. Science and Mathematics Education Research Group

Physics Kinematics: Projectile Motion. Science and Mathematics Education Research Group F FA ACULTY C U L T Y OF O F EDUCATION E D U C A T I O N Department of Curriculum and Pedagogy Physics Kinematics: Projectile Motion Science and Mathematics Education Research Group Supported by UBC Teaching

More information

Concepts in Physics. Friday, October 16th

Concepts in Physics. Friday, October 16th 1206 - Concepts in Physics Friday, October 16th Notes Assignment #4 due Wednesday, October 21 st in class (no later than noon) There are still assignments #1 and #2 in my office to be picked up... If you

More information

Obliqe Projection. A body is projected from a point with different angles of projections 0 0, 35 0, 45 0, 60 0 with the horizontal bt with same initial speed. Their respective horizontal ranges are R,

More information

Arial Bombing Techniques

Arial Bombing Techniques Arial Bombing Techniques By Crystal Pepper and Chris Wilson March 30, 2009 Abstract In this article we will explore the bombing techniques used by the United States Army during World War II in order to

More information

Scattering in Cold- Cathode Discharges

Scattering in Cold- Cathode Discharges Simulating Electron Scattering in Cold- Cathode Discharges Alexander Khrabrov, Igor Kaganovich*, Vladimir I. Demidov**, George Petrov*** *Princeton Plasma Physics Laboratory ** Wright-Patterson Air Force

More information

Quantum Physics III (8.06) Spring 2008 Assignment 10

Quantum Physics III (8.06) Spring 2008 Assignment 10 May 5, 2008 Quantum Physics III (8.06) Spring 2008 Assignment 10 You do not need to hand this pset in. The solutions will be provided after Friday May 9th. Your FINAL EXAM is MONDAY MAY 19, 1:30PM-4:30PM,

More information

2D Kinematics. Note not covering scalar product or vector product right now we will need it for material in Chap 7 and it will be covered then.

2D Kinematics. Note not covering scalar product or vector product right now we will need it for material in Chap 7 and it will be covered then. Announcements: 2D Kinematics CAPA due at 10pm tonight There will be the third CAPA assignment ready this evening. Chapter 3 on Vectors Note not covering scalar product or vector product right now we will

More information

PHY 1114: Physics I. Quick Question 1. Quick Question 2. Quick Question 3. Quick Question 4. Lecture 5: Motion in 2D

PHY 1114: Physics I. Quick Question 1. Quick Question 2. Quick Question 3. Quick Question 4. Lecture 5: Motion in 2D PHY 1114: Physics I Lecture 5: Motion in D Fall 01 Kenny L. Tapp Quick Question 1 A child throws a ball vertically upward at the school playground. Which one of the following quantities is (are) equal

More information

Projectile Motion. Chin- Sung Lin STEM GARAGE SCIENCE PHYSICS

Projectile Motion. Chin- Sung Lin STEM GARAGE SCIENCE PHYSICS Projectile Motion Chin- Sung Lin Introduction to Projectile Motion q What is Projectile Motion? q Trajectory of a Projectile q Calculation of Projectile Motion Introduction to Projectile Motion q What

More information

Physics 111. Lecture 8 (Walker: 4.3-5) 2D Motion Examples. Projectile - General Launch Angle. In general, v 0x = v 0 cos θ and v 0y = v 0 sin θ

Physics 111. Lecture 8 (Walker: 4.3-5) 2D Motion Examples. Projectile - General Launch Angle. In general, v 0x = v 0 cos θ and v 0y = v 0 sin θ Physics 111 Lecture 8 (Walker: 4.3-5) D Motion Examples February 13, 009 Lecture 8 1/ Projectile - General Launch Angle In general, v 0x = v 0 cos θ and v 0y = v 0 sin θ (This ASSUMES θ is measured CCW

More information

Kinematics 2D ~ Lab. Part 1: Type 1 Projectile Launch. BCLN PHYSICS - Rev. Sept/2011

Kinematics 2D ~ Lab. Part 1: Type 1 Projectile Launch. BCLN PHYSICS - Rev. Sept/2011 Kinematics 2D ~ Lab Name: Instructions: Using a pencil, answer the following questions. The lab is marked based on clarity of responses, completeness, neatness, and accuracy. Do your best! Part 1: Type

More information

Phys 201, Lecture 5 Feb.2. Chapter 3: Mo;on in Two and Three Dimensions

Phys 201, Lecture 5 Feb.2. Chapter 3: Mo;on in Two and Three Dimensions Phys 201, Lecture 5 Feb.2 Chapter 3: Mo;on in Two and Three Dimensions Displacement, Velocity and Acceleration Displacement describes the location change of a particle Velocity is rate of change of displacement

More information

Physics 231. Topic 3: Vectors and two dimensional motion. Alex Brown September MSU Physics 231 Fall

Physics 231. Topic 3: Vectors and two dimensional motion. Alex Brown September MSU Physics 231 Fall Physics 231 Topic 3: Vectors and two dimensional motion Alex Brown September 14-18 2015 MSU Physics 231 Fall 2014 1 What s up? (Monday Sept 14) 1) Homework set 01 due Tuesday Sept 15 th 10 pm 2) Learning

More information

Vectors at right angles #1) A car travels 100 m south, then 30 m east, and finally 80m north. Find the resultant displacement.

Vectors at right angles #1) A car travels 100 m south, then 30 m east, and finally 80m north. Find the resultant displacement. AP Physics Mechanics Chapter 3 Vectors and Motion in 2 dimensions Text chapter 3 - Reading pp. 51-68 textbook HW -- #2,3,5,6,8,9,12,18,20,17,19,22,42,44,45,48 3.1-3.2 Vectors and Scalars Revisited List

More information

Passage of particles through matter

Passage of particles through matter Passage of particles through matter Alexander Khanov PHYS6260: Experimental Methods is HEP Oklahoma State University September 11, 2017 Delta rays During ionization, the energy is transferred to electrons

More information

MOTION IN A PLANE. Chapter Four MCQ I. (a) 45 (b) 90 (c) 45 (d) 180

MOTION IN A PLANE. Chapter Four MCQ I. (a) 45 (b) 90 (c) 45 (d) 180 Chapter Four MOTION IN A PLANE MCQ I 4.1 The angle between A = ˆi + ˆj and B = ˆi ˆj is (a) 45 (b) 90 (c) 45 (d) 180 4.2 Which one of the following statements is true? (a) A scalar quantity is the one

More information

Bell Ringer: What is constant acceleration? What is projectile motion?

Bell Ringer: What is constant acceleration? What is projectile motion? Bell Ringer: What is constant acceleration? What is projectile motion? Can we analyze the motion of an object on the y-axis independently of the object s motion on the x-axis? NOTES 3.2: 2D Motion: Projectile

More information

Mathematics Extension 1

Mathematics Extension 1 009 HIGHER SCHOOL CERTIFICATE EXAMINATION Mathematics Extension General Instructions Reading time 5 minutes Working time hours Write using black or blue pen Board-approved calculators may be used A table

More information

Modeling the Motion of a Projectile in Air

Modeling the Motion of a Projectile in Air In this lab, you will do the following: Modeling the Motion of a Projectile in Air analyze the motion of an object fired from a cannon using two different fundamental physics principles: the momentum principle

More information

Physic 492 Lecture 16

Physic 492 Lecture 16 Physic 492 Lecture 16 Main points of last lecture: Angular momentum dependence. Structure dependence. Nuclear reactions Q-values Kinematics for two body reactions. Main points of today s lecture: Measured

More information

PHY 5246: Theoretical Dynamics, Fall Assignment # 7, Solutions. Θ = π 2ψ, (1)

PHY 5246: Theoretical Dynamics, Fall Assignment # 7, Solutions. Θ = π 2ψ, (1) PHY 546: Theoretical Dynamics, Fall 05 Assignment # 7, Solutions Graded Problems Problem ψ ψ ψ Θ b (.a) The scattering angle satisfies the relation Θ π ψ, () where ψ is the angle between the direction

More information

Elastic Scattering. R = m 1r 1 + m 2 r 2 m 1 + m 2. is the center of mass which is known to move with a constant velocity (see previous lectures):

Elastic Scattering. R = m 1r 1 + m 2 r 2 m 1 + m 2. is the center of mass which is known to move with a constant velocity (see previous lectures): Elastic Scattering In this section we will consider a problem of scattering of two particles obeying Newtonian mechanics. The problem of scattering can be viewed as a truncated version of dynamic problem

More information

Chapter Units and Measurement

Chapter Units and Measurement 2 Chapter Units and Measurement 1. Identify the pair whose dimensions are equal [2002] torque and work stress and energy force and stress force and work 2. [2003] [L -1 T] ] [L -2 T 2 ] [L 2 T -2 ] [LT

More information

CHAPTER 3 MOTION IN TWO AND THREE DIMENSIONS

CHAPTER 3 MOTION IN TWO AND THREE DIMENSIONS CHAPTER 3 MOTION IN TWO AND THREE DIMENSIONS General properties of vectors displacement vector position and velocity vectors acceleration vector equations of motion in 2- and 3-dimensions Projectile motion

More information

HIGHER SCHOOL CERTIFICATE EXAMINATION MATHEMATICS 3 UNIT (ADDITIONAL) AND 3/4 UNIT (COMMON) Time allowed Two hours (Plus 5 minutes reading time)

HIGHER SCHOOL CERTIFICATE EXAMINATION MATHEMATICS 3 UNIT (ADDITIONAL) AND 3/4 UNIT (COMMON) Time allowed Two hours (Plus 5 minutes reading time) HIGHER SCHOOL CERTIFICATE EXAMINATION 000 MATHEMATICS UNIT (ADDITIONAL) AND /4 UNIT (COMMON) Time allowed Two hours (Plus 5 minutes reading time) DIRECTIONS TO CANDIDATES Attempt ALL questions. ALL questions

More information

Chapter 4 Kinematics II: Motion in Two and Three Dimensions

Chapter 4 Kinematics II: Motion in Two and Three Dimensions Chapter 4 Kinematics II: Motion in Two and Three Dimensions Demonstrations: 1) Ball falls down and another falls out 2) Parabolic and straight line motion from two different frames. The truck with a dropping

More information

Quiz Samples for Chapter 9 Center of Mass and Linear Momentum

Quiz Samples for Chapter 9 Center of Mass and Linear Momentum Name: Department: Student ID #: Notice +2 ( 1) points per correct (incorrect) answer No penalty for an unanswered question Fill the blank ( ) with ( ) if the statement is correct (incorrect) : corrections

More information

General Physics (PHY 2130)

General Physics (PHY 2130) General Physics (PHY 130) Lecture 0 Rotational dynamics equilibrium nd Newton s Law for rotational motion rolling Exam II review http://www.physics.wayne.edu/~apetrov/phy130/ Lightning Review Last lecture:

More information

2.003SC Engineering Dynamics

2.003SC Engineering Dynamics 2.003SC Engineering Dynamics Problem Set 1 1. This is a review problem on the topic of projectile motion. A football player kicks a ball, giving it an initial speed of 80 ft/s with an initial angle relative

More information

Two Dimensional Kinematics. Pre-Test

Two Dimensional Kinematics. Pre-Test 1 Two Dimensional Kinematics Pre-Test 1. The following situation is given below. Suggest two reasonable (both magnitude and direction) component velocity vectors for the resultant velocity vector given

More information

UNIVERSITY OF MANITOBA

UNIVERSITY OF MANITOBA PAGE NO.: 1 of 6 + Formula Sheet Equal marks for all questions. No marks are subtracted for wrong answers. Record all answers on the computer score sheet provided. USE PENCIL ONLY! Black pen will look

More information

Honors Physics Acceleration and Projectile Review Guide

Honors Physics Acceleration and Projectile Review Guide Honors Physics Acceleration and Projectile Review Guide Major Concepts 1 D Motion on the horizontal 1 D motion on the vertical Relationship between velocity and acceleration Difference between constant

More information

Elastic Collisions. Chapter Center of Mass Frame

Elastic Collisions. Chapter Center of Mass Frame Chapter 11 Elastic Collisions 11.1 Center of Mass Frame A collision or scattering event is said to be elastic if it results in no change in the internal state of any of the particles involved. Thus, no

More information

AH Mechanics Checklist (Unit 1) AH Mechanics Checklist (Unit 1) Rectilinear Motion

AH Mechanics Checklist (Unit 1) AH Mechanics Checklist (Unit 1) Rectilinear Motion Rectilinear Motion No. kill Done 1 Know that rectilinear motion means motion in 1D (i.e. along a straight line) Know that a body is a physical object 3 Know that a particle is an idealised body that has

More information

KINEMATICS. Challenging MCQ questions by The Physics Cafe. Compiled and selected by The Physics Cafe

KINEMATICS. Challenging MCQ questions by The Physics Cafe. Compiled and selected by The Physics Cafe KINEMATICS Challenging MCQ questions by The Physics Cafe Compiled and selected by The Physics Cafe 1 Two diamonds begin free fall from rest from the same height 1.0 s apart. How long after the first diamond

More information

Modelling of a Tennis Ball Server

Modelling of a Tennis Ball Server Mechanical Analysis and Design ME 2104 Lecture 6 Modelling of a Tennis Ball Server Prof Ahmed Kovacevic Department of Mechanical Engineering and Aeronautics Room CG25, Phone: 8780, E-Mail: a.kovacevic@city.ac.uk

More information

Lecture: Scattering theory

Lecture: Scattering theory Lecture: Scattering theory 30.05.2012 SS2012: Introduction to Nuclear and Particle Physics, Part 2 2 1 Part I: Scattering theory: Classical trajectoriest and cross-sections Quantum Scattering 2 I. Scattering

More information

Quantum Physics III (8.06) Spring 2005 Assignment 9

Quantum Physics III (8.06) Spring 2005 Assignment 9 Quantum Physics III (8.06) Spring 2005 Assignment 9 April 21, 2005 Due FRIDAY April 29, 2005 Readings Your reading assignment on scattering, which is the subject of this Problem Set and much of Problem

More information

particle p = m v F ext = d P = M d v cm dt

particle p = m v F ext = d P = M d v cm dt Lecture 11: Momentum and Collisions; Introduction to Rotation 1 REVIEW: (Chapter 8) LINEAR MOMENTUM and COLLISIONS The first new physical quantity introduced in Chapter 8 is Linear Momentum Linear Momentum

More information

I. Elastic collisions of 2 particles II. Relate ψ and θ III. Relate ψ and ζ IV. Kinematics of elastic collisions

I. Elastic collisions of 2 particles II. Relate ψ and θ III. Relate ψ and ζ IV. Kinematics of elastic collisions I. Elastic collisions of particles II. Relate ψ and θ III. Relate ψ and ζ IV. Kinematics of elastic collisions 49 I. Elastic collisions of particles "Elastic": KE is conserved (as well as E tot and momentum

More information

In your answer, you should use appropriate technical terms, spelled correctly [1]

In your answer, you should use appropriate technical terms, spelled correctly [1] 1 (a) Define moment of a force. In your answer, you should use appropriate technical terms, spelled correctly.... [1] (b) State the two conditions that apply when an object is in equilibrium. 1.... 2....

More information

PHYS 124 LEC A01 Final Examination Autumn 2007

PHYS 124 LEC A01 Final Examination Autumn 2007 PHYS 4 LEC A0 Final Examination Autumn 007 Name: ID Number: S Instructor: Marc de Montigny Time: Tuesday, December 8, 007 9:00 AM :00 PM Room: Main Gym Van Vliet Building Rows 7, 9,, 3, 5 Instructions:

More information

Physics 1A. Lecture 3B. "More than anything else... any guy here would love to have a monkey. A pet monkey." -- Dane Cook

Physics 1A. Lecture 3B. More than anything else... any guy here would love to have a monkey. A pet monkey. -- Dane Cook Physics 1A Lecture 3B "More than anything else... any guy here would love to have a monkey. A pet monkey." -- Dane Cook Trajectories Since there is no horizontal acceleration (a x = 0) the horizontal position,

More information

Planar Motion with Constant Acceleration

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

More information

Given a stream function for a cylinder in a uniform flow with circulation: a) Sketch the flow pattern in terms of streamlines.

Given a stream function for a cylinder in a uniform flow with circulation: a) Sketch the flow pattern in terms of streamlines. Question Given a stream function for a cylinder in a uniform flow with circulation: R Γ r ψ = U r sinθ + ln r π R a) Sketch the flow pattern in terms of streamlines. b) Derive an expression for the angular

More information

PHYS 1303 Final Exam Example Questions

PHYS 1303 Final Exam Example Questions PHYS 1303 Final Exam Example Questions (In summer 2014 we have not covered questions 30-35,40,41) 1.Which quantity can be converted from the English system to the metric system by the conversion factor

More information

Topic 2 Revision questions Paper

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

More information

Vocabulary Preview. Oct 21 9:53 AM. Projectile Motion. An object shot through the air is called a projectile.

Vocabulary Preview. Oct 21 9:53 AM. Projectile Motion. An object shot through the air is called a projectile. Projectile Trajectory Range Launch angle Vocabulary Preview Projectile Motion Projectile Motion An object shot through the air is called a projectile. A projectile can be a football, a bullet, or a drop

More information

Exam 2--PHYS 101--F17

Exam 2--PHYS 101--F17 Name: Exam 2--PHYS 0--F7 Multiple Choice Identify the choice that best completes the statement or answers the question.. A ball is thrown in the air at an angle of 30 to the ground, with an initial speed

More information

Physics 1401V October 28, 2016 Prof. James Kakalios Quiz No. 2

Physics 1401V October 28, 2016 Prof. James Kakalios Quiz No. 2 This is a closed book, closed notes, quiz. Only simple (non-programmable, nongraphing) calculators are permitted. Define all symbols and justify all mathematical expressions used. Make sure to state all

More information

Rutherford Backscattering Spectrometry

Rutherford Backscattering Spectrometry Rutherford Backscattering Spectrometry EMSE-515 Fall 2005 F. Ernst 1 Bohr s Model of an Atom existence of central core established by single collision, large-angle scattering of alpha particles ( 4 He

More information

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics

UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics UNIVERSITY OF SASKATCHEWAN Department of Physics and Engineering Physics Physics 115.3 MIDTERM TEST October 22, 2015 Time: 90 minutes NAME: (Last) Please Print (Given) STUDENT NO.: LECTURE SECTION (please

More information

Cover times of random searches

Cover times of random searches Cover times of random searches by Chupeau et al. NATURE PHYSICS www.nature.com/naturephysics 1 I. DEFINITIONS AND DERIVATION OF THE COVER TIME DISTRIBUTION We consider a random walker moving on a network

More information

Lecture 18: 3D Review, Examples

Lecture 18: 3D Review, Examples Lecture 18: 3D Review, Examples A real (2D) quantum dot http://pages.unibas.ch/physmeso/pictures/pictures.html Lecture 18, p 1 Lect. 16: Particle in a 3D Box (3) The energy eigenstates and energy values

More information

Problem: Projectile (CM-1998)

Problem: Projectile (CM-1998) Physics C -D Kinematics Name: ANSWER KEY AP Review Packet Vectors have both magnitude and direction displacement, velocity, acceleration Scalars have magnitude only distance, speed, time, mass Unit vectors

More information

Physics 20 Homework 2 SIMS 2016

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

More information

16. Elastic Scattering Michael Fowler

16. Elastic Scattering Michael Fowler 6 Elastic Scattering Michael Fowler Billiard Balls Elastic means no internal energy modes of the scatterer or of the scatteree are excited so total kinetic energy is conserved As a simple first exercise,

More information

PHYS 5012 Radiation Physics and Dosimetry

PHYS 5012 Radiation Physics and Dosimetry Radiative PHYS 5012 Radiation Physics and Dosimetry Mean Tuesday 24 March 2009 Radiative Mean Radiative Mean Collisions between two particles involve a projectile and a target. Types of targets: whole

More information

PHYS 3313 Section 001 Lecture #13

PHYS 3313 Section 001 Lecture #13 PHYS 3313 Section 001 Lecture #13 Wednesday, March 1, 2017 Rutherford Scattering Experiment and Rutherford Atomic Model The Classic Atomic Model Bohr Radius Bohr s Hydrogen Model and Its Limitations Characteristic

More information

Two-Dimensional Motion Worksheet

Two-Dimensional Motion Worksheet Name Pd Date Two-Dimensional Motion Worksheet Because perpendicular vectors are independent of each other we can use the kinematic equations to analyze the vertical (y) and horizontal (x) components of

More information

Chapter 3 Kinematics in Two Dimensions; Vectors

Chapter 3 Kinematics in Two Dimensions; Vectors Chapter 3 Kinematics in Two Dimensions; Vectors Vectors and Scalars Addition of Vectors Graphical Methods (One and Two- Dimension) Multiplication of a Vector by a Scalar Subtraction of Vectors Graphical

More information

FIITJEE PET I (EXTENDED-2)

FIITJEE PET I (EXTENDED-2) FIITJEE PET I (EXTENDED-) MAINS DATE: 9.07.017 Time: hours Maximum Marks: 60 INSTRUCTIONS: Instructions to the Candidates 1. This Test Booklet consists of 90 questions. Use Blue/Black ball Point Pen only

More information

Adding Vectors in Two Dimensions

Adding Vectors in Two Dimensions Slide 37 / 125 Adding Vectors in Two Dimensions Return to Table of Contents Last year, we learned how to add vectors along a single axis. The example we used was for adding two displacements. Slide 38

More information

3.2 Projectile Motion

3.2 Projectile Motion Motion in 2-D: Last class we were analyzing the distance in two-dimensional motion and revisited the concept of vectors, and unit-vector notation. We had our receiver run up the field then slant Northwest.

More information

Unit 1, Lessons 2-5: Vectors in Two Dimensions

Unit 1, Lessons 2-5: Vectors in Two Dimensions Unit 1, Lessons 2-5: Vectors in Two Dimensions Textbook Sign-Out Put your name in it and let s go! Check-In Any questions from last day s homework? Vector Addition 1. Find the resultant displacement

More information

AP Physics 1 Summer Assignment

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

More information

BROCK UNIVERSITY SOLUTIONS. 1. [1 point] A car is driving at a constant speed on a circular road. The force on a passenger in the car is

BROCK UNIVERSITY SOLUTIONS. 1. [1 point] A car is driving at a constant speed on a circular road. The force on a passenger in the car is BROCK UNIVERSITY Test 2: October 2014 Number of pages: 4 + formula sheet Course: PHYS 1P21/1P91 Number of students: 280 Examination date: 6 October 2014 Time of Examination: 13:00 13:50 Instructor: S.

More information

Phys101 First Major-111 Zero Version Monday, October 17, 2011 Page: 1

Phys101 First Major-111 Zero Version Monday, October 17, 2011 Page: 1 Monday, October 17, 011 Page: 1 Q1. 1 b The speed-time relation of a moving particle is given by: v = at +, where v is the speed, t t + c is the time and a, b, c are constants. The dimensional formulae

More information

Physics 20 Homework 3 SIMS 2016

Physics 20 Homework 3 SIMS 2016 Physics 20 Homework 3 SIMS 2016 Due: Thursday, August 25 th Special thanks to Sebastian Fischetti for problems 1, 5, and 6. Edits in red made by Keith Fratus. 1. The ballistic pendulum is a device used

More information

ISSUED BY K V - DOWNLOADED FROM KINEMATICS

ISSUED BY K V - DOWNLOADED FROM   KINEMATICS KINEMATICS *rest and Motion are relative terms, nobody can exist in a state of absolute rest or of absolute motion. *One dimensional motion:- The motion of an object is said to be one dimensional motion

More information

Physics 115 Mock Midterm Sunday, October 14, 2018 * 1 pm Room 241 Arts Building *

Physics 115 Mock Midterm Sunday, October 14, 2018 * 1 pm Room 241 Arts Building * Physics 115 Mock Midterm Sunday, October 14, 2018 * 1 pm Room 241 Arts Building * Note: This mock test consists of questions covered in Physics 115. This test is not comprehensive. The problems on this

More information

PHYS 3313 Section 001 Lecture #12

PHYS 3313 Section 001 Lecture #12 PHYS 3313 Section 001 Lecture #12 Monday, Feb. 24, 2014 Rutherford Scattering Experiment and Rutherford Atomic Model The Classic Atomic Model The Bohr Model of the Hydrogen Atom 1 Quiz 2 results Class

More information

a) Calculate the height that m 2 moves up the bowl after the collision (measured vertically from the bottom of the bowl).

a) Calculate the height that m 2 moves up the bowl after the collision (measured vertically from the bottom of the bowl). 2. A small mass m 1 slides in a completely frictionless spherical bowl. m 1 starts at rest at height h = ½ R above the bottom of the bowl. When it reaches the bottom of the bowl it strikes a mass m 2,

More information

Modeling Realistic Projectile Motion

Modeling Realistic Projectile Motion Modeling Realistic Projectile Motion Matthew Geske 1. Introduction The calculation of simple projectile motion is one of the most basic exercises in physics. Finding, for example, the range of a thrown

More information

Sixth Term Examination Papers 9470 MATHEMATICS 2 MONDAY 12 JUNE 2017

Sixth Term Examination Papers 9470 MATHEMATICS 2 MONDAY 12 JUNE 2017 Sixth Term Examination Papers 9470 MATHEMATICS 2 MONDAY 12 JUNE 2017 INSTRUCTIONS TO CANDIDATES AND INFORMATION FOR CANDIDATES six six Calculators are not permitted. Please wait to be told you may begin

More information

The Effect of Air Resistance Harvey Gould Physics 127 2/06/07

The Effect of Air Resistance Harvey Gould Physics 127 2/06/07 1 The Effect of Air Resistance Harvey Gould Physics 127 2/06/07 I. INTRODUCTION I simulated the motion of a falling body near the earth s surface in the presence of gravity and air resistance. I used the

More information

Lab 5: Projectile Motion

Lab 5: Projectile Motion Concepts to explore Scalars vs. vectors Projectiles Parabolic trajectory As you learned in Lab 4, a quantity that conveys information about magnitude only is called a scalar. However, when a quantity,

More information

Lecture IV: Time Discretization

Lecture IV: Time Discretization Lecture IV: Time Discretization Motivation Kinematics: continuous motion in continuous time Computer simulation: Discrete time steps t Discrete Space (mesh particles) Updating Position Force induces acceleration.

More information

2. Passage of Radiation Through Matter

2. Passage of Radiation Through Matter 2. Passage of Radiation Through Matter Passage of Radiation Through Matter: Contents Energy Loss of Heavy Charged Particles by Atomic Collision (addendum) Cherenkov Radiation Energy loss of Electrons and

More information

FALL TERM EXAM, PHYS 1211, INTRODUCTORY PHYSICS I Thursday, 11 December 2014, 6 PM to 9 PM, Field House Gym

FALL TERM EXAM, PHYS 1211, INTRODUCTORY PHYSICS I Thursday, 11 December 2014, 6 PM to 9 PM, Field House Gym FALL TERM EXAM, PHYS 1211, INTRODUCTORY PHYSICS I Thursday, 11 December 2014, 6 PM to 9 PM, Field House Gym NAME: STUDENT ID: INSTRUCTION 1. This exam booklet has 13 pages. Make sure none are missing 2.

More information

Center of Mass & Linear Momentum

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

More information

Conservation of Linear Momentum : If a force F is acting on particle of mass m, then according to Newton s second law of motion, we have F = dp /dt =

Conservation of Linear Momentum : If a force F is acting on particle of mass m, then according to Newton s second law of motion, we have F = dp /dt = Conservation of Linear Momentum : If a force F is acting on particle of mass m, then according to Newton s second law of motion, we have F = dp /dt = d (mv) /dt where p =mv is linear momentum of particle

More information

Bethe-Block. Stopping power of positive muons in copper vs βγ = p/mc. The slight dependence on M at highest energies through T max

Bethe-Block. Stopping power of positive muons in copper vs βγ = p/mc. The slight dependence on M at highest energies through T max Bethe-Block Stopping power of positive muons in copper vs βγ = p/mc. The slight dependence on M at highest energies through T max can be used for PID but typically de/dx depend only on β (given a particle

More information

In this activity, we explore the application of differential equations to the real world as applied to projectile motion.

In this activity, we explore the application of differential equations to the real world as applied to projectile motion. Applications of Calculus: Projectile Motion ID: XXXX Name Class In this activity, we explore the application of differential equations to the real world as applied to projectile motion. Open the file CalcActXX_Projectile_Motion_EN.tns

More information

E 490 FE Exam Prep. Engineering Mechanics

E 490 FE Exam Prep. Engineering Mechanics E 490 FE Exam Prep Engineering Mechanics 2008 E 490 Course Topics Statics Newton s Laws of Motion Resultant Force Systems Moment of Forces and Couples Equilibrium Pulley Systems Trusses Centroid of an

More information

PHY 141 Midterm 1 Oct 2, 2014 Version A

PHY 141 Midterm 1 Oct 2, 2014 Version A PHY 141 Midterm 1 Oct 2, 2014 Version A Put FULL NAME, ID#, and EXAM VERSION on the front cover of the BLUE BOOKLET! To avoid problems in grading: do all problems in order, write legibly, and show all

More information

A. Basic Concepts and Graphs

A. Basic Concepts and Graphs A. Basic Concepts and Graphs A01 [Qual] [Easy] For each of the following, select if it is a vector or a scalar. a) Speed b) Distance traveled c) Velocity d) (Linear) Displacement A02 [Qual] [Easy] Give

More information

Quiz No. 1: Tuesday Jan. 31. Assignment No. 2, due Thursday Feb 2: Problems 8.4, 8.13, 3.10, 3.28 Conceptual questions: 8.1, 3.6, 3.12, 3.

Quiz No. 1: Tuesday Jan. 31. Assignment No. 2, due Thursday Feb 2: Problems 8.4, 8.13, 3.10, 3.28 Conceptual questions: 8.1, 3.6, 3.12, 3. Quiz No. 1: Tuesday Jan. 31 Assignment No. 2, due Thursday Feb 2: Problems 8.4, 8.13, 3.10, 3.28 Conceptual questions: 8.1, 3.6, 3.12, 3.20 Chapter 3 Vectors and Two-Dimensional Kinematics Properties of

More information

Decays and Scattering. Decay Rates Cross Sections Calculating Decays Scattering Lifetime of Particles

Decays and Scattering. Decay Rates Cross Sections Calculating Decays Scattering Lifetime of Particles Decays and Scattering Decay Rates Cross Sections Calculating Decays Scattering Lifetime of Particles 1 Decay Rates There are THREE experimental probes of Elementary Particle Interactions - bound states

More information

INSTRUCTIONS TO CANDIDATES

INSTRUCTIONS TO CANDIDATES Surname Centre Number Candidate Number Other Names 2 GCE AS/A Level 1321/01 LEGACY S16-1321-01 PHYSICS PH1 Motion, Energy and Charge A.M. TUESDAY, 24 May 2016 1 hour 30 minutes For s use Question Maximum

More information

Quantum Mechanics II Lecture 11 (www.sp.phy.cam.ac.uk/~dar11/pdf) David Ritchie

Quantum Mechanics II Lecture 11 (www.sp.phy.cam.ac.uk/~dar11/pdf) David Ritchie Quantum Mechanics II Lecture (www.sp.phy.cam.ac.u/~dar/pdf) David Ritchie Michaelmas. So far we have found solutions to Section 4:Transitions Ĥ ψ Eψ Solutions stationary states time dependence with time

More information

Il picco di Bragg. G. Battistoni INFN Milano. 08/06/2015 G. Battistoni

Il picco di Bragg. G. Battistoni INFN Milano. 08/06/2015 G. Battistoni Il picco di Bragg G. Battistoni INFN Milano 08/06/015 G. Battistoni 1 Φ(z) The physics of Bragg Peak 180 MeV proton in water Longitudinal profile: Transversel profile: Φ(z,x) dominated by interaction with

More information