The Fermi-Pasta-Ulam Problem: An Exploration of the One-Dimensional Lattice

Size: px
Start display at page:

Download "The Fermi-Pasta-Ulam Problem: An Exploration of the One-Dimensional Lattice"

Transcription

1 The Fermi-Pasta-Ulam Problem: An Exploration of the One-Dimensional Lattice Gregory Shinault Graduate Group in Applied Mathematics June 9, 2008 Abstract In this paper we examine the behavior of a vibrating string with fixed endpoints under the assumption that the movement of the string must be described by some nonlinear terms. Nonlinear problems cause analytical difficulties, thus the problem was analyzed from a numerical point of view. The implementation was carried out using various parameter values and initial conditions.

2 Introduction In 1952, Enrico Fermi was conducting research at the Los Alamos facility in New Mexico. He became interested in the potential of electronic computing machines in problems that may not have readily attainable analytical solutions. While closed solutions may not necessarily be possible, computing methods might yet yield useful numerical solutions. The obvious class of problems lacking closed analytical solutions is, of course, the class of nonlinear problems. The one-dimensional lattice with fixed endpoints was the chosen problem. We consider some number of masses connected by springs in one-dimension, where the masses at the end have a fixed position. The interest of the problem for Fermi and company was the problem s relation to ergodic theory. To analyze this problem numerically, we look at some number points along the string and solve for their displacement at a given time t. Generally, we take the string to have an initial displacement identical to the sine wave and no starting velocity. These initial conditions can be varied to look at the long-term behavior of the string. The decision to view the model as a string with fixed endpoints was based on the greater ease of visualization, at least for the one-dimensional lattice. This visualization has the additional benefit of describing the motion of a plucked string instrument, such as a guitar, which will arouse greater in the general public. Background The necessary prerequisites to understand the problem from a physical standpoint unfortunately exceed the level of the author. As such, the problem was viewed as an opportunity to experiment with numerical methods and computer programming. To approach this problem with only numerical interest, no background in physics is necessary. One needs only to consider the nonlinear equations described in the Dynamical System section and have some familiarity with the standard fourth-order Runge-Kutta. Such individuals interested in verifying the practical convergence and computational efficiency of numerical methods could use the system described to test their ideas. It is certainly substantial enough to present computational difficulties to poorly formulated algorithms. Dynamical System To describe the system, we consider n points along the string. Our goal is to obtain a solution for x i (t), which gives the displacement of the i-th position along the string at time t. We consider x 0 and x n to be the fixed endpoints of the string. The only effect we consider on each point is its immediate neighbors. That is, the x i is only affected by the positions of x i 1 and x i+1. These neighboring points will pull x i. The following is

3 the equation used to describe the acceleration of each point on the string in the case of quadratic nonlinearity (with the exception of the endpoints): ẍ i = (x i+1 x i ) + (x i 1 x i ) + α [ (x i+1 x i ) 2 + (x i 1 x i ) 2]. In this instance, α denotes a parameter which determines the effect of the nonlinear terms. For the case of cubic nonlinearity, we obtain a very similar equation: ẍ i = (x i+1 x i ) + (x i 1 x i ) + β [ (x i+1 x i ) 3 + (x i 1 x i ) 3] where β is analogous to α in the quadratic case. It is worth noting that if we only consider the linear terms and allow n to approach we arrive at the standard wave equation. It was necessary to transform the associated system of second-order differential equations into a first-order system. To accomplish this, we still treat x 0, x 1,..., x n as the displacement of the string at the various points. We define x n+1, x n+2,..., x 2n+1 to be the velocities of x 0, x 1,..., x n, respectively. With these variables, we derive the following system of 2n + 2 equations: ẋ 0 = 0 ẋ 1 = x n+1. ẋ i = x n+i. ẋ n 1 = x 2n 1 ẋ n = 0 ẋ n+1 = 0 ẋ n+2 = x 2 x 1 + x 0 x 1 + α [ (x 2 x 1 ) 2 + (x 0 x 1 ) 2]. ẋ n+k = x k x k 1 + x k 2 x k 1 + α [ (x k x k 1 ) 2 + (x k 2 x k 1 ) 2] ẋ 2n 1 = 0.. A system of this size (provided n is a worthwhile partition of the string) would cause serious analytical headaches for systems even as simple as linear with constant coefficients. In the event of nonlinearity, we must settle for a numerical approximation. Methods The method used to solve the system was the standard fourth-order Runge-Kutta. Had time been less of a constraint, there would have been greater exploration in the use of other numerical methods. Of particular interest would be an implementation of various multistep methods, such as an Adams-Bashforth method.

