Introduction to Dynamical Systems. Tuesday, September 9, 14

Size: px
Start display at page:

Download "Introduction to Dynamical Systems. Tuesday, September 9, 14"

Transcription

1 Introduction to Dynamical Systems 1

2 Dynamical Systems A dynamical system is a set of related phenomena that change over time in a deterministic way. The future states of the system can be predicted from past states during lifetime of system Specification of a dynamical system: definition of the state of the system rule for change (the dynamic) Successfully characterize systems on a wide variety of scales (physics, biology, psychology, ecology...) 2

3 Population Change State of system: N of organisms (P n ) Rule for change: P n+1 = r. P n r = 1 + b(irth rate) - d(eath rate) System can be modeled by iterating rule for change Initial conditions must be specified 3

4 Example Growth Parameter Values: b =.05, d =.01!! r = 1.04 Initial Conditions: P 0 = 100 State of system changes over time, but system is fixed! P n+1 = r. P n 4

5 Simple Simulation code % pop.m p(1) = 100; r =.95; niter = 100 for i = 2:niter p(i) = r*p(i-1); end plot (p, 'o-'); xlabel ('Generation', 'FontSize', 18); ylabel ('Population', 'FontSize', 18); shg 5

6 System Parameters and Qualitative behavior r = 1.04 r =.95 6

7 Attractors When r < 1, system has an attractor at 0. All initial conditions result in P = 0. Even if the system is perturbed (new seagulls join community), end state is the same. When r > 1, no attractor System grows indefinitely Effect of initial conditions (or perturbations) is always there. When r = 1 Fixed point Neutral stability Dependence on initial conditions and perturbations. 7

8 Iterative Simulation vs. Analytical Solutions Some systems have analytical solutions Function giving state of system at any time n 8

9 System Activation and Change System with fixed set of parameter values is valid for some interval of time, during which we can say that the system is active. parameters of system remain fixed state of system evolves over time Parameter change may occur e.g. change in b and d due to environment change may reflect state of higher-order system Different from perturbation to a system e.g., changing state from outside the system BUT: Nonlinear system can have multiple attractors and perturbations may push system into a different attractor. 9

10 Spring Dynamical System I spring: I Displace a spring from its resting position (stretch or compress) and it returns smoothly. I Sti ness of spring determines how quickly it returns: slinky vs. your skin I Rule for change: Change in x = kx I k is related to the sti ness of the spring. I I Rule for change: Change in x = kx I The higher the value of k, the faster the goal is attained. Money in Bank Time

11 I I mass: I I Mass k is related to the sti ness of the spring. When displaced, it doesn t return Set it into motion and it keeps moving.

12 Mass + Spring I What happens if you combine a mass and a spring? I Pull the object at the end of the spring, and it will return to its rest position, but because the mass is in motion, it wants to stay in motion. (That is what masses do). I Motion causes spring to compress, then the spring wants to return to its rest position again I Result is oscillation around rest position.

13 Spring: Change in x = 1 2 x Water in bathtub Time Position Time Mass + Spring

