6.003 Homework 1. Problems. Due at the beginning of recitation on Wednesday, February 10, 2010.

Size: px
Start display at page:

Download "6.003 Homework 1. Problems. Due at the beginning of recitation on Wednesday, February 10, 2010."

Transcription

1 6.003 Homework Due a he beginning of reciaion on Wednesday, February 0, 200. Problems. Independen and Dependen Variables Assume ha he heigh of a waer wave is given by g(x v) where x is disance, v is velociy, and is ime. Assume ha he heigh of he wave is a sinusoidal funcion of disance a each insan of ime. Also assume ha he posiive peaks have a heigh of meer (relaive o he average waer level) and ha hey occur a ineger muliples of 2 meers when he ime = 3 seconds. a. Deermine an expression for he heigh of he wave h(x, ) as a funcion of disance x and ime if he wave is raveling in he posiive x direcion a 5 meers/second. Wha is he funcion g( ) for his case? b. Deermine an expression for he heigh of he wave h(x, ) as a funcion of disance x and ime if he wave is raveling in he negaive x direcion a 4 meers/second. Wha is he funcion g( ) for his case? c. Deermine he speed of he wave if successive posiive peaks a x =.3 meers are separaed by 0.75 seconds. 2. Even and Odd The even and odd pars of a signal x[n] are defined by he following: x e [ n] = x e [n] (i.e., x e is an even funcion of n) x o [ n] = x o [n] (i.e., x o is an odd funcion of n) x[n] = x e [n] + x o [n] Le x represen he signal whose samples are given by { ( x[n] = ) n 2 n 0. 0 oherwise a. Deermine he even and odd pars of he signal x. b. Show ha your answer in par a is unique. c. Plo he resuls of par a. 3. Geomeric sums a. Expand in a power series. For wha range of a does your answer converge? a

2 6.003 Homework / Spring N n b. Find a closed-form expression for a. For wha range of a does your answer converge? c. Expand ( a) 2 n=0 in a power series. For wha range of a does your answer converge? 4. Reconsrucing CT Signals from Samples Le a(), b(), and c() represen he following funcions of ime. a() b() c() Le x c () represen a coninuous-ime signal derived from he discree-ime signal x d [n] using a zero-order hold, as illusraed below, where consecuive samples of x d are sepa raed by T seconds in x c. x d [n] x c () x d [0] x d [] n 0 2T 4T 6T 8T 0T a. Deermine an expression for x c () in erms of he samples x d [n] and he funcions a(), b(), and c(). Le y c () represen a coninuous-ime signal derived from he discree-ime signal y d [n] using a piecewise linear inerpolaor, so ha sucessive samples of y d are conneced by sraigh line segmens. y d [n] y c () y d [0] y d [] n 0 2T 4T 6T 8T 0T b. Deermine an expression for y c () in erms of he samples y d [n] and he funcions a(), b(), and c(). c. Deermine an expression for dy c() in erms of he samples yd [n] and he funcions d a(), b(), and c(). 5. Missing Parameers Consider he following sysem.

3 6.003 Homework / Spring X R + α β 2 3R R Y Assume ha X is he uni-sample signal, x[n] = δ[n]. Deermine he values of α and β for which y[n] is he following sequence (i.e., y[0], y[], y[2],...): ,,,,, , Engineering Design Problems 6. Choosing a bank Consider wo banks. Bank # offers a 3% annual ineres rae, bu charges a $ service charge each year, including he year when he accoun was opened. Bank #2 offers a 2% annual ineres rae, and has no annual service charge. Le y i [n] represen he balance in bank i a he beginning of year n and x i [n] represen he amoun of money you deposi in bank i during year n. Assume ha deposis during year n are credied o he balance a he end of ha year bu earn no ineres unil he following year. a. Use difference equaions o express he relaion beween deposis and balances for each bank. b. Assume ha you deposi $00 in each bank and make no furher deposis. Solve your difference equaions in par a numerically (using Malab, Ocave, or Pyhon) o deermine your balance in each bank for he nex 25 years. Make a plo of hese balances. Which accoun has he larger balance 5 years afer he iniial invesmen (one year wihou ineres and 4 years wih ineres). Which accoun has he larger balance afer 25 years (i.e., a he beginning of he 26 h year) [Hin: See he Appendix for help wih programming.] 7. Drug dosing When drugs are used o rea a medical condiion, docors ofen recommend saring wih a higher dose on he firs day han on subsequen days. In his problem, we consider a simple model o undersand why. Assume ha he human body is a ank of blood and ha drugs insanly dissolve in he blood when ingesed. Furher assume ha drug vanishes from he blood (eiher because i is broken down or because i is flushed by he kidneys) a a rae ha is proporional o drug concenraion. Le x[n] represen he amoun of drug aken on day n, and le y[n] represen he oal amoun of drug in he blood on day n, jus afer he dose x[n] has dissolved in he blood, so ha y[n] = x[n] + αy[n ].

4 6.003 Homework / Spring 200 a. Deermine he amoun of drug in he blood ha would resul afer aking one uni of drug each day for many consecuive days, i.e., deermine lim n y[n] when x[n] =. b. Assume ha here is iniially no drug in he blood. Then, saring on day 0, one uni of drug is aken each day. Deermine he firs day when he amoun of drug in he blood will equal or exceed half of is final value. c. Consider he following able of doses and resuling amoun of drug in he blood: n x[n] y[n] Noice ha he blood concenraion ramps up over he firs few days. Sugges a differen iniial dose x[0] ha will resul in a more consan amoun of drug in he blood (wih x[n] remaining a for all n ). Make a able o show your resul. 4

5 Appendix: Fibonacci code You may use Pyhon and/or Malab/Ocave o solve problems in his homework assignmen. Ocave is a free-sofware linear-algebra solver, wih a synax ha is similar o ha of Malab. Ocave is available for mos plaforms. See The following code calculaes, prins, and plos he firs 20 Fibonacci numbers (i.e., f[0] hrough f[9]). Example Malab/Ocave code y() = ; % iniial condiions y(2) = ; % indices sar a (no 0) for i = 3:20 y(i) = y(i-)+y(i-2) end y % prin y sem(0:9,y) Example Pyhon code from pylab impor * y = [,] for i in range(2,20): y.append(y[i-]+y[i-2]) prin y sem(range(20),y) show() # iniial condiions

6 MIT OpenCourseWare hp://ocw.mi.edu Signals and Sysems Spring 200 For informaion abou ciing hese maerials or our Terms of Use, visi: hp://ocw.mi.edu/erms.

4.5 Constant Acceleration

4.5 Constant Acceleration 4.5 Consan Acceleraion v() v() = v 0 + a a() a a() = a v 0 Area = a (a) (b) Figure 4.8 Consan acceleraion: (a) velociy, (b) acceleraion When he x -componen of he velociy is a linear funcion (Figure 4.8(a)),

More information

KINEMATICS IN ONE DIMENSION

KINEMATICS IN ONE DIMENSION KINEMATICS IN ONE DIMENSION PREVIEW Kinemaics is he sudy of how hings move how far (disance and displacemen), how fas (speed and velociy), and how fas ha how fas changes (acceleraion). We say ha an objec

More information

6.003 Homework #9 Solutions

6.003 Homework #9 Solutions 6.00 Homework #9 Soluions Problems. Fourier varieies a. Deermine he Fourier series coefficiens of he following signal, which is periodic in 0. x () 0 0 a 0 5 a k sin πk 5 sin πk 5 πk for k 0 a k 0 πk j

More information

Lecture 2-1 Kinematics in One Dimension Displacement, Velocity and Acceleration Everything in the world is moving. Nothing stays still.

Lecture 2-1 Kinematics in One Dimension Displacement, Velocity and Acceleration Everything in the world is moving. Nothing stays still. Lecure - Kinemaics in One Dimension Displacemen, Velociy and Acceleraion Everyhing in he world is moving. Nohing says sill. Moion occurs a all scales of he universe, saring from he moion of elecrons in

More information

IB Physics Kinematics Worksheet

IB Physics Kinematics Worksheet IB Physics Kinemaics Workshee Wrie full soluions and noes for muliple choice answers. Do no use a calculaor for muliple choice answers. 1. Which of he following is a correc definiion of average acceleraion?

More information

6.003: Signals and Systems. Relations among Fourier Representations

6.003: Signals and Systems. Relations among Fourier Representations 6.003: Signals and Sysems Relaions among Fourier Represenaions April 22, 200 Mid-erm Examinaion #3 W ednesday, April 28, 7:30-9:30pm. No reciaions on he day of he exam. Coverage: Lecures 20 Reciaions 20

More information

Kinematics Vocabulary. Kinematics and One Dimensional Motion. Position. Coordinate System in One Dimension. Kinema means movement 8.

Kinematics Vocabulary. Kinematics and One Dimensional Motion. Position. Coordinate System in One Dimension. Kinema means movement 8. Kinemaics Vocabulary Kinemaics and One Dimensional Moion 8.1 WD1 Kinema means movemen Mahemaical descripion of moion Posiion Time Inerval Displacemen Velociy; absolue value: speed Acceleraion Averages

More information

3.6 Derivatives as Rates of Change

3.6 Derivatives as Rates of Change 3.6 Derivaives as Raes of Change Problem 1 John is walking along a sraigh pah. His posiion a he ime >0 is given by s = f(). He sars a =0from his house (f(0) = 0) and he graph of f is given below. (a) Describe

More information

APPM 2360 Homework Solutions, Due June 10

APPM 2360 Homework Solutions, Due June 10 2.2.2: Find general soluions for he equaion APPM 2360 Homework Soluions, Due June 10 Soluion: Finding he inegraing facor, dy + 2y = 3e µ) = e 2) = e 2 Muliplying he differenial equaion by he inegraing