4 The time step used varied with the time period we were attempting to examine. The parameters α and β were generally kept very low; the effects of the nonlinear terms are not meant to overpower the linear terms. The standard testing conditions were α, β =.25 with the string initially positioned as a sine wave. Generally, no initial velocity was assumed. As the experimentation proceeded, the parameters and the initial conditions were varied. A simple program coded in Python was used to solve the system. The program allows the user to determine the number of partition points, parameter value, and the number of steps over which to integrate. The user must actually modify the source code to vary the initial conditions of the system. Results The first case considered is a string with no initial velocity in the sine wave position. We look at the equations with quadratic nonlinear terms where α =.25. The behavior of the string was very polite oscillations for quite some time. It appeared to oscillate uniformly, returning to the initial conditions each time. However, this must have only been the appearance to the eye. Reaching upwards of 25,000 iterations the shape of the string is no longer the nice curve of a dilated sine wave. There is some disturbance. To get a better idea of the shape, look at Figure 1(a) and Figure 1(b). Varying α from 0 to 1 yielded similar results. The more interesting (irregular) vibrations came from varying the initial velocities. The string immediately became asymmetric, though it did return to the initial conditions. It took roughly 5,000 iterations to get highly irregular motion. For a visualization of this, see Figure 1(c) and Figure 1(d). A natural question arises: What occurs when α > 1? Physically, such parameter values probably do not make sense for our modeling goals. However, it is still a worthwhile numerical investigation. The simple answer is: blowup. For α = 1.5 the number of iterations decreases to about 40,000. By the time we increase to α = 2, the blowup is catastrophic after only 245 iterations. In short, not only do larger values for α not make physical sense, they are not numerically viable options. The same conditions were tested for the cubic nonlinear terms with the β parameter. The results were very similar, but irregularities in the behavior of the string took much longer to develop and were smaller. Initially this came as a surprise, but after some consideration this result makes sense. The distances between points must be less than one, so cubing the distance will be less than the distance squared. To view illustrations corresponding to those for the quadratic case, look to Figure 2. Ultimately, the two systems were very similar.

5 Conclusion The movement of the string became unpredictable, but only after a great number of iterations. We could also impose some nonuniform initial condition to cause asymmetric vibrations immediately. That, however, could be deemed chaos merely for the sake of chaos. Enforcing uniform initial conditions (not simply releasing the string with no initial velocity) yielded results very similar to most basic case. For future work a graphical display of an actual one-dimensional lattice should be created. That is, a visualization using the displacement of masses attached to springs. To progress the physical model itself, the lattice can be extended to two dimensions then three dimensions. Creation of a visualization tool for these more complicated models would be considerably more difficult to produce, and unfortunately might amount to little more than experimental toys. Bibliography E. Fermi, J. Pasta, and H. C. Ulam, Studies of nonlinear problems, in Collected Papers of Enrico Fermi, E. Segrè, ed. (U. Chicago Press, Chicago, Ill., 1965), Vol. 2, pp

6 (a) Initial velocity: 0 (b) Initial velocity: 0 (c) Initial velocity:.1 sin(2πk/n) (d) Initial velocity:.1 sin(2πk/n) Figure 1: This set of graphs depicts the displacement of a string with quadratic nonlinear terms under various initial conditions.

7 (a) Initial velocity: 0 (b) Initial velocity: 0 (c) Initial velocity:.1 sin(2πk/n) (d) Initial velocity:.1 sin(2πk/n) Figure 2: This set of graphs depicts the displacement of a string with cubic nonlinear terms under various initial conditions.

8 Figure 3: Here, we see 1000 iterations of the intial test superimposed on the same axes. Note the initial conditions are returned to with each oscillation.

x(t+ δt) - x(t) = slope δt t+δt

x(t+ δt) - x(t) = slope δt t+δt Techniques of Physics Worksheet 2 Classical Vibrations and Waves Introduction You will have encountered many different examples of wave phenomena in your courses and should be familiar with most of the

More information

Pasta-Ulam problem. The birth of nonlinear physics and dynamical chaos. Paolo Valentini

Pasta-Ulam problem. The birth of nonlinear physics and dynamical chaos. Paolo Valentini The Fermi-Pasta Pasta-Ulam problem The birth of nonlinear physics and dynamical chaos Paolo Valentini SUMMARY The Fermi-Pasta Pasta-Ulam experiment on MANIAC at LANL in 1955 The ergodic hypothesis The

More information

Chapter 2 PARAMETRIC OSCILLATOR

Chapter 2 PARAMETRIC OSCILLATOR CHAPTER- Chapter PARAMETRIC OSCILLATOR.1 Introduction A simple pendulum consists of a mass m suspended from a string of length L which is fixed at a pivot P. When simple pendulum is displaced to an initial

More information

Moving Mass A Nonlinear Dynamics Project

Moving Mass A Nonlinear Dynamics Project Moving Mass A Nonlinear Dynamics Project by Jeff Hutchinson (hutchinson@student.physics.ucdavis.edu) & Matt Fletcher (fletcher@student.physics.ucdavis.edu) UC Davis Physics Dept. Spring 2008 Abstract:

More information

Experimental Uncertainty (Error) and Data Analysis

Experimental Uncertainty (Error) and Data Analysis Experimental Uncertainty (Error) and Data Analysis Advance Study Assignment Please contact Dr. Reuven at yreuven@mhrd.org if you have any questions Read the Theory part of the experiment (pages 2-14) and

More information

THE TODA LATTICE. T (y) = α(e βy 1)

THE TODA LATTICE. T (y) = α(e βy 1) THE TODA LATTICE Background The Toda lattice is named after Morikazu Toda, who discovered in the 1960 s that the differential equations for a lattice with internal force T (y) = α(e βy 1) (with α, β constant)

More information

Analysis of Vibrating Plates with Acoustic Holography and Eddy Currents

Analysis of Vibrating Plates with Acoustic Holography and Eddy Currents University of Illinois at Urbana-Champaign Analysis of Vibrating Plates with Acoustic Holography and Eddy Currents Tyler Lindemann and Andrea Vella PHYS 406 Acoustical Physics of Music Professor Steven

More information

AN INTRODUCTION TO NUMERICAL METHODS USING MATHCAD. Mathcad Release 14. Khyruddin Akbar Ansari, Ph.D., P.E.