14 Mass+Spring: Harmonic motion time A x 0 + A + A Block resting on air hockey table, with a spring attaching it to the side of the table. Such systems are effectively frictionless. Block will oscillate about neutral position What is rule for change for the block,? such that we can find the change in state (e.g., position) from the current state. `

15 Kinematics Kinematics are state descriptors of change (not a dynamical system) in a continuous, multi-dimensional space over time. Position Xn Velocity Vn = Δ(Xn) Acceleration An = Δ(Δ(Xn)) Discrete kinematics: states defined at sequence of discrete instants in time (samples) 15

16 Kinematic Equations for Velocity and Acceleration 16

17 Time Functions Ball rolls to wall, bounces off, rolls back 17

18 Relevant physical laws Newton s 2nd Law (masses): Sum of Forces Applied to an Object F = m a = Object Mass x Object Acceleration Inertial Force Hooke s Law (springs): F = k(x x 0 ) k(stiffness) x Inertial Force is proportional to displacement from x0

19 Deriving the Rule for Change x=f(t) What is the function? F = m a F = k(x x 0 ) ma = k(x x 0 ) a = k m (x x 0) ẍ = k m (x x 0) x = x x 0 ẍ = ( k m )x Differential Equation (DE): Second derivative of x is proportional to x with a constant = -k/m This is a feedback system! The position causes change in position. To solve analytically find x=f(t) such that it satisfies the DE.

20 Mass-spring: iteration %mass_spring.m x(1)=10; %initial position v(1)=0; %initial velocity a(1)=0; %initial acceleration k=1; m=5; dt = 1; niter = 100; for i=2:niter a(i) = -(k/m)*x(i-1); v(i) = v(i-1)+(a(i)*dt); x(i) = x(i-1)+(v(i)*dt); end subplot (3,1,1), plot(x); ylabel (gca,' Position', 'FontSize', 18); title (['k=' num2str(k) ' ; m= ' num2str(m)],'fontsize', 18 ) subplot (3,1,2), plot(v); ylabel (gca,' Velocity', 'FontSize', 18); subplot (3,1,3), plot(a); ylabel (gca,' Acceleration', 'FontSize', 18); xlabel (gca,' Time(s)', 'FontSize', 18); shg

21 Effect of decreasing m

22 Effect of increasing k

23 Analytic Solution? x=cos(ωt) d sin( t) = cos( t) dt d cos( t) = sin( t) dt d 2 dt 2 cos(!t) = d dt ( d dt cos(!t)) d 2 dt 2 cos(!t) = d dt (!sin(!t)) d 2 dt 2 cos( t) = 2 cos( t) Curvature of cos(ωt) is proportional to it its value

24 Slope Curvature Time (s)

25 Solutions of mass-spring differential equation What function for x will satisfy d 2 x this equation? dt 2 = k m x x = cos( t) d 2 dt 2 cos( t) = 2 cos( t) FOR 2 = k m So the solution is an oscillator, whose frequency is: k = m ω will be proportional to stiffness of the spring, and inversely proportional to mass.

26 Are frequencies correct?

27 Control Parameter of system k/m Increasing stiffness of spring is equivalent to decreasing mass. Frequency of oscillation depends on k/m ω 2 = k/m Attractor?? 27

28 Real-life Systems: Damping A simple mass-spring system neither loses nor gains energy and is called undamped Real-life systems are not frictionless and display both energy losses and gains Thus, more realistic models of skilled activity must include some sort of friction component: Friction Force + Spring Force = Inertial Force (resists motion) 28

29 Damped Mass-Spring b x k(x x ) = m x 0 ẍ = b mẋ k m (x x 0) 29

30 30

31 Damped Mass-spring: iteration %mass_spring_damped.m x(1)=10; %initial position v(1)=0; %initial velocity a(1)=0; %initial acceleration k=1; m=5; b=1; dt = 1; niter = 100; for i=2:niter a(i) = (-(k/m)*x(i-1)) - (b/m)*v(i-1); v(i) = v(i-1)+(a(i)*dt); x(i) = x(i-1)+(v(i)*dt); end subplot (3,1,1), plot(x); xlabel (gca,' Position', 'FontSize', 18); title (['k=' num2str(k) '; m= ' num2str(m) '; b= ' num2str(b)],'fontsize', 18 ) subplot (3,1,2), plot(v); xlabel (gca,' Velocity', 'FontSize', 18); subplot (3,1,3), plot(a); xlabel (gca,' Acceleration', 'FontSize', 18); shg

32 Damped Mass-Spring

33 Analytic Solution of Damped Mass- Spring bw = b m = bw 2 e bw 2 t 33

34 Critical Damping Approaches rest position, but does not oscillate. Note that there is still a natural frequency (ω), even though there is no oscillation. = k m b =2 p mk 34

35 Damping Ratio If ratio = 1, damping is critical. = b 2 p mk 35

36 Damped Mass-Spring System: Time & Phase TIME SERIES PHASE PLANE TRAJECTORY 36

37 Damped Mass-Spring System: > velocity > > > > System reaches target regardless of initial conditions position Ex. Reaching for a cup from any starting position Equifinality > 37

38 Point Attractors The behavior of a damped mass-spring system is attracted to a single point in the phase plane called an equilibrium point. This type of system is governed by point attractor dynamics. Stability: Having reached its equilibrium point, a point attractor system will remain there if there are no disturbing forces. If perturbed away from its equilibrium point, the system will return to it. 38

Section 3.7: Mechanical and Electrical Vibrations

Section 3.7: Mechanical and Electrical Vibrations Section 3.7: Mechanical and Electrical Vibrations Second order linear equations with constant coefficients serve as mathematical models for mechanical and electrical oscillations. For example, the motion

More information

Harmonic motion. time 1 - A. Wednesday, September 30, 2009

Harmonic motion. time 1 - A. Wednesday, September 30, 2009 Harmonic motion time 1 2 3 4 5 - A x 0 + A + A Block resting on air hockey table, with a spring attaching it to the side of the table. Such systems are effectively frictionless. Block will oscillate about

More information

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Wednesday, March 9, 16

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Wednesday, March 9, 16 Perturbation Theory: Why do /i/ and /a/ have the formants they have? Components of Oscillation 1. Springs resist displacement from rest position springs return to rest position ẋ = k(x x 0 ) Stiffness

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

Articulatory Phonology

Articulatory Phonology Articulatory Phonology Catherine P. Browman Haskins Laboratories Louis Goldstein Yale University and Haskins Laboratories September 7, 2010 17:52 Rough draft. 1 Chapter 6 Introduction to Dynamical Systems

More information

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Tuesday, March 3, 15

Perturbation Theory: Why do /i/ and /a/ have the formants they have? Tuesday, March 3, 15 Perturbation Theory: Why do /i/ and /a/ have the formants they have? Vibration: Harmonic motion time 1 2 3 4 5 - A x 0 + A + A Block resting on air hockey table, with a spring attaching it to the side

More information

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc.

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

More information

Modeling Mechanical Systems

Modeling Mechanical Systems Modeling Mechanical Systems Mechanical systems can be either translational or rotational. Although the fundamental relationships for both types are derived from Newton s law, they are different enough

More information

Chapter 14 Oscillations

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

More information

2.4 Harmonic Oscillator Models

2.4 Harmonic Oscillator Models 2.4 Harmonic Oscillator Models In this section we give three important examples from physics of harmonic oscillator models. Such models are ubiquitous in physics, but are also used in chemistry, biology,

More information

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc.

Chapter 14 Oscillations. Copyright 2009 Pearson Education, Inc. Chapter 14 Oscillations Oscillations of a Spring Simple Harmonic Motion Energy in the Simple Harmonic Oscillator Simple Harmonic Motion Related to Uniform Circular Motion The Simple Pendulum The Physical

More information

2.4 Models of Oscillation

2.4 Models of Oscillation 2.4 Models of Oscillation In this section we give three examples of oscillating physical systems that can be modeled by the harmonic oscillator equation. Such models are ubiquitous in physics, but are

More information

Section Mass Spring Systems

Section Mass Spring Systems Asst. Prof. Hottovy SM212-Section 3.1. Section 5.1-2 Mass Spring Systems Name: Purpose: To investigate the mass spring systems in Chapter 5. Procedure: Work on the following activity with 2-3 other students

More information

Good Vibes: Introduction to Oscillations

Good Vibes: Introduction to Oscillations Good Vibes: Introduction to Oscillations Description: Several conceptual and qualitative questions related to main characteristics of simple harmonic motion: amplitude, displacement, period, frequency,

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

Chapter 12 Vibrations and Waves Simple Harmonic Motion page

Chapter 12 Vibrations and Waves Simple Harmonic Motion page Chapter 2 Vibrations and Waves 2- Simple Harmonic Motion page 438-45 Hooke s Law Periodic motion the object has a repeated motion that follows the same path, the object swings to and fro. Examples: a pendulum

More information

F = ma, F R + F S = mx.

F = ma, F R + F S = mx. Mechanical Vibrations As we mentioned in Section 3.1, linear equations with constant coefficients come up in many applications; in this section, we will specifically study spring and shock absorber systems

More information

Unforced Mechanical Vibrations

Unforced Mechanical Vibrations Unforced Mechanical Vibrations Today we begin to consider applications of second order ordinary differential equations. 1. Spring-Mass Systems 2. Unforced Systems: Damped Motion 1 Spring-Mass Systems We

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

Chapter 15. Oscillatory Motion

Chapter 15. Oscillatory Motion Chapter 15 Oscillatory Motion Part 2 Oscillations and Mechanical Waves Periodic motion is the repeating motion of an object in which it continues to return to a given position after a fixed time interval.

More information

Oscillations. Phys101 Lectures 28, 29. Key points: Simple Harmonic Motion (SHM) SHM Related to Uniform Circular Motion The Simple Pendulum

Oscillations. Phys101 Lectures 28, 29. Key points: Simple Harmonic Motion (SHM) SHM Related to Uniform Circular Motion The Simple Pendulum Phys101 Lectures 8, 9 Oscillations Key points: Simple Harmonic Motion (SHM) SHM Related to Uniform Circular Motion The Simple Pendulum Ref: 11-1,,3,4. Page 1 Oscillations of a Spring If an object oscillates

More information

Chapter One Introduction to Oscillations

Chapter One Introduction to Oscillations Chapter One Introduction to Oscillations This chapter discusses simple oscillations. This chapter also discusses simple functions to model oscillations like the sine and cosine functions. Part One Sine

More information

Oscillatory Motion. Solutions of Selected Problems

Oscillatory Motion. Solutions of Selected Problems Chapter 15 Oscillatory Motion. Solutions of Selected Problems 15.1 Problem 15.18 (In the text book) A block-spring system oscillates with an amplitude of 3.50 cm. If the spring constant is 250 N/m and

More information

Harmonic Oscillator. Outline. Oscillatory Motion or Simple Harmonic Motion. Oscillatory Motion or Simple Harmonic Motion

Harmonic Oscillator. Outline. Oscillatory Motion or Simple Harmonic Motion. Oscillatory Motion or Simple Harmonic Motion Harmonic Oscillator Mass-Spring Oscillator Resonance The Pendulum Physics 109, Class Period 13 Experiment Number 11 in the Physics 121 Lab Manual (page 65) Outline Simple harmonic motion The vertical mass-spring

More information

Name Lesson 7. Homework Work and Energy Problem Solving Outcomes

Name Lesson 7. Homework Work and Energy Problem Solving Outcomes Physics 1 Name Lesson 7. Homework Work and Energy Problem Solving Outcomes Date 1. Define work. 2. Define energy. 3. Determine the work done by a constant force. Period 4. Determine the work done by a

More information

Figure 1: Doing work on a block by pushing it across the floor.

Figure 1: Doing work on a block by pushing it across the floor. Work Let s imagine I have a block which I m pushing across the floor, shown in Figure 1. If I m moving the block at constant velocity, then I know that I have to apply a force to compensate the effects

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

Harmonic Oscillator. Mass-Spring Oscillator Resonance The Pendulum. Physics 109 Experiment Number 12

Harmonic Oscillator. Mass-Spring Oscillator Resonance The Pendulum. Physics 109 Experiment Number 12 Harmonic Oscillator Mass-Spring Oscillator Resonance The Pendulum Physics 109 Experiment Number 12 Outline Simple harmonic motion The vertical mass-spring system Driven oscillations and resonance The pendulum

More information

Power: Sources of Energy

Power: Sources of Energy Chapter 5 Energy Power: Sources of Energy Tidal Power SF Bay Tidal Power Project Main Ideas (Encyclopedia of Physics) Energy is an abstract quantity that an object is said to possess. It is not something

More information

Find the value of λ. (Total 9 marks)

Find the value of λ. (Total 9 marks) 1. A particle of mass 0.5 kg is attached to one end of a light elastic spring of natural length 0.9 m and modulus of elasticity λ newtons. The other end of the spring is attached to a fixed point O 3 on

More information

Periodic Motion. Periodic motion is motion of an object that. regularly repeats

Periodic Motion. Periodic motion is motion of an object that. regularly repeats Periodic Motion Periodic motion is motion of an object that regularly repeats The object returns to a given position after a fixed time interval A special kind of periodic motion occurs in mechanical systems

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

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

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

More information

Springs: Part I Modeling the Action The Mass/Spring System

Springs: Part I Modeling the Action The Mass/Spring System 17 Springs: Part I Second-order differential equations arise in a number of applications We saw one involving a falling object at the beginning of this text (the falling frozen duck example in section

More information

Good Vibes: Introduction to Oscillations

Good Vibes: Introduction to Oscillations Chapter 14 Solutions Good Vibes: Introduction to Oscillations Description: Several conceptual and qualitative questions related to main characteristics of simple harmonic motion: amplitude, displacement,

More information

Raymond A. Serway Chris Vuille. Chapter Thirteen. Vibrations and Waves

Raymond A. Serway Chris Vuille. Chapter Thirteen. Vibrations and Waves Raymond A. Serway Chris Vuille Chapter Thirteen Vibrations and Waves Periodic Motion and Waves Periodic motion is one of the most important kinds of physical behavior Will include a closer look at Hooke

More information

4.9 Free Mechanical Vibrations

4.9 Free Mechanical Vibrations 4.9 Free Mechanical Vibrations Spring-Mass Oscillator When the spring is not stretched and the mass m is at rest, the system is at equilibrium. Forces Acting in the System When the mass m is displaced

More information

Differential Equations

Differential Equations Differential Equations A differential equation (DE) is an equation which involves an unknown function f (x) as well as some of its derivatives. To solve a differential equation means to find the unknown

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

Power: Sources of Energy

Power: Sources of Energy Chapter 7: Energy Power: Sources of Energy Tidal Power SF Bay Tidal Power Project Main Ideas (Encyclopedia of Physics) Energy is an abstract quantity that an object is said to possess. It is not something

More information

Physics General Physics. Lecture 24 Oscillating Systems. Fall 2016 Semester Prof. Matthew Jones

Physics General Physics. Lecture 24 Oscillating Systems. Fall 2016 Semester Prof. Matthew Jones Physics 22000 General Physics Lecture 24 Oscillating Systems Fall 2016 Semester Prof. Matthew Jones 1 2 Oscillating Motion We have studied linear motion objects moving in straight lines at either constant

More information

Chapters 10 & 11: Energy

Chapters 10 & 11: Energy Chapters 10 & 11: Energy Power: Sources of Energy Tidal Power SF Bay Tidal Power Project Main Ideas (Encyclopedia of Physics) Energy is an abstract quantity that an object is said to possess. It is not

More information

for any object. Note that we use letter, m g, meaning gravitational

for any object. Note that we use letter, m g, meaning gravitational Lecture 4. orces, Newton's Second Law Last time we have started our discussion of Newtonian Mechanics and formulated Newton s laws. Today we shall closely look at the statement of the second law and consider

More information

Physics 41 HW Set 1 Chapter 15 Serway 8 th ( 7 th )

Physics 41 HW Set 1 Chapter 15 Serway 8 th ( 7 th ) Conceptual Q: 4 (7), 7 (), 8 (6) Physics 4 HW Set Chapter 5 Serway 8 th ( 7 th ) Q4(7) Answer (c). The equilibrium position is 5 cm below the starting point. The motion is symmetric about the equilibrium

More information

Lecture 1 Notes: 06 / 27. The first part of this class will primarily cover oscillating systems (harmonic oscillators and waves).

Lecture 1 Notes: 06 / 27. The first part of this class will primarily cover oscillating systems (harmonic oscillators and waves). Lecture 1 Notes: 06 / 27 The first part of this class will primarily cover oscillating systems (harmonic oscillators and waves). These systems are very common in nature - a system displaced from equilibrium

More information

PHYSICS. Chapter 15 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc.

PHYSICS. Chapter 15 Lecture FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E RANDALL D. KNIGHT Pearson Education, Inc. PHYSICS FOR SCIENTISTS AND ENGINEERS A STRATEGIC APPROACH 4/E Chapter 15 Lecture RANDALL D. KNIGHT Chapter 15 Oscillations IN THIS CHAPTER, you will learn about systems that oscillate in simple harmonic

More information

Chapter 14 Oscillations

Chapter 14 Oscillations Chapter 14 Oscillations Chapter Goal: To understand systems that oscillate with simple harmonic motion. Slide 14-2 Chapter 14 Preview Slide 14-3 Chapter 14 Preview Slide 14-4 Chapter 14 Preview Slide 14-5

More information

Vibrational Motion. Chapter 5. P. J. Grandinetti. Sep. 13, Chem P. J. Grandinetti (Chem. 4300) Vibrational Motion Sep.

Vibrational Motion. Chapter 5. P. J. Grandinetti. Sep. 13, Chem P. J. Grandinetti (Chem. 4300) Vibrational Motion Sep. Vibrational Motion Chapter 5 P. J. Grandinetti Chem. 4300 Sep. 13, 2017 P. J. Grandinetti (Chem. 4300) Vibrational Motion Sep. 13, 2017 1 / 20 Simple Harmonic Oscillator Simplest model for harmonic oscillator

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

W = F x W = Fx cosθ W = Fx. Work

W = F x W = Fx cosθ W = Fx. Work Ch 7 Energy & Work Work Work is a quantity that is useful in describing how objects interact with other objects. Work done by an agent exerting a constant force on an object is the product of the component

More information

3.4 Application-Spring Mass Systems (Unforced and frictionless systems)

3.4 Application-Spring Mass Systems (Unforced and frictionless systems) 3.4. APPLICATION-SPRING MASS SYSTEMS (UNFORCED AND FRICTIONLESS SYSTEMS)73 3.4 Application-Spring Mass Systems (Unforced and frictionless systems) Second order differential equations arise naturally when

More information

After the spring losses contact with both masses, the speed of m is the speed of 3m.

After the spring losses contact with both masses, the speed of m is the speed of 3m. Two masses, of size m and 3m, are at rest on a frictionless surface. A compressed, massless spring between the masses is suddenly allowed to uncompress, pushing the masses apart. m 3m After the spring

More information

PHYSICS - CLUTCH CH 15: PERIODIC MOTION (NEW)

PHYSICS - CLUTCH CH 15: PERIODIC MOTION (NEW) !! www.clutchprep.com CONCEPT: Hooke s Law & Springs When you push/pull against a spring (FA), spring pushes back in the direction. (Action-Reaction!) Fs = FA = Ex. 1: You push on a spring with a force

More information

Physics 4A Lab: Simple Harmonic Motion

Physics 4A Lab: Simple Harmonic Motion Name: Date: Lab Partner: Physics 4A Lab: Simple Harmonic Motion Objective: To investigate the simple harmonic motion associated with a mass hanging on a spring. To use hook s law and SHM graphs to calculate

More information

Physics 351, Spring 2017, Homework #2. Due at start of class, Friday, January 27, 2017

Physics 351, Spring 2017, Homework #2. Due at start of class, Friday, January 27, 2017 Physics 351, Spring 2017, Homework #2. Due at start of class, Friday, January 27, 2017 Course info is at positron.hep.upenn.edu/p351 When you finish this homework, remember to visit the feedback page at

More information

Chapter 14. Oscillations. Oscillations Introductory Terminology Simple Harmonic Motion:

Chapter 14. Oscillations. Oscillations Introductory Terminology Simple Harmonic Motion: Chapter 14 Oscillations Oscillations Introductory Terminology Simple Harmonic Motion: Kinematics Energy Examples of Simple Harmonic Oscillators Damped and Forced Oscillations. Resonance. Periodic Motion

More information

General Physics I Spring Oscillations

General Physics I Spring Oscillations General Physics I Spring 2011 Oscillations 1 Oscillations A quantity is said to exhibit oscillations if it varies with time about an equilibrium or reference value in a repetitive fashion. Oscillations

More information

Lectures Chapter 10 (Cutnell & Johnson, Physics 7 th edition)

Lectures Chapter 10 (Cutnell & Johnson, Physics 7 th edition) PH 201-4A spring 2007 Simple Harmonic Motion Lectures 24-25 Chapter 10 (Cutnell & Johnson, Physics 7 th edition) 1 The Ideal Spring Springs are objects that exhibit elastic behavior. It will return back

More information

Physics 161 Lecture 17 Simple Harmonic Motion. October 30, 2018

Physics 161 Lecture 17 Simple Harmonic Motion. October 30, 2018 Physics 161 Lecture 17 Simple Harmonic Motion October 30, 2018 1 Lecture 17: learning objectives Review from lecture 16 - Second law of thermodynamics. - In pv cycle process: ΔU = 0, Q add = W by gass

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

Ch 3.7: Mechanical & Electrical Vibrations

Ch 3.7: Mechanical & Electrical Vibrations Ch 3.7: Mechanical & Electrical Vibrations Two important areas of application for second order linear equations with constant coefficients are in modeling mechanical and electrical oscillations. We will

More information

The object of this experiment is to study systems undergoing simple harmonic motion.

The object of this experiment is to study systems undergoing simple harmonic motion. Chapter 9 Simple Harmonic Motion 9.1 Purpose The object of this experiment is to study systems undergoing simple harmonic motion. 9.2 Introduction This experiment will develop your ability to perform calculations

More information

Chapters 10 & 11: Energy

Chapters 10 & 11: Energy Chapters 10 & 11: Energy Power: Sources of Energy Tidal Power SF Bay Tidal Power Project Main Ideas (Encyclopedia of Physics) Energy is an abstract quantity that an object is said to possess. It is not

More information

Simple Harmonic Motion: A Special Periodic Motion

Simple Harmonic Motion: A Special Periodic Motion Simple Harmonic Motion: A Special Periodic Motion Bởi: OpenStaxCollege The oscillations of a system in which the net force can be described by Hooke s law are of special importance, because they are very

More information

Aircraft Dynamics First order and Second order system

Aircraft Dynamics First order and Second order system Aircraft Dynamics First order and Second order system Prepared by A.Kaviyarasu Assistant Professor Department of Aerospace Engineering Madras Institute Of Technology Chromepet, Chennai Aircraft dynamic

More information

Lecture 18. In other words, if you double the stress, you double the resulting strain.

Lecture 18. In other words, if you double the stress, you double the resulting strain. Lecture 18 Stress and Strain and Springs Simple Harmonic Motion Cutnell+Johnson: 10.1-10.4,10.7-10.8 Stress and Strain and Springs So far we ve dealt with rigid objects. A rigid object doesn t change shape

More information

28. Pendulum phase portrait Draw the phase portrait for the pendulum (supported by an inextensible rod)

28. Pendulum phase portrait Draw the phase portrait for the pendulum (supported by an inextensible rod) 28. Pendulum phase portrait Draw the phase portrait for the pendulum (supported by an inextensible rod) θ + ω 2 sin θ = 0. Indicate the stable equilibrium points as well as the unstable equilibrium points.

More information

TOPIC E: OSCILLATIONS EXAMPLES SPRING Q1. Find general solutions for the following differential equations:

TOPIC E: OSCILLATIONS EXAMPLES SPRING Q1. Find general solutions for the following differential equations: TOPIC E: OSCILLATIONS EXAMPLES SPRING 2019 Mathematics of Oscillating Systems Q1. Find general solutions for the following differential equations: Undamped Free Vibration Q2. A 4 g mass is suspended by

More information

Math 1302, Week 8: Oscillations

Math 1302, Week 8: Oscillations Math 302, Week 8: Oscillations T y eq Y y = y eq + Y mg Figure : Simple harmonic motion. At equilibrium the string is of total length y eq. During the motion we let Y be the extension beyond equilibrium,

More information

Mechanical Energy and Simple Harmonic Oscillator

Mechanical Energy and Simple Harmonic Oscillator Mechanical Energy and Simple Harmonic Oscillator Simple Harmonic Motion Hooke s Law Define system, choose coordinate system. Draw free-body diagram. Hooke s Law! F spring =!kx ˆi! kx = d x m dt Checkpoint

More information

WAVES & SIMPLE HARMONIC MOTION

WAVES & SIMPLE HARMONIC MOTION PROJECT WAVES & SIMPLE HARMONIC MOTION EVERY WAVE, REGARDLESS OF HOW HIGH AND FORCEFUL IT CRESTS, MUST EVENTUALLY COLLAPSE WITHIN ITSELF. - STEFAN ZWEIG What s a Wave? A wave is a wiggle in time and space

More information

Chapter 15 Oscillations

Chapter 15 Oscillations Chapter 15 Oscillations Summary Simple harmonic motion Hook s Law Energy F = kx Pendulums: Simple. Physical, Meter stick Simple Picture of an Oscillation x Frictionless surface F = -kx x SHM in vertical

More information

11/17/10. Chapter 14. Oscillations. Chapter 14. Oscillations Topics: Simple Harmonic Motion. Simple Harmonic Motion

11/17/10. Chapter 14. Oscillations. Chapter 14. Oscillations Topics: Simple Harmonic Motion. Simple Harmonic Motion 11/17/10 Chapter 14. Oscillations This striking computergenerated image demonstrates an important type of motion: oscillatory motion. Examples of oscillatory motion include a car bouncing up and down,

More information

Chapter 14 Periodic Motion

Chapter 14 Periodic Motion Chapter 14 Periodic Motion 1 Describing Oscillation First, we want to describe the kinematical and dynamical quantities associated with Simple Harmonic Motion (SHM), for example, x, v x, a x, and F x.

More information

Oscillatory Motion SHM

Oscillatory Motion SHM Chapter 15 Oscillatory Motion SHM Dr. Armen Kocharian Periodic Motion Periodic motion is motion of an object that regularly repeats The object returns to a given position after a fixed time interval A

More information

If there is now a constant air resistance force of 35 N, what is the new maximum height the ball attains?

If there is now a constant air resistance force of 35 N, what is the new maximum height the ball attains? A 1kg ball is launched straight up into the air with an initial speed of 64 m/s. Using only energy considerations, determine the maximum height the ball attains assuming there is no air resistance. If

More information

Unit 7: Oscillations

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

More information

= y(x, t) =A cos (!t + kx)

= y(x, t) =A cos (!t + kx) A harmonic wave propagates horizontally along a taut string of length L = 8.0 m and mass M = 0.23 kg. The vertical displacement of the string along its length is given by y(x, t) = 0. m cos(.5 t + 0.8

More information

Lab 16 Forces: Hooke s Law

Lab 16 Forces: Hooke s Law Lab 16 Forces: Hooke s Law Name Partner s Name 1. Introduction/Theory Consider Figure 1a, which shows a spring in its equilibrium position that is, the spring is neither compressed nor stretched. If we

More information

Elastic Potential Energy and Conservation of Mechanical Energy

Elastic Potential Energy and Conservation of Mechanical Energy Elastic Potential Energy and Conservation of Mechanical Energy Level : Physics I Instructor : Kim Hook s Law Springs are familiar objects that have many applications, ranging from push-button switches

More information

11. (7 points: Choose up to 3 answers) What is the tension,!, in the string? a.! = 0.10 N b.! = 0.21 N c.! = 0.29 N d.! = N e.! = 0.

11. (7 points: Choose up to 3 answers) What is the tension,!, in the string? a.! = 0.10 N b.! = 0.21 N c.! = 0.29 N d.! = N e.! = 0. A harmonic wave propagates horizontally along a taut string of length! = 8.0 m and mass! = 0.23 kg. The vertical displacement of the string along its length is given by!!,! = 0.1!m cos 1.5!!! +!0.8!!,

More information

Chapter 12. Recall that when a spring is stretched a distance x, it will pull back with a force given by: F = -kx

Chapter 12. Recall that when a spring is stretched a distance x, it will pull back with a force given by: F = -kx Chapter 1 Lecture Notes Chapter 1 Oscillatory Motion Recall that when a spring is stretched a distance x, it will pull back with a force given by: F = -kx When the mass is released, the spring will pull

More information

Section 11.1 What is a Differential Equation?

Section 11.1 What is a Differential Equation? 1 Section 11.1 What is a Differential Equation? Example 1 Suppose a ball is dropped from the top of a building of height 50 meters. Let h(t) denote the height of the ball after t seconds, then it is known

More information

KINEMATICS & DYNAMICS

KINEMATICS & DYNAMICS KINEMATICS & DYNAMICS BY ADVANCED DIFFERENTIAL EQUATIONS Question (**+) In this question take g = 0 ms. A particle of mass M kg is released from rest from a height H m, and allowed to fall down through

More information

Chapter 15 Periodic Motion

Chapter 15 Periodic Motion Chapter 15 Periodic Motion Slide 1-1 Chapter 15 Periodic Motion Concepts Slide 1-2 Section 15.1: Periodic motion and energy Section Goals You will learn to Define the concepts of periodic motion, vibration,

More information

11. Some applications of second order differential

11. Some applications of second order differential October 3, 2011 11-1 11. Some applications of second order differential equations The first application we consider is the motion of a mass on a spring. Consider an object of mass m on a spring suspended

More information

Oscillations. Simple Harmonic Motion (SHM) Position, Velocity, Acceleration SHM Forces SHM Energy Period of oscillation Damping and Resonance

Oscillations. Simple Harmonic Motion (SHM) Position, Velocity, Acceleration SHM Forces SHM Energy Period of oscillation Damping and Resonance Oscillations Simple Harmonic Motion (SHM) Position, Velocity, Acceleration SHM Forces SHM Energy Period of oscillation Damping and Resonance 1 Revision problem Please try problem #31 on page 480 A pendulum

More information

Simple Harmonic Motion Concept Questions

Simple Harmonic Motion Concept Questions Simple Harmonic Motion Concept Questions Question 1 Which of the following functions x(t) has a second derivative which is proportional to the negative of the function d x! " x? dt 1 1. x( t ) = at. x(

More information

AP Mechanics Summer Assignment

AP Mechanics Summer Assignment 2012-2013 AP Mechanics Summer Assignment To be completed in summer Submit for grade in September Name: Date: Equations: Kinematics (For #1 and #2 questions: use following equations only. Need to show derivation

More information

Chapter 11 Vibrations and Waves

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

More information

Chapter 13, Vibrations and Waves. 1. A large spring requires a force of 150 N to compress it only m. What is the spring constant of the spring?

Chapter 13, Vibrations and Waves. 1. A large spring requires a force of 150 N to compress it only m. What is the spring constant of the spring? CHAPTER 13 1. A large spring requires a force of 150 N to compress it only 0.010 m. What is the spring constant of the spring? a. 125 000 N/m b. 15 000 N/m c. 15 N/m d. 1.5 N/m 2. A 0.20-kg object is attached

More information

21.55 Worksheet 7 - preparation problems - question 1:

21.55 Worksheet 7 - preparation problems - question 1: Dynamics 76. Worksheet 7 - preparation problems - question : A coupled oscillator with two masses m and positions x (t) and x (t) is described by the following equations of motion: ẍ x + 8x ẍ x +x A. Write

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

Wheel and Axle. Author: Joseph Harrison. Research Ans Aerospace Engineering 1 Expert, Monash University

Wheel and Axle. Author: Joseph Harrison. Research Ans Aerospace Engineering 1 Expert, Monash University Wheel and Axle Author: Joseph Harrison British Middle-East Center for studies & Research info@bmcsr.com http:// bmcsr.com Research Ans Aerospace Engineering 1 Expert, Monash University Introduction A solid

More information

Chapter 6: Work and Kinetic Energy

Chapter 6: Work and Kinetic Energy Chapter 6: Work and Kinetic Energy Suppose you want to find the final velocity of an object being acted on by a variable force. Newton s 2 nd law gives the differential equation (for 1D motion) dv dt =

More information

Question 8.1 Sign of the Energy II

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

More information

First Year Physics: Prelims CP1 Classical Mechanics: DR. Ghassan Yassin

First Year Physics: Prelims CP1 Classical Mechanics: DR. Ghassan Yassin First Year Physics: Prelims CP1 Classical Mechanics: DR. Ghassan Yassin MT 2007 Problems I The problems are divided into two sections: (A) Standard and (B) Harder. The topics are covered in lectures 1

More information

Seminary 3 and 4 Work, energy, momentum and conservation laws

Seminary 3 and 4 Work, energy, momentum and conservation laws Seminary 3 and 4 Work, energy, momentum and conservation laws SEMINARY 3 The unsolved problems are given as homework. 1/ Work, Kinetic, Potential, Total Energy. Conservation laws DISCUSSION: Briefly remember

More information

Simple Harmonic Motion Test Tuesday 11/7

Simple Harmonic Motion Test Tuesday 11/7 Simple Harmonic Motion Test Tuesday 11/7 Chapter 11 Vibrations and Waves 1 If an object vibrates or oscillates back and forth over the same path, each cycle taking the same amount of time, the motion is

More information

Balanced forces do not cause an object to change its motion Moving objects will keep moving and stationary objects will stay stationary

Balanced forces do not cause an object to change its motion Moving objects will keep moving and stationary objects will stay stationary Newton s Laws Test 8.PS2.3) Create a demonstration of an object in motion and describe the position, force, and direction of the object. 8.PS2.4) Plan and conduct an investigation to provide evidence that

More information