More information

Lab #2: Kinematics in 1-Dimension

Lab #2: Kinematics in 1-Dimension Reading Assignmen: Chaper 2, Secions 2-1 hrough 2-8 Lab #2: Kinemaics in 1-Dimension Inroducion: The sudy of moion is broken ino wo main areas of sudy kinemaics and dynamics. Kinemaics is he descripion

More information

4.6 One Dimensional Kinematics and Integration

4.6 One Dimensional Kinematics and Integration 4.6 One Dimensional Kinemaics and Inegraion When he acceleraion a( of an objec is a non-consan funcion of ime, we would like o deermine he ime dependence of he posiion funcion x( and he x -componen of

More information

Chapter 15: Phenomena. Chapter 15 Chemical Kinetics. Reaction Rates. Reaction Rates R P. Reaction Rates. Rate Laws

Chapter 15: Phenomena. Chapter 15 Chemical Kinetics. Reaction Rates. Reaction Rates R P. Reaction Rates. Rate Laws Chaper 5: Phenomena Phenomena: The reacion (aq) + B(aq) C(aq) was sudied a wo differen emperaures (98 K and 35 K). For each emperaure he reacion was sared by puing differen concenraions of he 3 species

More information

Math 333 Problem Set #2 Solution 14 February 2003

Math 333 Problem Set #2 Solution 14 February 2003 Mah 333 Problem Se #2 Soluion 14 February 2003 A1. Solve he iniial value problem dy dx = x2 + e 3x ; 2y 4 y(0) = 1. Soluion: This is separable; we wrie 2y 4 dy = x 2 + e x dx and inegrae o ge The iniial

More information

Module 2 F c i k c s la l w a s o s f dif di fusi s o i n

Module 2 F c i k c s la l w a s o s f dif di fusi s o i n Module Fick s laws of diffusion Fick s laws of diffusion and hin film soluion Adolf Fick (1855) proposed: d J α d d d J (mole/m s) flu (m /s) diffusion coefficien and (mole/m 3 ) concenraion of ions, aoms

More information

15. Vector Valued Functions

15. Vector Valued Functions 1. Vecor Valued Funcions Up o his poin, we have presened vecors wih consan componens, for example, 1, and,,4. However, we can allow he componens of a vecor o be funcions of a common variable. For example,

More information

Vehicle Arrival Models : Headway

Vehicle Arrival Models : Headway Chaper 12 Vehicle Arrival Models : Headway 12.1 Inroducion Modelling arrival of vehicle a secion of road is an imporan sep in raffic flow modelling. I has imporan applicaion in raffic flow simulaion where

More information

Motion along a Straight Line

Motion along a Straight Line chaper 2 Moion along a Sraigh Line verage speed and average velociy (Secion 2.2) 1. Velociy versus speed Cone in he ebook: fer Eample 2. Insananeous velociy and insananeous acceleraion (Secions 2.3, 2.4)

More information

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 1-3

Unit 1 Test Review Physics Basics, Movement, and Vectors Chapters 1-3 A.P. Physics B Uni 1 Tes Reiew Physics Basics, Moemen, and Vecors Chapers 1-3 * In sudying for your es, make sure o sudy his reiew shee along wih your quizzes and homework assignmens. Muliple Choice Reiew:

More information

Solutions to Assignment 1

Solutions to Assignment 1 MA 2326 Differenial Equaions Insrucor: Peronela Radu Friday, February 8, 203 Soluions o Assignmen. Find he general soluions of he following ODEs: (a) 2 x = an x Soluion: I is a separable equaion as we

More information

In this chapter the model of free motion under gravity is extended to objects projected at an angle. When you have completed it, you should

In this chapter the model of free motion under gravity is extended to objects projected at an angle. When you have completed it, you should Cambridge Universiy Press 978--36-60033-7 Cambridge Inernaional AS and A Level Mahemaics: Mechanics Coursebook Excerp More Informaion Chaper The moion of projeciles In his chaper he model of free moion

More information

AP Calculus BC Chapter 10 Part 1 AP Exam Problems

AP Calculus BC Chapter 10 Part 1 AP Exam Problems AP Calculus BC Chaper Par AP Eam Problems All problems are NO CALCULATOR unless oherwise indicaed Parameric Curves and Derivaives In he y plane, he graph of he parameric equaions = 5 + and y= for, is a

More information

Of all of the intellectual hurdles which the human mind has confronted and has overcome in the last fifteen hundred years, the one which seems to me

Of all of the intellectual hurdles which the human mind has confronted and has overcome in the last fifteen hundred years, the one which seems to me Of all of he inellecual hurdles which he human mind has confroned and has overcome in he las fifeen hundred years, he one which seems o me o have been he mos amazing in characer and he mos supendous in

More information

- Graphing: Position Velocity. Acceleration

- Graphing: Position Velocity. Acceleration Tes Wednesday, Jan 31 in 101 Clark Hall a 7PM Main Ideas in Class Today - Graphing: Posiion Velociy v avg = x f f x i i a avg = v f f v i i Acceleraion Pracice ess & key online. Tes over maerial up o secion

More information

Some Basic Information about M-S-D Systems

Some Basic Information about M-S-D Systems Some Basic Informaion abou M-S-D Sysems 1 Inroducion We wan o give some summary of he facs concerning unforced (homogeneous) and forced (non-homogeneous) models for linear oscillaors governed by second-order,

More information

2.1: What is physics? Ch02: Motion along a straight line. 2.2: Motion. 2.3: Position, Displacement, Distance

2.1: What is physics? Ch02: Motion along a straight line. 2.2: Motion. 2.3: Position, Displacement, Distance Ch: Moion along a sraigh line Moion Posiion and Displacemen Average Velociy and Average Speed Insananeous Velociy and Speed Acceleraion Consan Acceleraion: A Special Case Anoher Look a Consan Acceleraion

More information

Class Meeting # 10: Introduction to the Wave Equation

Class Meeting # 10: Introduction to the Wave Equation MATH 8.5 COURSE NOTES - CLASS MEETING # 0 8.5 Inroducion o PDEs, Fall 0 Professor: Jared Speck Class Meeing # 0: Inroducion o he Wave Equaion. Wha is he wave equaion? The sandard wave equaion for a funcion

More information

6.003: Signals and Systems

6.003: Signals and Systems 6.003: Signals and Sysems Relaions among Fourier Represenaions November 5, 20 Mid-erm Examinaion #3 Wednesday, November 6, 7:30-9:30pm, No reciaions on he day of he exam. Coverage: Lecures 8 Reciaions

More information

UCLA: Math 3B Problem set 3 (solutions) Fall, 2018

UCLA: Math 3B Problem set 3 (solutions) Fall, 2018 UCLA: Mah 3B Problem se 3 (soluions) Fall, 28 This problem se concenraes on pracice wih aniderivaives. You will ge los of pracice finding simple aniderivaives as well as finding aniderivaives graphically

More information

UNIT #4 TEST REVIEW EXPONENTIAL AND LOGARITHMIC FUNCTIONS

UNIT #4 TEST REVIEW EXPONENTIAL AND LOGARITHMIC FUNCTIONS Name: Par I Quesions UNIT #4 TEST REVIEW EXPONENTIAL AND LOGARITHMIC FUNCTIONS Dae: 1. The epression 1 is equivalen o 1 () () 6. The eponenial funcion y 16 could e rewrien as y () y 4 () y y. The epression

More information

6.003 Homework #1. Problems. Due at the beginning of recitation on September 14, 2011.

6.003 Homework #1. Problems. Due at the beginning of recitation on September 14, 2011. 6.003 Homework #1 Due at the beginning of recitation on September 14, 2011. Problems 1. Solving differential equations Solve the following differential equation y(t) + 3 dy(t) + 2 d2 y(t) = 1 dt dt 2 for

More information

5.1 - Logarithms and Their Properties

5.1 - Logarithms and Their Properties Chaper 5 Logarihmic Funcions 5.1 - Logarihms and Their Properies Suppose ha a populaion grows according o he formula P 10, where P is he colony size a ime, in hours. When will he populaion be 2500? We

More information

1. VELOCITY AND ACCELERATION

1. VELOCITY AND ACCELERATION 1. VELOCITY AND ACCELERATION 1.1 Kinemaics Equaions s = u + 1 a and s = v 1 a s = 1 (u + v) v = u + as 1. Displacemen-Time Graph Gradien = speed 1.3 Velociy-Time Graph Gradien = acceleraion Area under

More information

Physics 20 Lesson 5 Graphical Analysis Acceleration

Physics 20 Lesson 5 Graphical Analysis Acceleration Physics 2 Lesson 5 Graphical Analysis Acceleraion I. Insananeous Velociy From our previous work wih consan speed and consan velociy, we know ha he slope of a posiion-ime graph is equal o he velociy of

More information

Solution: b All the terms must have the dimension of acceleration. We see that, indeed, each term has the units of acceleration

Solution: b All the terms must have the dimension of acceleration. We see that, indeed, each term has the units of acceleration PHYS 54 Tes Pracice Soluions Spring 8 Q: [4] Knowing ha in he ne epression a is acceleraion, v is speed, is posiion and is ime, from a dimensional v poin of view, he equaion a is a) incorrec b) correc