AN INTRODUCTION TO NUMERICAL METHODS USING MATHCAD. Mathcad Release 14. Khyruddin Akbar Ansari, Ph.D., P.E. AN INTRODUCTION TO NUMERICAL METHODS USING MATHCAD Mathcad Release 14 Khyruddin Akbar Ansari, Ph.D., P.E. Professor of Mechanical Engineering School of Engineering and Applied Science Gonzaga University

More information

Numerical Methods for the Solution of Differential Equations

Numerical Methods for the Solution of Differential Equations Numerical Methods for the Solution of Differential Equations Markus Grasmair Vienna, winter term 2011 2012 Analytical Solutions of Ordinary Differential Equations 1. Find the general solution of the differential

More information

Scientific Computing: An Introductory Survey

Scientific Computing: An Introductory Survey Scientific Computing: An Introductory Survey Chapter 9 Initial Value Problems for Ordinary Differential Equations Prof. Michael T. Heath Department of Computer Science University of Illinois at Urbana-Champaign

More information

Mass on a Horizontal Spring

Mass on a Horizontal Spring Course- B.Sc. Applied Physical Science (Computer Science) Year- IInd, Sem- IVth Subject Physics Paper- XIVth, Electromagnetic Theory Lecture No. 22, Simple Harmonic Motion Introduction Hello friends in

More information

AHL 9.1 Energy transformation

AHL 9.1 Energy transformation AHL 9.1 Energy transformation 17.1.2018 1. [1 mark] A pendulum oscillating near the surface of the Earth swings with a time period T. What is the time period of the same pendulum near the surface of the

More information

Test, Lesson 7 Waves - Answer Key Page 1

Test, Lesson 7 Waves - Answer Key Page 1 Test, Lesson 7 Waves - Answer Key Page 1 1. Match the proper units with the following: W. wavelength 1. nm F. frequency 2. /sec V. velocity 3. m 4. ms -1 5. Hz 6. m/sec (A) W: 1, 3 F: 2, 4, 5 V: 6 (B)

More information

EXPERIMENT: THE SPRING II Subtitle: Time Dependence of Oscillations

EXPERIMENT: THE SPRING II Subtitle: Time Dependence of Oscillations EXPERIMENT: THE SPRING II Subtitle: Time Dependence of Oscillations OBJECTIVES : A stretched spring is a good example of an oscillator, which oscillates around an equilibrium position ( sum of all forces

More information

Examining the Effect of Additional Driving Forces on a Mechanical Oscillator

Examining the Effect of Additional Driving Forces on a Mechanical Oscillator Examining the Effect of Additional Driving Forces on a Mechanical Oscillator Nate Stone Physics Department, The College of Wooster, Wooster, Ohio 44691, USA (Dated: May 7, 2015) In this experiment, the

More information

Practice Test SHM with Answers

Practice Test SHM with Answers Practice Test SHM with Answers MPC 1) If we double the frequency of a system undergoing simple harmonic motion, which of the following statements about that system are true? (There could be more than one

More information

The phenomenon: complex motion, unusual geometry

The phenomenon: complex motion, unusual geometry Part I The phenomenon: complex motion, unusual geometry Chapter 1 Chaotic motion 1.1 What is chaos? Certain long-lasting, sustained motion repeats itself exactly, periodically. Examples from everyday life

More information

ARTICLE IN PRESS. Mechanical Systems and Signal Processing

ARTICLE IN PRESS. Mechanical Systems and Signal Processing Mechanical Systems and Signal Processing ] (]]]]) ]]] ]]] Contents lists available at ScienceDirect Mechanical Systems and Signal Processing journal homepage: www.elsevier.com/locate/jnlabr/ymssp Excitation

More information

Exact answers were generally given, except when a numerical approximation was required.

Exact answers were generally given, except when a numerical approximation was required. 04 04 Specialist Mathematics GA : GENERAL COMMENTS The 04 Specialist Mathematics examination comprised multiple-choice questions (worth marks) and five extended-answer questions, worth a total of 58 marks.

More information

1 (a) On the axes of Fig. 7.1, sketch a stress against strain graph for a typical ductile material. stress. strain. Fig. 7.1 [2]

1 (a) On the axes of Fig. 7.1, sketch a stress against strain graph for a typical ductile material. stress. strain. Fig. 7.1 [2] 1 (a) On the axes of Fig. 7.1, sketch a stress against strain graph for a typical ductile material. stress strain Fig. 7.1 [2] (b) Circle from the list below a material that is ductile. jelly c amic gl

More information

Thursday, August 4, 2011

Thursday, August 4, 2011 Chapter 16 Thursday, August 4, 2011 16.1 Springs in Motion: Hooke s Law and the Second-Order ODE We have seen alrealdy that differential equations are powerful tools for understanding mechanics and electro-magnetism.

More information

spring mass equilibrium position +v max

spring mass equilibrium position +v max Lecture 20 Oscillations (Chapter 11) Review of Simple Harmonic Motion Parameters Graphical Representation of SHM Review of mass-spring pendulum periods Let s review Simple Harmonic Motion. Recall we used

More information

The Nonlinear Pendulum

The Nonlinear Pendulum The Nonlinear Pendulum - Pádraig Ó Conbhuí - 08531749 TP Monday 1. Abstract This experiment was performed to examine the effects that linearizing equations has on the accuracy of results and to find ways

More information

Algebra Performance Level Descriptors