More information

Physics 221 Fall 2008 Homework #2 Solutions Ch. 2 Due Tues, Sept 9, 2008

Physics 221 Fall 2008 Homework #2 Solutions Ch. 2 Due Tues, Sept 9, 2008 Physics 221 Fall 28 Homework #2 Soluions Ch. 2 Due Tues, Sep 9, 28 2.1 A paricle moving along he x-axis moves direcly from posiion x =. m a ime =. s o posiion x = 1. m by ime = 1. s, and hen moves direcly

More information

PHYSICS 149: Lecture 9

PHYSICS 149: Lecture 9 PHYSICS 149: Lecure 9 Chaper 3 3.2 Velociy and Acceleraion 3.3 Newon s Second Law of Moion 3.4 Applying Newon s Second Law 3.5 Relaive Velociy Lecure 9 Purdue Universiy, Physics 149 1 Velociy (m/s) The

More information

CHEAPEST PMT ONLINE TEST SERIES AIIMS/NEET TOPPER PREPARE QUESTIONS

CHEAPEST PMT ONLINE TEST SERIES AIIMS/NEET TOPPER PREPARE QUESTIONS CHEAPEST PMT ONLINE TEST SERIES AIIMS/NEET TOPPER PREPARE QUESTIONS For more deails see las page or conac @aimaiims.in Physics Mock Tes Paper AIIMS/NEET 07 Physics 06 Saurday Augus 0 Uni es : Moion in

More information

EXERCISES FOR SECTION 1.5

EXERCISES FOR SECTION 1.5 1.5 Exisence and Uniqueness of Soluions 43 20. 1 v c 21. 1 v c 1 2 4 6 8 10 1 2 2 4 6 8 10 Graph of approximae soluion obained using Euler s mehod wih = 0.1. Graph of approximae soluion obained using Euler

More information

Practicing Problem Solving and Graphing

Practicing Problem Solving and Graphing Pracicing Problem Solving and Graphing Tes 1: Jan 30, 7pm, Ming Hsieh G20 The Bes Ways To Pracice for Tes Bes If need more, ry suggesed problems from each new opic: Suden Response Examples A pas opic ha

More information

AP CALCULUS AB 2003 SCORING GUIDELINES (Form B)

AP CALCULUS AB 2003 SCORING GUIDELINES (Form B) SCORING GUIDELINES (Form B) Quesion A blood vessel is 6 millimeers (mm) long Disance wih circular cross secions of varying diameer. x (mm) 6 8 4 6 Diameer The able above gives he measuremens of he B(x)

More information

Simulation-Solving Dynamic Models ABE 5646 Week 2, Spring 2010

Simulation-Solving Dynamic Models ABE 5646 Week 2, Spring 2010 Simulaion-Solving Dynamic Models ABE 5646 Week 2, Spring 2010 Week Descripion Reading Maerial 2 Compuer Simulaion of Dynamic Models Finie Difference, coninuous saes, discree ime Simple Mehods Euler Trapezoid

More information

Ground Rules. PC1221 Fundamentals of Physics I. Kinematics. Position. Lectures 3 and 4 Motion in One Dimension. A/Prof Tay Seng Chuan

Ground Rules. PC1221 Fundamentals of Physics I. Kinematics. Position. Lectures 3 and 4 Motion in One Dimension. A/Prof Tay Seng Chuan Ground Rules PC11 Fundamenals of Physics I Lecures 3 and 4 Moion in One Dimension A/Prof Tay Seng Chuan 1 Swich off your handphone and pager Swich off your lapop compuer and keep i No alking while lecure