Algebra Performance Level Descriptors Limited A student performing at the Limited Level demonstrates a minimal command of Ohio s Learning Standards for Algebra. A student at this level has an emerging ability to A student whose performance

More information

Problem Set Number 01, MIT (Winter-Spring 2018)

Problem Set Number 01, MIT (Winter-Spring 2018) Problem Set Number 01, 18.377 MIT (Winter-Spring 2018) Rodolfo R. Rosales (MIT, Math. Dept., room 2-337, Cambridge, MA 02139) February 28, 2018 Due Thursday, March 8, 2018. Turn it in (by 3PM) at the Math.

More information

Interaction effects for continuous predictors in regression modeling

Interaction effects for continuous predictors in regression modeling Interaction effects for continuous predictors in regression modeling Testing for interactions The linear regression model is undoubtedly the most commonly-used statistical model, and has the advantage

More information

8.5 Taylor Polynomials and Taylor Series

8.5 Taylor Polynomials and Taylor Series 8.5. TAYLOR POLYNOMIALS AND TAYLOR SERIES 50 8.5 Taylor Polynomials and Taylor Series Motivating Questions In this section, we strive to understand the ideas generated by the following important questions:

More information

x = B sin ( t ) HARMONIC MOTIONS SINE WAVES AND SIMPLE HARMONIC MOTION Here s a nice simple fraction: y = sin (x) Differentiate = cos (x)

x = B sin ( t ) HARMONIC MOTIONS SINE WAVES AND SIMPLE HARMONIC MOTION Here s a nice simple fraction: y = sin (x) Differentiate = cos (x) SINE WAVES AND SIMPLE HARMONIC MOTION Here s a nice simple fraction: y = sin (x) HARMONIC MOTIONS dy Differentiate = cos (x) dx So sin (x) has a stationary value whenever cos (x) = 0. 3 5 7 That s when

More information

Figure 1: Schematic of ship in still water showing the action of bouyancy and weight to right the ship.

Figure 1: Schematic of ship in still water showing the action of bouyancy and weight to right the ship. MULTI-DIMENSIONAL SYSTEM: In this computer simulation we will explore a nonlinear multi-dimensional system. As before these systems are governed by equations of the form x 1 = f 1 x 2 = f 2.. x n = f n

More information

Chap. 15: Simple Harmonic Motion

Chap. 15: Simple Harmonic Motion Chap. 15: Simple Harmonic Motion Announcements: CAPA is due next Tuesday and next Friday. Web page: http://www.colorado.edu/physics/phys1110/phys1110_sp12/ Examples of periodic motion vibrating guitar

More information

Another Method to get a Sine Wave. X = A cos θ V = Acc =

Another Method to get a Sine Wave. X = A cos θ V = Acc = LAST NAME FIRST NAME DATE PER CJ Wave Assignment 10.3 Energy & Simple Harmonic Motion Conceptual Questions 3, 4, 6, 7, 9 page 313 6, 7, 33, 34 page 314-316 Tracing the movement of the mass on the end of

More information

C. points X and Y only. D. points O, X and Y only. (Total 1 mark)

C. points X and Y only. D. points O, X and Y only. (Total 1 mark) Grade 11 Physics -- Homework 16 -- Answers on a separate sheet of paper, please 1. A cart, connected to two identical springs, is oscillating with simple harmonic motion between two points X and Y that

More information

Variable Step Runge-Kutta-Nyström Methods for the Numerical Solution of Reversible Systems

Variable Step Runge-Kutta-Nyström Methods for the Numerical Solution of Reversible Systems Variable Step Runge-Kutta-Nyström Methods for the Numerical Solution of Reversible Systems J. R. Cash and S. Girdlestone Department of Mathematics, Imperial College London South Kensington London SW7 2AZ,

More information

Chapter 14: Periodic motion

Chapter 14: Periodic motion Chapter 14: Periodic motion Describing oscillations Simple harmonic motion Energy of simple harmonic motion Applications of simple harmonic motion Simple pendulum & physical pendulum Damped oscillations

More information

Chapter 13. Simple Harmonic Motion

Chapter 13. Simple Harmonic Motion Chapter 13 Simple Harmonic Motion Hooke s Law F s = - k x F s is the spring force k is the spring constant It is a measure of the stiffness of the spring A large k indicates a stiff spring and a small

More information

Chapter 14 (Oscillations) Key concept: Downloaded from

Chapter 14 (Oscillations) Key concept: Downloaded from Chapter 14 (Oscillations) Multiple Choice Questions Single Correct Answer Type Q1. The displacement of a particle is represented by the equation. The motion of the particle is (a) simple harmonic with

More information

Gerardo Zavala. Math 388. Predator-Prey Models

Gerardo Zavala. Math 388. Predator-Prey Models Gerardo Zavala Math 388 Predator-Prey Models Spring 2013 1 History In the 1920s A. J. Lotka developed a mathematical model for the interaction between two species. The mathematician Vito Volterra worked

More information

GENERATION OF DIVERSE DYNAMIC BEHAVIORS USING THE EMERGENT DESIGN SYSTEM

GENERATION OF DIVERSE DYNAMIC BEHAVIORS USING THE EMERGENT DESIGN SYSTEM GENERATION OF DIVERSE DYNAMIC BEHAVIORS USING THE EMERGENT DESIGN SYSTEM Koichiro Sato a, Kenjiro Takemura b and Yoshiyuki Matsuoka c Faculty of Science and Technology, Keio University, Yokohama, Japan

More information

Chaos Theory. Namit Anand Y Integrated M.Sc.( ) Under the guidance of. Prof. S.C. Phatak. Center for Excellence in Basic Sciences

Chaos Theory. Namit Anand Y Integrated M.Sc.( ) Under the guidance of. Prof. S.C. Phatak. Center for Excellence in Basic Sciences Chaos Theory Namit Anand Y1111033 Integrated M.Sc.(2011-2016) Under the guidance of Prof. S.C. Phatak Center for Excellence in Basic Sciences University of Mumbai 1 Contents 1 Abstract 3 1.1 Basic Definitions

More information

CHAPTER 11 TEST REVIEW

CHAPTER 11 TEST REVIEW AP PHYSICS Name: Period: Date: 50 Multiple Choice 45 Single Response 5 Multi-Response Free Response 3 Short Free Response 2 Long Free Response DEVIL PHYSICS BADDEST CLASS ON CAMPUS AP EXAM CHAPTER TEST

More information

Second-Order Linear Differential Equations C 2

Second-Order Linear Differential Equations C 2 C8 APPENDIX C Additional Topics in Differential Equations APPENDIX C. Second-Order Homogeneous Linear Equations Second-Order Linear Differential Equations Higher-Order Linear Differential Equations Application

More information

v t 2 2t 8. Fig. 7 (i) Write down the velocity of the insect when t 0. (ii) Show that the insect is instantaneously at rest when t 2and when t 4.

v t 2 2t 8. Fig. 7 (i) Write down the velocity of the insect when t 0. (ii) Show that the insect is instantaneously at rest when t 2and when t 4. 1 Fig. 7 is a sketch of part of the velocity-time graph for the motion of an insect walking in a straight line. Its velocity, v ms 1, at time t seconds for the time interval 3 t 5 is given by v ms -1 v

More information

Chapter 11. Vibrations and Waves

Chapter 11. Vibrations and Waves Chapter 11 Vibrations and Waves Driven Harmonic Motion and Resonance RESONANCE Resonance is the condition in which a time-dependent force can transmit large amounts of energy to an oscillating object,

More information

Modeling and Experimentation: Mass-Spring-Damper System Dynamics

Modeling and Experimentation: Mass-Spring-Damper System Dynamics Modeling and Experimentation: Mass-Spring-Damper System Dynamics Prof. R.G. Longoria Department of Mechanical Engineering The University of Texas at Austin July 20, 2014 Overview 1 This lab is meant to

More information

Theoretical physics. Deterministic chaos in classical physics. Martin Scholtz

Theoretical physics. Deterministic chaos in classical physics. Martin Scholtz Theoretical physics Deterministic chaos in classical physics Martin Scholtz scholtzzz@gmail.com Fundamental physical theories and role of classical mechanics. Intuitive characteristics of chaos. Newton

More information

Lab 3. Adding Forces with a Force Table

Lab 3. Adding Forces with a Force Table Lab 3. Adding Forces with a Force Table Goals To describe the effect of three balanced forces acting on a ring or disk using vector addition. To practice adding force vectors graphically and mathematically

More information

Lab 3. Adding Forces with a Force Table

Lab 3. Adding Forces with a Force Table Lab 3. Adding Forces with a Force Table Goals To describe the effect of three balanced forces acting on a ring or disk using vector addition. To practice adding force vectors graphically and mathematically

More information

CHAPTER 10: Numerical Methods for DAEs

CHAPTER 10: Numerical Methods for DAEs CHAPTER 10: Numerical Methods for DAEs Numerical approaches for the solution of DAEs divide roughly into two classes: 1. direct discretization 2. reformulation (index reduction) plus discretization Direct

More information

AHL 9.1 Energy transformation

AHL 9.1 Energy transformation AHL 9.1 Energy transformation 17.1.2018 1. [1 mark] A pendulum oscillating near the surface of the Earth swings with a time period T. What is the time period of the same pendulum near the surface of the

More information

Trajectory of a balloon

Trajectory of a balloon Presentation mode Print this page Favourite Feedback Share this page Twitter Facebook LinkedIn Google + Email Sitemap Teaching materials Twitter Facebook LinkedIn Google + Email Trajectory of a balloon

More information

Episode 304: Simple pendulum

Episode 304: Simple pendulum Episode 304: Simple pendulum This episode reinforces many of the fundamental ideas about SHM. Note a complication: a simple pendulum shows SHM only for small amplitude oscillations. Summary Student experiment:

More information

A Level. A Level Physics. Oscillations (Answers) AQA, Edexcel. Name: Total Marks: /30

A Level. A Level Physics. Oscillations (Answers) AQA, Edexcel. Name: Total Marks: /30 Visit http://www.mathsmadeeasy.co.uk/ for more fantastic resources. AQA, Edexcel A Level A Level Physics Oscillations (Answers) Name: Total Marks: /30 Maths Made Easy Complete Tuition Ltd 2017 1. The graph

More information

Virbations and Waves

Virbations and Waves Virbations and Waves 1.1 Observe and find a pattern Try the following simple experiments and describe common patterns concerning the behavior of the block. (a) Fill in the table that follows. Experiment

More information

Scientific Computing: An Introductory Survey

Scientific Computing: An Introductory Survey Scientific Computing: An Introductory Survey Chapter 7 Interpolation Prof. Michael T. Heath Department of Computer Science University of Illinois at Urbana-Champaign Copyright c 2002. Reproduction permitted

More information

1.2. Indices. Introduction. Prerequisites. Learning Outcomes