More information

EQUATIONS REVIEW I Lesson Notes. Example 1. Example 2. Equations Review. 5 2 x = 1 6. Simple Equations

EQUATIONS REVIEW I Lesson Notes. Example 1. Example 2.  Equations Review. 5 2 x = 1 6. Simple Equations Equaions Review x + 3 = 6 EQUATIONS REVIEW I Example Simple Equaions a) a - 7 = b) m - 9 = -7 c) 6r = 4 d) 7 = -9x Example Simple Equaions a) 6p + = 4 b) 4 = 3k + 6 c) 9 + k = + 3k d) 8-3n = -8n + 3 EQUATIONS

More information

Phys1112: DC and RC circuits

Phys1112: DC and RC circuits Name: Group Members: Dae: TA s Name: Phys1112: DC and RC circuis Objecives: 1. To undersand curren and volage characerisics of a DC RC discharging circui. 2. To undersand he effec of he RC ime consan.

More information

2. What is the displacement of the bug between t = 0.00 s and t = 20.0 s? A) cm B) 39.9 cm C) cm D) 16.1 cm E) +16.

2. What is the displacement of the bug between t = 0.00 s and t = 20.0 s? A) cm B) 39.9 cm C) cm D) 16.1 cm E) +16. 1. For which one of he following siuaions will he pah lengh equal he magniude of he displacemen? A) A jogger is running around a circular pah. B) A ball is rolling down an inclined plane. C) A rain ravels

More information

4.1 - Logarithms and Their Properties

4.1 - Logarithms and Their Properties Chaper 4 Logarihmic Funcions 4.1 - Logarihms and Their Properies Wha is a Logarihm? We define he common logarihm funcion, simply he log funcion, wrien log 10 x log x, as follows: If x is a posiive number,

More information

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 17

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 17 EES 16A Designing Informaion Devices and Sysems I Spring 019 Lecure Noes Noe 17 17.1 apaciive ouchscreen In he las noe, we saw ha a capacior consiss of wo pieces on conducive maerial separaed by a nonconducive

More information

Physics 101 Fall 2006: Exam #1- PROBLEM #1

Physics 101 Fall 2006: Exam #1- PROBLEM #1 Physics 101 Fall 2006: Exam #1- PROBLEM #1 1. Problem 1. (+20 ps) (a) (+10 ps) i. +5 ps graph for x of he rain vs. ime. The graph needs o be parabolic and concave upward. ii. +3 ps graph for x of he person

More information

AP CALCULUS AB 2003 SCORING GUIDELINES (Form B)

AP CALCULUS AB 2003 SCORING GUIDELINES (Form B) SCING GUIDELINES (Form B) Quesion 4 A paricle moves along he x-axis wih velociy a ime given by v( ) = 1 + e1. (a) Find he acceleraion of he paricle a ime =. (b) Is he speed of he paricle increasing a ime

More information

Lesson 3.1 Recursive Sequences