1.2. Indices. Introduction. Prerequisites. Learning Outcomes Indices 1.2 Introduction Indices, or powers, provide a convenient notation when we need to multiply a number by itself several times. In this Section we explain how indices are written, and state the rules

More information

spring magnet Fig. 7.1 One end of the magnet hangs inside a coil of wire. The coil is connected in series with a resistor R.

spring magnet Fig. 7.1 One end of the magnet hangs inside a coil of wire. The coil is connected in series with a resistor R. 1 A magnet is suspended vertically from a fixed point by means of a spring, as shown in Fig. 7.1. spring magnet coil R Fig. 7.1 One end of the magnet hangs inside a coil of wire. The coil is connected

More information

Starters and activities in Mechanics. MEI conference 2012 Keele University. Centre of mass: two counter-intuitive stable positions of equilibrium

Starters and activities in Mechanics. MEI conference 2012 Keele University. Centre of mass: two counter-intuitive stable positions of equilibrium Starters and activities in Mechanics MEI conference 2012 Keele University Starters Centre of mass: two counter-intuitive stable positions of equilibrium The directions of displacement, velocity and acceleration

More information

Applied Asymptotic Analysis

Applied Asymptotic Analysis Applied Asymptotic Analysis Peter D. Miller Graduate Studies in Mathematics Volume 75 American Mathematical Society Providence, Rhode Island Preface xiii Part 1. Fundamentals Chapter 0. Themes of Asymptotic

More information

( ) Chapter 3: Free Vibration of the Breakwater. 3.1 Introduction

( ) Chapter 3: Free Vibration of the Breakwater. 3.1 Introduction Chapter : Free Vibration of the Breakwater. Introduction Before conducting forcing analyses on the breakwater, a free vibration study is necessary. This chapter will describe the analysis conducted to

More information

Physics 7Em Midterm Exam 1

Physics 7Em Midterm Exam 1 Physics 7Em Midterm Exam 1 MULTIPLE CHOICE PROBLEMS. There are 10 multiple choice problems. Each is worth 2 points. There is no penalty for wrong answers. In each, choose the best answer; only one answer

More information

EXAM 1. WAVES, OPTICS AND MODERN PHYSICS 15% of the final mark

EXAM 1. WAVES, OPTICS AND MODERN PHYSICS 15% of the final mark EXAM 1 WAVES, OPTICS AND MODERN PHYSICS 15% of the final mark Autumn 2018 Name: Each multiple-choice question is worth 3 marks. 1. A light beam is deflected by two mirrors, as shown. The incident beam

More information

Oscillations and Waves