Lesson 3.1 Recursive Sequences Lesson 3.1 Recursive Sequences 1) 1. Evaluae he epression 2(3 for each value of. a. 9 b. 2 c. 1 d. 1 2. Consider he sequence of figures made from riangles. Figure 1 Figure 2 Figure 3 Figure a. Complee

More information

Displacement ( x) x x x

Displacement ( x) x x x Kinemaics Kinemaics is he branch of mechanics ha describes he moion of objecs wihou necessarily discussing wha causes he moion. 1-Dimensional Kinemaics (or 1- Dimensional moion) refers o moion in a sraigh

More information

2.7. Some common engineering functions. Introduction. Prerequisites. Learning Outcomes

2.7. Some common engineering functions. Introduction. Prerequisites. Learning Outcomes Some common engineering funcions 2.7 Inroducion This secion provides a caalogue of some common funcions ofen used in Science and Engineering. These include polynomials, raional funcions, he modulus funcion

More information

Traveling Waves. Chapter Introduction

Traveling Waves. Chapter Introduction Chaper 4 Traveling Waves 4.1 Inroducion To dae, we have considered oscillaions, i.e., periodic, ofen harmonic, variaions of a physical characerisic of a sysem. The sysem a one ime is indisinguishable from

More information

d = ½(v o + v f) t distance = ½ (initial velocity + final velocity) time

d = ½(v o + v f) t distance = ½ (initial velocity + final velocity) time BULLSEYE Lab Name: ANSWER KEY Dae: Pre-AP Physics Lab Projecile Moion Weigh = 1 DIRECTIONS: Follow he insrucions below, build he ramp, ake your measuremens, and use your measuremens o make he calculaions

More information

Examples of Dynamic Programming Problems

Examples of Dynamic Programming Problems M.I.T. 5.450-Fall 00 Sloan School of Managemen Professor Leonid Kogan Examples of Dynamic Programming Problems Problem A given quaniy X of a single resource is o be allocaed opimally among N producion

More information

a 10.0 (m/s 2 ) 5.0 Name: Date: 1. The graph below describes the motion of a fly that starts out going right V(m/s)

a 10.0 (m/s 2 ) 5.0 Name: Date: 1. The graph below describes the motion of a fly that starts out going right V(m/s) Name: Dae: Kinemaics Review (Honors. Physics) Complee he following on a separae shee of paper o be urned in on he day of he es. ALL WORK MUST BE SHOWN TO RECEIVE CREDIT. 1. The graph below describes he

More information

A First Course on Kinetics and Reaction Engineering. Class 19 on Unit 18

A First Course on Kinetics and Reaction Engineering. Class 19 on Unit 18 A Firs ourse on Kineics and Reacion Engineering lass 19 on Uni 18 Par I - hemical Reacions Par II - hemical Reacion Kineics Where We re Going Par III - hemical Reacion Engineering A. Ideal Reacors B. Perfecly

More information

Variable acceleration, Mixed Exercise 11

Variable acceleration, Mixed Exercise 11 Variable acceleraion, Mixed Exercise 11 1 a v 1 P is a res when v 0. 0 1 b s 0 0 v d (1 ) 1 0 1 0 7. The disance ravelled by P is 7. m. 1 a v 6+ a d v 6 + When, a 6+ 0 The acceleraion of P when is 0 m

More information

Guest Lectures for Dr. MacFarlane s EE3350 Part Deux

Guest Lectures for Dr. MacFarlane s EE3350 Part Deux Gues Lecures for Dr. MacFarlane s EE3350 Par Deux Michael Plane Mon., 08-30-2010 Wrie name in corner. Poin ou his is a review, so I will go faser. Remind hem o go lisen o online lecure abou geing an A

More information

Today: Falling. v, a

Today: Falling. v, a Today: Falling. v, a Did you ge my es email? If no, make sure i s no in your junk box, and add sbs0016@mix.wvu.edu o your address book! Also please email me o le me know. I will be emailing ou pracice

More information

Section 4.4 Logarithmic Properties

Section 4.4 Logarithmic Properties Secion. Logarihmic Properies 5 Secion. Logarihmic Properies In he previous secion, we derived wo imporan properies of arihms, which allowed us o solve some asic eponenial and arihmic equaions. Properies

More information

Today: Graphing. Note: I hope this joke will be funnier (or at least make you roll your eyes and say ugh ) after class. v (miles per hour ) Time

Today: Graphing. Note: I hope this joke will be funnier (or at least make you roll your eyes and say ugh ) after class. v (miles per hour ) Time +v Today: Graphing v (miles per hour ) 9 8 7 6 5 4 - - Time Noe: I hope his joke will be funnier (or a leas make you roll your eyes and say ugh ) afer class. Do yourself a favor! Prof Sarah s fail-safe

More information

x(m) t(sec ) Homework #2. Ph 231 Introductory Physics, Sp-03 Page 1 of 4

x(m) t(sec ) Homework #2. Ph 231 Introductory Physics, Sp-03 Page 1 of 4 Homework #2. Ph 231 Inroducory Physics, Sp-03 Page 1 of 4 2-1A. A person walks 2 miles Eas (E) in 40 minues and hen back 1 mile Wes (W) in 20 minues. Wha are her average speed and average velociy (in ha

More information

1 Differential Equation Investigations using Customizable

1 Differential Equation Investigations using Customizable Differenial Equaion Invesigaions using Cusomizable Mahles Rober Decker The Universiy of Harford Absrac. The auhor has developed some plaform independen, freely available, ineracive programs (mahles) for

More information

Predator - Prey Model Trajectories and the nonlinear conservation law

Predator - Prey Model Trajectories and the nonlinear conservation law Predaor - Prey Model Trajecories and he nonlinear conservaion law James K. Peerson Deparmen of Biological Sciences and Deparmen of Mahemaical Sciences Clemson Universiy Ocober 28, 213 Ouline Drawing Trajecories

More information

F.LE.A.4: Exponential Growth

F.LE.A.4: Exponential Growth Regens Exam Quesions F.LE.A.4: Exponenial Growh www.jmap.org Name: F.LE.A.4: Exponenial Growh 1 A populaion of rabbis doubles every days according o he formula P = 10(2), where P is he populaion of rabbis

More information

A Dynamic Model of Economic Fluctuations

A Dynamic Model of Economic Fluctuations CHAPTER 15 A Dynamic Model of Economic Flucuaions Modified for ECON 2204 by Bob Murphy 2016 Worh Publishers, all righs reserved IN THIS CHAPTER, OU WILL LEARN: how o incorporae dynamics ino he AD-AS model

More information

Announcements: Warm-up Exercise:

Announcements: Warm-up Exercise: Fri Apr 13 7.1 Sysems of differenial equaions - o model muli-componen sysems via comparmenal analysis hp//en.wikipedia.org/wiki/muli-comparmen_model Announcemens Warm-up Exercise Here's a relaively simple

More information

Conceptual Physics Review (Chapters 2 & 3)

Conceptual Physics Review (Chapters 2 & 3) Concepual Physics Review (Chapers 2 & 3) Soluions Sample Calculaions 1. My friend and I decide o race down a sraigh srech of road. We boh ge in our cars and sar from res. I hold he seering wheel seady,

More information

WEEK-3 Recitation PHYS 131. of the projectile s velocity remains constant throughout the motion, since the acceleration a x

WEEK-3 Recitation PHYS 131. of the projectile s velocity remains constant throughout the motion, since the acceleration a x WEEK-3 Reciaion PHYS 131 Ch. 3: FOC 1, 3, 4, 6, 14. Problems 9, 37, 41 & 71 and Ch. 4: FOC 1, 3, 5, 8. Problems 3, 5 & 16. Feb 8, 018 Ch. 3: FOC 1, 3, 4, 6, 14. 1. (a) The horizonal componen of he projecile

More information

Effects of Coordinate Curvature on Integration

Effects of Coordinate Curvature on Integration Effecs of Coordinae Curvaure on Inegraion Chrisopher A. Lafore clafore@gmail.com Absrac In his paper, he inegraion of a funcion over a curved manifold is examined in he case where he curvaure of he manifold

More information

WELCOME TO 1103 PERIOD 3. Homework Exercise #2 is due at the beginning of class. Please put it on the stool in the front of the classroom.

WELCOME TO 1103 PERIOD 3. Homework Exercise #2 is due at the beginning of class. Please put it on the stool in the front of the classroom. WELCOME TO 1103 PERIOD 3 Homework Exercise #2 is due a he beginning of class. Please pu i on he sool in he fron of he classroom. Ring of Truh: Change 1) Give examples of some energy ransformaions in he

More information

MEI Mechanics 1 General motion. Section 1: Using calculus

MEI Mechanics 1 General motion. Section 1: Using calculus Soluions o Exercise MEI Mechanics General moion Secion : Using calculus. s 4 v a 6 4 4 When =, v 4 a 6 4 6. (i) When = 0, s = -, so he iniial displacemen = - m. s v 4 When = 0, v = so he iniial velociy

More information

Second Law. first draft 9/23/04, second Sept Oct 2005 minor changes 2006, used spell check, expanded example

Second Law. first draft 9/23/04, second Sept Oct 2005 minor changes 2006, used spell check, expanded example Second Law firs draf 9/3/4, second Sep Oc 5 minor changes 6, used spell check, expanded example Kelvin-Planck: I is impossible o consruc a device ha will operae in a cycle and produce no effec oher han

More information

1.6. Slopes of Tangents and Instantaneous Rate of Change

1.6. Slopes of Tangents and Instantaneous Rate of Change 1.6 Slopes of Tangens and Insananeous Rae of Change When you hi or kick a ball, he heigh, h, in meres, of he ball can be modelled by he equaion h() 4.9 2 v c. In his equaion, is he ime, in seconds; c represens

More information

Math 115 Final Exam December 14, 2017

Math 115 Final Exam December 14, 2017 On my honor, as a suden, I have neiher given nor received unauhorized aid on his academic work. Your Iniials Only: Iniials: Do no wrie in his area Mah 5 Final Exam December, 07 Your U-M ID # (no uniqname):

More information

Inventory Analysis and Management. Multi-Period Stochastic Models: Optimality of (s, S) Policy for K-Convex Objective Functions

Inventory Analysis and Management. Multi-Period Stochastic Models: Optimality of (s, S) Policy for K-Convex Objective Functions Muli-Period Sochasic Models: Opimali of (s, S) Polic for -Convex Objecive Funcions Consider a seing similar o he N-sage newsvendor problem excep ha now here is a fixed re-ordering cos (> 0) for each (re-)order.

More information

15.023J / J / ESD.128J Global Climate Change: Economics, Science, and Policy Spring 2008

15.023J / J / ESD.128J Global Climate Change: Economics, Science, and Policy Spring 2008 MIT OpenCourseWare hp://ocw.mi.edu 15.023J / 12.848J / ESD.128J Global Climae Change: Economics, Science, and Policy Spring 2008 For informaion abou ciing hese maerials or our Terms of Use, visi: hp://ocw.mi.edu/erms.

More information

d 1 = c 1 b 2 - b 1 c 2 d 2 = c 1 b 3 - b 1 c 3

d 1 = c 1 b 2 - b 1 c 2 d 2 = c 1 b 3 - b 1 c 3 and d = c b - b c c d = c b - b c c This process is coninued unil he nh row has been compleed. The complee array of coefficiens is riangular. Noe ha in developing he array an enire row may be divided or

More information

RC, RL and RLC circuits

RC, RL and RLC circuits Name Dae Time o Complee h m Parner Course/ Secion / Grade RC, RL and RLC circuis Inroducion In his experimen we will invesigae he behavior of circuis conaining combinaions of resisors, capaciors, and inducors.

More information

Math Week 14 April 16-20: sections first order systems of linear differential equations; 7.4 mass-spring systems.

Math Week 14 April 16-20: sections first order systems of linear differential equations; 7.4 mass-spring systems. Mah 2250-004 Week 4 April 6-20 secions 7.-7.3 firs order sysems of linear differenial equaions; 7.4 mass-spring sysems. Mon Apr 6 7.-7.2 Sysems of differenial equaions (7.), and he vecor Calculus we need

More information

SPH3U: Projectiles. Recorder: Manager: Speaker:

SPH3U: Projectiles. Recorder: Manager: Speaker: SPH3U: Projeciles Now i s ime o use our new skills o analyze he moion of a golf ball ha was ossed hrough he air. Le s find ou wha is special abou he moion of a projecile. Recorder: Manager: Speaker: 0

More information

72 Calculus and Structures

72 Calculus and Structures 72 Calculus and Srucures CHAPTER 5 DISTANCE AND ACCUMULATED CHANGE Calculus and Srucures 73 Copyrigh Chaper 5 DISTANCE AND ACCUMULATED CHANGE 5. DISTANCE a. Consan velociy Le s ake anoher look a Mary s

More information

Physics 5A Review 1. Eric Reichwein Department of Physics University of California, Santa Cruz. October 31, 2012

Physics 5A Review 1. Eric Reichwein Department of Physics University of California, Santa Cruz. October 31, 2012 Physics 5A Review 1 Eric Reichwein Deparmen of Physics Universiy of California, Sana Cruz Ocober 31, 2012 Conens 1 Error, Sig Figs, and Dimensional Analysis 1 2 Vecor Review 2 2.1 Adding/Subracing Vecors.............................

More information

6.01: Introduction to EECS I Lecture 8 March 29, 2011

6.01: Introduction to EECS I Lecture 8 March 29, 2011 6.01: Inroducion o EES I Lecure 8 March 29, 2011 6.01: Inroducion o EES I Op-Amps Las Time: The ircui Absracion ircuis represen sysems as connecions of elemens hrough which currens (hrough variables) flow

More information

CHAPTER 12 DIRECT CURRENT CIRCUITS

CHAPTER 12 DIRECT CURRENT CIRCUITS CHAPTER 12 DIRECT CURRENT CIUITS DIRECT CURRENT CIUITS 257 12.1 RESISTORS IN SERIES AND IN PARALLEL When wo resisors are conneced ogeher as shown in Figure 12.1 we said ha hey are conneced in series. As

More information

CHEMICAL KINETICS: 1. Rate Order Rate law Rate constant Half-life Temperature Dependence

CHEMICAL KINETICS: 1. Rate Order Rate law Rate constant Half-life Temperature Dependence CHEMICL KINETICS: Rae Order Rae law Rae consan Half-life Temperaure Dependence Chemical Reacions Kineics Chemical ineics is he sudy of ime dependence of he change in he concenraion of reacans and producs.

More information

Suggested Practice Problems (set #2) for the Physics Placement Test

Suggested Practice Problems (set #2) for the Physics Placement Test Deparmen of Physics College of Ars and Sciences American Universiy of Sharjah (AUS) Fall 014 Suggesed Pracice Problems (se #) for he Physics Placemen Tes This documen conains 5 suggesed problems ha are

More information

The average rate of change between two points on a function is d t

The average rate of change between two points on a function is d t SM Dae: Secion: Objecive: The average rae of change beween wo poins on a funcion is d. For example, if he funcion ( ) represens he disance in miles ha a car has raveled afer hours, hen finding he slope

More information

Reading from Young & Freedman: For this topic, read sections 25.4 & 25.5, the introduction to chapter 26 and sections 26.1 to 26.2 & 26.4.

Reading from Young & Freedman: For this topic, read sections 25.4 & 25.5, the introduction to chapter 26 and sections 26.1 to 26.2 & 26.4. PHY1 Elecriciy Topic 7 (Lecures 1 & 11) Elecric Circuis n his opic, we will cover: 1) Elecromoive Force (EMF) ) Series and parallel resisor combinaions 3) Kirchhoff s rules for circuis 4) Time dependence

More information

Dynamics. Option topic: Dynamics

Dynamics. Option topic: Dynamics Dynamics 11 syllabusref Opion opic: Dynamics eferenceence In his cha chaper 11A Differeniaion and displacemen, velociy and acceleraion 11B Inerpreing graphs 11C Algebraic links beween displacemen, velociy

More information

Physics 180A Fall 2008 Test points. Provide the best answer to the following questions and problems. Watch your sig figs.

Physics 180A Fall 2008 Test points. Provide the best answer to the following questions and problems. Watch your sig figs. Physics 180A Fall 2008 Tes 1-120 poins Name Provide he bes answer o he following quesions and problems. Wach your sig figs. 1) The number of meaningful digis in a number is called he number of. When numbers

More information

EECE251. Circuit Analysis I. Set 4: Capacitors, Inductors, and First-Order Linear Circuits

EECE251. Circuit Analysis I. Set 4: Capacitors, Inductors, and First-Order Linear Circuits EEE25 ircui Analysis I Se 4: apaciors, Inducors, and Firs-Order inear ircuis Shahriar Mirabbasi Deparmen of Elecrical and ompuer Engineering Universiy of Briish olumbia shahriar@ece.ubc.ca Overview Passive

More information

u(x) = e x 2 y + 2 ) Integrate and solve for x (1 + x)y + y = cos x Answer: Divide both sides by 1 + x and solve for y. y = x y + cos x