Oscillations and Waves Oscillations and Waves Oscillation: Wave: Examples of oscillations: 1. mass on spring (eg. bungee jumping) 2. pendulum (eg. swing) 3. object bobbing in water (eg. buoy, boat) 4. vibrating cantilever (eg.

More information

Some students failed to realise that the force in the diagram and resistance force in the graph referred only to the ship and not to the tugboat.

Some students failed to realise that the force in the diagram and resistance force in the graph referred only to the ship and not to the tugboat. Physics GA 1: Written examination 1 GENERAL COMMENTS The number of students who sat for the Physics examination 1 was 6846. With a mean score of 64 per cent, students generally found the paper to be quite

More information

Sequenced Units for Arizona s College and Career Ready Standards MA27 Algebra I

Sequenced Units for Arizona s College and Career Ready Standards MA27 Algebra I Sequenced Units for Arizona s College and Career Ready Standards MA27 Algebra I Year at a Glance Semester 1 Semester 2 Unit 1: Solving Linear Equations (12 days) Unit 2: Solving Linear Inequalities (12

More information

Variables and Functions: Using Geometry to Explore Important Concepts in Algebra

Variables and Functions: Using Geometry to Explore Important Concepts in Algebra Variables and Functions: Using Geometry to Explore Important Concepts in Algebra Scott Steketee KCP Technologies University of Pennsylvania Graduate School of Education stek@kcptech.com Abstract: Students

More information

Experimental Uncertainty (Error) and Data Analysis

Experimental Uncertainty (Error) and Data Analysis E X P E R I M E N T 1 Experimental Uncertainty (Error) and Data Analysis INTRODUCTION AND OBJECTIVES Laboratory investigations involve taking measurements of physical quantities, and the process of taking

More information

Civil Engineering and Architecture (CEA)

Civil Engineering and Architecture (CEA) Lesson 2.2 N.Q.3 - Quantities Choose a level of accuracy appropriate to limitations on measurement when reporting quantities. G.MG.2 - Modeling with Geometry Apply concepts of density based on area and

More information

multistep methods Last modified: November 28, 2017 Recall that we are interested in the numerical solution of the initial value problem (IVP):

multistep methods Last modified: November 28, 2017 Recall that we are interested in the numerical solution of the initial value problem (IVP): MATH 351 Fall 217 multistep methods http://www.phys.uconn.edu/ rozman/courses/m351_17f/ Last modified: November 28, 217 Recall that we are interested in the numerical solution of the initial value problem

More information

PDE and Boundary-Value Problems Winter Term 2014/2015

PDE and Boundary-Value Problems Winter Term 2014/2015 PDE and Boundary-Value Problems Winter Term 2014/2015 Lecture 13 Saarland University 5. Januar 2015 c Daria Apushkinskaya (UdS) PDE and BVP lecture 13 5. Januar 2015 1 / 35 Purpose of Lesson To interpretate

More information

8. What is the period of a pendulum consisting of a 6-kg object oscillating on a 4-m string?

8. What is the period of a pendulum consisting of a 6-kg object oscillating on a 4-m string? 1. In the produce section of a supermarket, five pears are placed on a spring scale. The placement of the pears stretches the spring and causes the dial to move from zero to a reading of 2.0 kg. If the

More information

Solutions to homework assignment #7 Math 119B UC Davis, Spring for 1 r 4. Furthermore, the derivative of the logistic map is. L r(x) = r(1 2x).

Solutions to homework assignment #7 Math 119B UC Davis, Spring for 1 r 4. Furthermore, the derivative of the logistic map is. L r(x) = r(1 2x). Solutions to homework assignment #7 Math 9B UC Davis, Spring 0. A fixed point x of an interval map T is called superstable if T (x ) = 0. Find the value of 0 < r 4 for which the logistic map L r has a

More information

A particle travels at a constant speed around a circle of radius r with centripetal acceleration a. What is the time taken for ten complete rotations?

A particle travels at a constant speed around a circle of radius r with centripetal acceleration a. What is the time taken for ten complete rotations? 1 particle travels at a constant speed around a circle of radius r with centripetal acceleration a. What is the time taken for ten complete rotations? 2 The frequency of a body moving with simple harmonic

More information

A Domain Decomposition Approach for Calculating the Graph Corresponding to a Fibrous Geometry

A Domain Decomposition Approach for Calculating the Graph Corresponding to a Fibrous Geometry A Domain Decomposition Approach for Calculating the Graph Corresponding to a Fibrous Geometry Achi Brandt 1, Oleg Iliev 2, and Joerg Willems 3 1 Department of Applied Mathematics & Computer Science, The

More information

PHYSICS 1 Simple Harmonic Motion

PHYSICS 1 Simple Harmonic Motion Advanced Placement PHYSICS 1 Simple Harmonic Motion Student 014-015 What I Absolutely Have to Know to Survive the AP* Exam Whenever the acceleration of an object is proportional to its displacement and

More information

3 Mathematical modeling of the torsional dynamics of a drill string

3 Mathematical modeling of the torsional dynamics of a drill string 3 Mathematical modeling of the torsional dynamics of a drill string 3.1 Introduction Many works about torsional vibrations on drilling systems [1, 12, 18, 24, 41] have been published using different numerical

More information

Fermi-Pasta-Ulam problem

Fermi-Pasta-Ulam problem Fermi-Pasta-Ulam problem Tristan Koskamp Supervisors: J.S. Caux, D. Fioretto, M. Brockmann ITFA July 18, 2013 Abstract The aim of this paper is to get more insight in the behaviour of the Fermi- Past-Ulam

More information

A. Incorrect! Frequency and wavelength are not directly proportional to each other.

A. Incorrect! Frequency and wavelength are not directly proportional to each other. MCAT Physics Problem Solving Drill 1: Waves and Periodic Motion Question No. 1 of 10 Question 1. Two waves on identical strings have frequencies in a ratio of 3 to. If their wave speeds are the same, then

More information

Excel for Scientists and Engineers Numerical Method s. E. Joseph Billo

Excel for Scientists and Engineers Numerical Method s. E. Joseph Billo Excel for Scientists and Engineers Numerical Method s E. Joseph Billo Detailed Table of Contents Preface Acknowledgments About the Author Chapter 1 Introducing Visual Basic for Applications 1 Chapter

More information

Algebra I, 2nd 4.5 weeks

Algebra I, 2nd 4.5 weeks 07-08 The following practice standards will be used throughout 4.5 weeks:. Make sense of problems and persevere in solving them.. Reason abstractly and quantitatively. 3. Construct viable arguments and

More information

CS 450 Numerical Analysis. Chapter 9: Initial Value Problems for Ordinary Differential Equations

CS 450 Numerical Analysis. Chapter 9: Initial Value Problems for Ordinary Differential Equations Lecture slides based on the textbook Scientific Computing: An Introductory Survey by Michael T. Heath, copyright c 2018 by the Society for Industrial and Applied Mathematics. http://www.siam.org/books/cl80

More information

Design and Development of Hand Water Pump with a Pendulum

Design and Development of Hand Water Pump with a Pendulum Volume-5, Issue-6, December-2015 International Journal of Engineering and Management Research Page Number: 357-361 Design and Development of Hand Water Pump with a Pendulum D. Apparao¹, Y. Sagar² 1,2 Department

More information

Stabilizing the dual inverted pendulum

Stabilizing the dual inverted pendulum Stabilizing the dual inverted pendulum Taylor W. Barton Massachusetts Institute of Technology, Cambridge, MA 02139 USA (e-mail: tbarton@mit.edu) Abstract: A classical control approach to stabilizing a

More information

Torsion Spring Oscillator with Dry Friction

Torsion Spring Oscillator with Dry Friction Torsion Spring Oscillator with Dry Friction Manual Eugene Butikov Annotation. The manual includes a description of the simulated physical system and a summary of the relevant theoretical material for students

More information

FISIKA KOMPUTASI (COMPUTATIONAL PHYSICS) Ishafit Program Studi Pendidikan Fisika Universitas Ahmad Dahlan

FISIKA KOMPUTASI (COMPUTATIONAL PHYSICS) Ishafit Program Studi Pendidikan Fisika Universitas Ahmad Dahlan FISIKA KOMPUTASI (COMPUTATIONAL PHYSICS) Ishafit Program Studi Pendidikan Fisika Universitas Ahmad Dahlan What is Computational Science What is Computational Physics Reference: Resource Letter CP-2: Computational

More information

Maple in Differential Equations

Maple in Differential Equations Maple in Differential Equations and Boundary Value Problems by H. Pleym Maple Worksheets Supplementing Edwards and Penney Differential Equations and Boundary Value Problems - Computing and Modeling Preface

More information

Mechanics. In the Science Program, Mechanics contributes to the following program goals described in the Exit Profile:

Mechanics. In the Science Program, Mechanics contributes to the following program goals described in the Exit Profile: Mechanics Objectives: 00UR Discipline: Physics Ponderation: 3-2-3 Course Code: 203-NYA-05 Prerequisite: Sec. V Physics 534, Mathematics 536 (or equivalent) Course Credit: 2 2/3 Corequisite: 00UP (Calculus

More information

Why Is CO 2 a Greenhouse Gas?

Why Is CO 2 a Greenhouse Gas? Why Is CO 2 a Greenhouse Gas? The Earth is warming and the cause is the increase in greenhouse gases like carbon dioxide (CO 2 ) in the atmosphere. Carbon dioxide is a linear, triatomic molecule with a

More information

Math 128A Spring 2003 Week 12 Solutions

Math 128A Spring 2003 Week 12 Solutions Math 128A Spring 2003 Week 12 Solutions Burden & Faires 5.9: 1b, 2b, 3, 5, 6, 7 Burden & Faires 5.10: 4, 5, 8 Burden & Faires 5.11: 1c, 2, 5, 6, 8 Burden & Faires 5.9. Higher-Order Equations and Systems

More information

Free-Body Diagrams: Introduction

Free-Body Diagrams: Introduction Free-Body Diagrams: Introduction Learning Goal: To learn to draw free-body diagrams for various real-life situations. Imagine that you are given a description of a real-life situation and are asked to

More information

Student Book pages

Student Book pages Chapter 7 Review Student Boo pages 390 39 Knowledge. Oscillatory otion is otion that repeats itself at regular intervals. For exaple, a ass oscillating on a spring and a pendulu swinging bac and forth..

More information

4. What is the speed (in cm s - 1 ) of the tip of the minute hand?

4. What is the speed (in cm s - 1 ) of the tip of the minute hand? Topic 4 Waves PROBLEM SET Formative Assessment NAME: TEAM: THIS IS A PRACTICE ASSESSMENT. Show formulas, substitutions, answers, and units! Topic 4.1 Oscillations A mass is attached to a horizontal spring.

More information

Solving the Generalized Poisson Equation Using the Finite-Difference Method (FDM)

Solving the Generalized Poisson Equation Using the Finite-Difference Method (FDM) Solving the Generalized Poisson Equation Using the Finite-Difference Method (FDM) James R. Nagel September 30, 2009 1 Introduction Numerical simulation is an extremely valuable tool for those who wish

More information

SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS

SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS (Section 3.5: Differentials and Linearization of Functions) 3.5.1 SECTION 3.5: DIFFERENTIALS and LINEARIZATION OF FUNCTIONS LEARNING OBJECTIVES Use differential notation to express the approximate change

More information

What Is a Soliton? by Peter S. Lomdahl. Solitons in Biology

What Is a Soliton? by Peter S. Lomdahl. Solitons in Biology What Is a Soliton? by Peter S. Lomdahl A bout thirty years ago a remarkable discovery was made here in Los Alamos. Enrico Fermi, John Pasta, and Stan Ulam were calculating the flow of energy in a onedimensional

More information

16.30/31, Fall 2010 Recitation # 13

16.30/31, Fall 2010 Recitation # 13 16.30/31, Fall 2010 Recitation # 13 Brandon Luders December 6, 2010 In this recitation, we tie the ideas of Lyapunov stability analysis (LSA) back to previous ways we have demonstrated stability - but

More information

4. Objectives of Research work

4. Objectives of Research work 4. Objectives of Research work 4.1 Objectives of Study: The design of bellows is challenging looking to varieties of applications and evaluation of stresses is further difficult to approximate due to its

More information

Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 9

Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 9 Lecture Notes to Accompany Scientific Computing An Introductory Survey Second Edition by Michael T. Heath Chapter 9 Initial Value Problems for Ordinary Differential Equations Copyright c 2001. Reproduction

More information

A Classical Approach to the Stark-Effect. Mridul Mehta Advisor: Prof. Enrique J. Galvez Physics Dept., Colgate University

A Classical Approach to the Stark-Effect. Mridul Mehta Advisor: Prof. Enrique J. Galvez Physics Dept., Colgate University A Classical Approach to the Stark-Effect Mridul Mehta Advisor: Prof. Enrique J. Galvez Physics Dept., Colgate University Abstract The state of an atom in the presence of an external electric field is known

More information

Law of Trichotomy and Boundary Equations

Law of Trichotomy and Boundary Equations Law of Trichotomy and Boundary Equations Law of Trichotomy: For any two real numbers a and b, exactly one of the following is true. i. a < b ii. a = b iii. a > b The Law of Trichotomy is a formal statement

More information

Oscillations. Oscillations and Simple Harmonic Motion

Oscillations. Oscillations and Simple Harmonic Motion Oscillations AP Physics C Oscillations and Simple Harmonic Motion 1 Equilibrium and Oscillations A marble that is free to roll inside a spherical bowl has an equilibrium position at the bottom of the bowl

More information