u(x) = e x 2 y + 2 ) Integrate and solve for x (1 + x)y + y = cos x Answer: Divide both sides by 1 + x and solve for y. y = x y + cos x . 1 Mah 211 Homework #3 February 2, 2001 2.4.3. y + (2/x)y = (cos x)/x 2 Answer: Compare y + (2/x) y = (cos x)/x 2 wih y = a(x)x + f(x)and noe ha a(x) = 2/x. Consequenly, an inegraing facor is found wih

More information

INSTANTANEOUS VELOCITY

INSTANTANEOUS VELOCITY INSTANTANEOUS VELOCITY I claim ha ha if acceleraion is consan, hen he elociy is a linear funcion of ime and he posiion a quadraic funcion of ime. We wan o inesigae hose claims, and a he same ime, work

More information

4.1 INTRODUCTION TO THE FAMILY OF EXPONENTIAL FUNCTIONS

4.1 INTRODUCTION TO THE FAMILY OF EXPONENTIAL FUNCTIONS Funcions Modeling Change: A Preparaion for Calculus, 4h Ediion, 2011, Connally 4.1 INTRODUCTION TO THE FAMILY OF EXPONENTIAL FUNCTIONS Growing a a Consan Percen Rae Example 2 During he 2000 s, he populaion

More information

Section 4.4 Logarithmic Properties

Section 4.4 Logarithmic Properties Secion. Logarihmic Properies 59 Secion. Logarihmic Properies In he previous secion, we derived wo imporan properies of arihms, which allowed us o solve some asic eponenial and arihmic equaions. Properies

More information

04. Kinetics of a second order reaction

04. Kinetics of a second order reaction 4. Kineics of a second order reacion Imporan conceps Reacion rae, reacion exen, reacion rae equaion, order of a reacion, firs-order reacions, second-order reacions, differenial and inegraed rae laws, Arrhenius

More information

Chapter 15 Oscillatory Motion I

Chapter 15 Oscillatory Motion I Chaper 15 Oscillaory Moion I Level : AP Physics Insrucor : Kim Inroducion A very special kind of moion occurs when he force acing on a body is proporional o he displacemen of he body from some equilibrium

More information