Problem 1. Brachistochrone time-of-flight

Size: px
Start display at page:

Download "Problem 1. Brachistochrone time-of-flight"

Transcription

1 PHY 320 Homework 3 Solution Spring 207 Problem. Brchistochrone time-of-flight From clss discussion nd the textbook, we know tht the functionl to be minimized is the time: 2 t = d s = 2 +(y') v 2 v d x Where we will use the uthors' coordinte system with the x - xis pointing downwrd. The velocity cn be clculted from conservtion of energy: the mss strts t height x nd the bottom of the curve is t x 2. The potentil energy t point x between the initil nd bottom points is U(x) = - mg(x - x ). Using conservtion of energy then, the velocity of the mss between point nd the bottom is v = 2 g(x - x ), yielding for the time t = 2 +(y') 2 x- x 2 g d x From clss, the prmetric equtions of the curve re x = ( - cosθθ) y = (θθ - sinθθ) ( is constnt) so we rewrite the integrl in terms of θθ: So, d x = sinθθ y (x) = d y = (- cosθθ) d x sinθθ θθ 2 t = 2 g θθ +(- cosθθ) 2 sin 2 θθ sinθθ = (- cosθθ)- x θθ 2 θθ 2 g sin 2 θθ+- 2 cosθθ+cos 2 θθ sin 2 θθ(- cosθθ)- x sinθθ = θθ 2 θθ 2 g 2 (- cosθθ) (- cosθθ)- x Now the strting height x = ( - cosθθ ) nd the finl ngle is θθ 2 = ππ, so the time becomes t = g ππ θθ (- cosθθ) cosθθ - cosθθ Finlly, we use trig identity cosθθ = - 2 sin 2 θθ to do nother rewrite of the time integrl: R. Mrtin

2 2 t = g ππ θθ sin(θθ/ 2) sin 2 (θθ/ 2)- sin 2 (θθ / 2) = g ππ θθ sin(θθ/ 2) cos 2 (θθ / 2)- cos 2 (θθ/ 2) Letting the vrible u = cos(θθ/ 2) with d u = - sin(θθ/ 2) we get 2 t = g 0-2 u u 2 - u 2 d u Let Mthemtic do the integrl: In[]:= Frmed Row "time = ", Assuming u > 0, time = - 2 g u 0 u 2 - u 2 d u Out[]= time = g π And we see tht the time is, in fct, independent of the strting point! The brchistochrone curve hs this interesting property tht the velocity increse s the mss flls is effectively cnceled by the decrese in initil potentil energy s the strting height decreses, so the time ends up being the sme. Think bout tht one for minute! Problem 2. Suspended rope problem Consider uniform rope of mss m nd length L > 2 with ends fixed t x = - nd x =. Find the shpe of the rope if grvity cts downwrd in the y-direction. Find the eqution giving the shpe of the rope tht minimizes the rope s potentil energy. Set up the problem We wnt to minimize the potentil energy of the rope. Using coordintes with the y-xis upwrd nd the rope suspended t (x, y) = (-, 0) nd (x, y) = (, 0), the potentil energy of the rope is 2 m J = U = g y d s = m g L L y + (y') 2 d x - where m/ L is the mss per unit length of the rope, ssumed constnt long the rope. From this f(y, y', x) = y + (y') 2 (we leve out the constnt in front of the integrl since it won't be relevnt to the vritionl problem). Next, the constrint tht the rope hs fixed length L cn be expressed s n integrl: K = L = - + (y') 2 d x so its integrnd is g(y, y', t) = integrnd is then + (y') 2. From clss notes nd the textbook, the Lgrnge multiplier 207 R. Mrtin

3 3 F = f + λλ g = (y + λλ) + (y') 2 nd the solution to the constrined vritionl problem is given by the Euler eqution for F. Before we do tht, note tht the function F (=Fy in the code) does not depend on x explicitly. Hence, first integrl would be F(y, y', x) - y' F = c y', where c is constnt. Here is the numericl set-up. Begin with the bsic integrnd functions In[2]:= fy = y[x] + y [x] 2 ; gy = + y [x] 2 ; Fy = Simplify[fy + λ gy] Out[3]= (λ + y[x]) + y [x] 2 The y derivtive is given s In[4]:= Out[4]= dp = y'[x] Fy (λ + y[x]) y [x] + y [x] 2 So the first integrl, F - y' F is y' In[5]:= Out[5]= fi = Simplify[Fy - y'[x] dp] λ + y[x] + y [x] 2 Solving the eqution F - y' F = c y' for y gives In[6]:= yprime = Solve[fi c, y'[x]] Out[6]= y [x] - - c 2 + λ λ y[x] + y[x] 2 c, y [x] - c 2 + λ λ y[x] + y[x] 2 c In[7]:= dydx = Assuming[{λ > 0, c > 0}, FullSimplify[y'[x] /. yprime[[2]]] ] Out[7]= - (c - λ - y[x]) (c + λ + y[x]) c Seprte vribles d y nd d x nd integrte: y d y = d x In[8]:= xx = dydx d y[x] Out[8]= c Log λ + y[x] + - c 2 + λ λ y[x] + y[x] 2 Note tht I ve not dded constnt of integrtion c 2 here (lterntively I ve tken it to be zero). This llows for much esier mth going forwrd. I ll sy more lter. 207 R. Mrtin

4 4 llows for much esier mth going forwrd. I ll sy more lter. The expression for x (clled xx in the code) is x(y) nd we wnt y(x). It cn be inverted: In[9]:= Out[9]= yx = Solve[xx x, y[x]] y[x] 2 c2 e - x c + e x c - 2 λ Mthemtic defults to exponentils, but the solution is often given in terms of hyperbolic functions. Oddly, the ExpToTrig function does tht: In[0]:= Out[0]= yy = y[x] /. ExpToTrig[yx][[]] - λ + 2 Cosh x c + 2 c2 Cosh x c + 2 Sinh x c - 2 c2 Sinh x c In[]:= Out[]= To get the constnts λλ nd c we use the boundry conditions. Strt with the left boundry: (x, y) = (-, 0) yyl = yy /. x - λl = Solve[yyL 0, λ] - λ + 2 Cosh c + 2 c2 Cosh c - 2 Sinh c + 2 c2 Sinh c Out[2]= λ 2 Cosh c + c2 Cosh - Sinh c c + c2 Sinh c In[3]:= Out[3]= Then the right boundry: (x, y) = (+, 0) yyr = yy /. x λr = Solve[yyR 0, λ] - λ + 2 Cosh Out[4]= λ 2 Cosh c + 2 c2 Cosh c + 2 Sinh c + c2 Cosh c + Sinh c - 2 c2 Sinh c c - c2 Sinh c These two expressions for the multiplier λλ cn be solved simultneously for the constnt c : In[5]:= Solve[(λ /. λr) == (λ /. λl), c] Solve::ifun: Inversefunctionsre beingusedby Solve, so somesolutionsmynotbe found; usereduceforcompletesolutioninformtion.! Out[5]= {{c - }, {c }} Tking the positive solution for c : In[6]:= Row[{"Multiplier λ = ", λf = (λ /. λr[[]]) /. c }] Frmed[Row[{"Suspended rope: y(x) = ", yf = Simplify[yy /. {λ λf, c }]}], FrmeMrgins Lrge] Out[6]= Multiplier λ = Cosh[] Out[7]= Suspended rope: y(x) = - Cosh[] + Cosh[x] In[8]:= Plot[{yf /., 0}, {x, -, }, AspectRtio 0.4, Frme True, FrmeLbel {x, y}, Epilog {Disk[{-, 0}, 0.02], Disk[{, 0}, 0.02]}] 207 R. Mrtin

5 5 Out[8]= y x The length is given by the constrint eqution bove, L = - + (y') 2 d x: In[9]:= yprime = x yf; length = Assuming { > 0}, - + yprime 2 d x ; Row[{"Length = ", length, " = ", N[length /. ], " for = "}] Out[2]= Length = 2 Sinh[] = for = Comment: normlly you d expect to specify the rope length L nd hve to use the constrint eqution to determine the multiplier λλ, but since I chose the constnt c 2 = 0 bove for mthemticl simplicity, I could get λλ from the boundry conditions -- this effectively limits my string length to L = 2 sinh(). Of course ny length rope with L > 2 will hng between our fixed endpoints. You cn go bck to the step in the clcultion where I took c 2 = 0 nd dd in nonzero c 2. The determintion of c, c 2 nd λλ involves trnscendentl equtions, so cnnot be expressed simply, but the constnts cn be determined numericlly for given numericl vlues of nd L. Problem 3. Light ry curve in inhomogeneous medium Consider ry of light initilly horizontl in region of spce in which the index of refrction vries with height, e.g. In the Erth s tmosphere. Assume n(z) = n s ( - ϵε z), where n s > is the refrctive index t the surfce (z = 0) nd ϵε is positive constnt). Use Fermt s principle (minimize time) to find the eqution of the pth of the light ry. First note tht the refrctive index given must hold only for limited rnge of z vlues, since n. Thus n(z) = n s ( - ϵε z) z mx = n s- ϵε n s. For exmple, if n s =.5, then z mx = 0.33/ ϵε. I m tking the z-xis verticl nd the y-xis horizontl. You hve choice here s to which vrible you tke s your independent vrible. Choosing z s independent mkes sense in two wys: () the index of refrction n(z) ws given s dependent on z, nd (2) The resulting integrnd will be independent of y, which mkes the mth esier. We consider curve y(z) with elements of length d s = d z 2 + d y 2 = + y 2 d z. Minimizing time mens minimizing the functionl t = v - d s = v - + y 2 d z, where the velocity here is v = c = c. Thus, n(z) n s (- ϵε z) 207 R. Mrtin

6 6 t = +y 2 v d z = n s c + y 2 ( - ϵε z) d z. The motion is unconstrined, so the solution is given directly by the Euler eqution for the integrnd function f(y, y', z) = n s + y 2 ( - ϵε z) The Euler eqution involves the derivtive f, which vnishes here. Therefore, the other Euler term y gives d f = d d z y d z n s y +y 2 ( - ϵε z) = 0, implying tht the expression in brckets is constnt: n s c gives y'[z] In[22]:= pc = ns ( - ϵ z) ; + y'[z] Solve[pc p0, y'[z]]; Row[{"y (z) = ", Assuming[ϵ > 0, yp = Simplify[y'[z] /. %[[]]]]}] Out[24]= y (z) = p02 - p0 2 p ns 2 (- + z ϵ) 2 2 ns 2 (- + z ϵ) 2 Now integrte this over z to get y(z): y +y 2 ( - ϵε z) = p 0 = constnt. Solving for y In[25]:= yz = Assuming {p0 > 0, ϵ > 0, ns > }, Simplify yp d z + c Out[25]= c + 2 ns 2 ϵ (- + z ϵ) p0 - p0 + p ns 2 (- + z ϵ) 2-2 ns (- + z ϵ) Log ns - 2 ns + 2 ns z ϵ + p ns 2 (- + z ϵ) 2 In[26]:= where c is constnt of integrtion. We cn evlute c by tking the initil condition y(0) = 0: yz Out[26]= c + 2 ns 2 ϵ (- + z ϵ) p0 - p0 + p ns 2 (- + z ϵ) 2-2 ns (- + z ϵ) Log ns - 2 ns + 2 ns z ϵ + p ns 2 (- + z ϵ) 2 In[27]:= y0 = yz /. z 0; cs = Solve[y0 0, c] Out[28]= c - 2 ns 2 ϵ p0 p0-4 ns2 + p0 2-2 ns Log ns - 2 ns + 4 ns 2 + p0 2 Then plug this c vlue into the generl solution: 207 R. Mrtin

7 7 In[29]:= Frmed[ Row[{"y(z) = ", yzz = Assuming[{p0 > 0, ϵ > 0, ns > }, Simplify[yz /. cs[[]]]]}], FrmeMrgins Lrge] Out[29]= y(z) = 2 ns 2 ϵ p0 - p0 + 4 ns2 + p ns Log ns - 2 ns + 4 ns 2 + p z ϵ - p0 + p ns 2 (- + z ϵ) 2-2 ns (- + z ϵ) Log ns - 2 ns + 2 ns z ϵ + p ns 2 (- + z ϵ) 2 The result looks messy, but I ve left it in terms of the prmeters n s, p 0, nd ϵε, which dds some complexity. We cn evlute the constnt of the motion in terms of the initil ngle the ry mkes with the y- xis, in the next section. Initil ngle nd p 0 constnt I chose z s verticl nd y s horizontl, so the initil ngle θθ 0 (mesured bove the y-xis) would obey cot(θθ 0 ) = y' (0). For the solution just obtined, let s clculte it. First reclculte y (z): In[30]:= Row[{"y (z) = ", dyzz = Simplify[ z yzz]}] Out[30]= y (z) = p0 p0 - p ns 2 (- + z ϵ) 2 2 ns 2 (- + z ϵ) 2 Solve for the constnt p 0 using the condition bove: In[3]:= Frmed[Row[{"p 0 = ", p0s = p0 /. Solve[(dyzz /. z 0) Cot[θ0], p0][[]]}]] Out[3]= p 0 = - ns Cot[θ0] + Cot[θ0] So the momentum conservtion constnt p 0 cn be determined from choosing the initil direction θθ 0 of the ry. Mke plot First specify smple numbers for the prmeters. Then pply them nd mke the plot. 207 R. Mrtin

8 8 In[32]:= ns0 =.5; θ00 = π / 3; ϵ0 = 0.; (* Initil ngle 60 =π/ 3, n s =.5 (glss), ϵ=0. refrctive index sptil vrition rte * ) p0plot = p0s /. {ns ns0, θ0 θ00}; ns - zmx = /. {ns ns0, ϵ ϵ0}; ϵ ns (* See beginning of his problem for def. of z mx * ) zref = z Cot[θ0] /. θ0 θ00; (* reference ry in constnt n medium, for comprison * )yzzp = yzz /. {p0 p0plot} /. {ϵ ϵ0, ns ns0}; p = Plot[{yzzp, zref}, {z, 0, 2 zmx}, PlotStyle {Blue, Red}, Frme True, FrmeLbel {y, z}, PlotLegends LineLegend[{Blue, Red}, {"n = n(z)", "n uniform"}]]; (* Following code switches xes; suggested t StckExchnge.com * ) Show[p /. x_line Reverse[x, 3], PlotRnge Automtic, PlotLbel Row[{"n(z)=n s (- ϵz), n s =", ns0, ", ϵ=", ϵ0}]] 7 n(z)=n s (- ϵεz), n s =.5, ϵε= Out[37]= z n = n(z) n uniform y The stright line is the pth of the light ry in homogeneous medium, while the curve is the one we solved for in the inhomogeneous medium with n = n(z). You cn convince yourself tht it mkes sense by imgining stck of lyers of mterils with successively lower index n i+ < n i for higher lyers; then use Snell s lw to show the light is bent wy from the norml t ech lyer boundry. Our solution plotted bove is the limit s those lyers become infinitesimlly thin. 207 R. Mrtin

In-Class Problems 2 and 3: Projectile Motion Solutions. In-Class Problem 2: Throwing a Stone Down a Hill

In-Class Problems 2 and 3: Projectile Motion Solutions. In-Class Problem 2: Throwing a Stone Down a Hill MASSACHUSETTS INSTITUTE OF TECHNOLOGY Deprtment of Physics Physics 8T Fll Term 4 In-Clss Problems nd 3: Projectile Motion Solutions We would like ech group to pply the problem solving strtegy with the

More information

Mathematics of Motion II Projectiles

Mathematics of Motion II Projectiles Chmp+ Fll 2001 Dn Stump 1 Mthemtics of Motion II Projectiles Tble of vribles t time v velocity, v 0 initil velocity ccelertion D distnce x position coordinte, x 0 initil position x horizontl coordinte

More information

The Wave Equation I. MA 436 Kurt Bryan

The Wave Equation I. MA 436 Kurt Bryan 1 Introduction The Wve Eqution I MA 436 Kurt Bryn Consider string stretching long the x xis, of indeterminte (or even infinite!) length. We wnt to derive n eqution which models the motion of the string

More information

Introduction to the Calculus of Variations

Introduction to the Calculus of Variations Introduction to the Clculus of Vritions Jim Fischer Mrch 20, 1999 Abstrct This is self-contined pper which introduces fundmentl problem in the clculus of vritions, the problem of finding extreme vlues

More information

Improper Integrals, and Differential Equations

Improper Integrals, and Differential Equations Improper Integrls, nd Differentil Equtions October 22, 204 5.3 Improper Integrls Previously, we discussed how integrls correspond to res. More specificlly, we sid tht for function f(x), the region creted

More information

Math 113 Exam 1-Review

Math 113 Exam 1-Review Mth 113 Exm 1-Review September 26, 2016 Exm 1 covers 6.1-7.3 in the textbook. It is dvisble to lso review the mteril from 5.3 nd 5.5 s this will be helpful in solving some of the problems. 6.1 Are Between

More information

Consequently, the temperature must be the same at each point in the cross section at x. Let:

Consequently, the temperature must be the same at each point in the cross section at x. Let: HW 2 Comments: L1-3. Derive the het eqution for n inhomogeneous rod where the therml coefficients used in the derivtion of the het eqution for homogeneous rod now become functions of position x in the

More information

Calculus of Variations

Calculus of Variations Clculus of Vritions Com S 477/577 Notes) Yn-Bin Ji Dec 4, 2017 1 Introduction A functionl ssigns rel number to ech function or curve) in some clss. One might sy tht functionl is function of nother function

More information

Physics 116C Solution of inhomogeneous ordinary differential equations using Green s functions

Physics 116C Solution of inhomogeneous ordinary differential equations using Green s functions Physics 6C Solution of inhomogeneous ordinry differentil equtions using Green s functions Peter Young November 5, 29 Homogeneous Equtions We hve studied, especilly in long HW problem, second order liner

More information

Math 115 ( ) Yum-Tong Siu 1. Lagrange Multipliers and Variational Problems with Constraints. F (x,y,y )dx

Math 115 ( ) Yum-Tong Siu 1. Lagrange Multipliers and Variational Problems with Constraints. F (x,y,y )dx Mth 5 2006-2007) Yum-Tong Siu Lgrnge Multipliers nd Vritionl Problems with Constrints Integrl Constrints. Consider the vritionl problem of finding the extremls for the functionl J[y] = F x,y,y )dx with

More information

( dg. ) 2 dt. + dt. dt j + dh. + dt. r(t) dt. Comparing this equation with the one listed above for the length of see that

( dg. ) 2 dt. + dt. dt j + dh. + dt. r(t) dt. Comparing this equation with the one listed above for the length of see that Arc Length of Curves in Three Dimensionl Spce If the vector function r(t) f(t) i + g(t) j + h(t) k trces out the curve C s t vries, we cn mesure distnces long C using formul nerly identicl to one tht we

More information

Math 8 Winter 2015 Applications of Integration

Math 8 Winter 2015 Applications of Integration Mth 8 Winter 205 Applictions of Integrtion Here re few importnt pplictions of integrtion. The pplictions you my see on n exm in this course include only the Net Chnge Theorem (which is relly just the Fundmentl

More information

13.4 Work done by Constant Forces

13.4 Work done by Constant Forces 13.4 Work done by Constnt Forces We will begin our discussion of the concept of work by nlyzing the motion of n object in one dimension cted on by constnt forces. Let s consider the following exmple: push

More information

1.2. Linear Variable Coefficient Equations. y + b "! = a y + b " Remark: The case b = 0 and a non-constant can be solved with the same idea as above.

1.2. Linear Variable Coefficient Equations. y + b ! = a y + b  Remark: The case b = 0 and a non-constant can be solved with the same idea as above. 1 12 Liner Vrible Coefficient Equtions Section Objective(s): Review: Constnt Coefficient Equtions Solving Vrible Coefficient Equtions The Integrting Fctor Method The Bernoulli Eqution 121 Review: Constnt

More information

Chapter 2. Constraints, Lagrange s equations

Chapter 2. Constraints, Lagrange s equations Chpter Constrints, Lgrnge s equtions Section Constrints The position of the prticle or system follows certin rules due to constrints: Holonomic constrint: f (r. r,... r n, t) = 0 Constrints tht re not

More information

A REVIEW OF CALCULUS CONCEPTS FOR JDEP 384H. Thomas Shores Department of Mathematics University of Nebraska Spring 2007

A REVIEW OF CALCULUS CONCEPTS FOR JDEP 384H. Thomas Shores Department of Mathematics University of Nebraska Spring 2007 A REVIEW OF CALCULUS CONCEPTS FOR JDEP 384H Thoms Shores Deprtment of Mthemtics University of Nebrsk Spring 2007 Contents Rtes of Chnge nd Derivtives 1 Dierentils 4 Are nd Integrls 5 Multivrite Clculus

More information

Forces from Strings Under Tension A string under tension medites force: the mgnitude of the force from section of string is the tension T nd the direc

Forces from Strings Under Tension A string under tension medites force: the mgnitude of the force from section of string is the tension T nd the direc Physics 170 Summry of Results from Lecture Kinemticl Vribles The position vector ~r(t) cn be resolved into its Crtesin components: ~r(t) =x(t)^i + y(t)^j + z(t)^k. Rtes of Chnge Velocity ~v(t) = d~r(t)=

More information

14.4. Lengths of curves and surfaces of revolution. Introduction. Prerequisites. Learning Outcomes

14.4. Lengths of curves and surfaces of revolution. Introduction. Prerequisites. Learning Outcomes Lengths of curves nd surfces of revolution 4.4 Introduction Integrtion cn be used to find the length of curve nd the re of the surfce generted when curve is rotted round n xis. In this section we stte

More information

Definition of Continuity: The function f(x) is continuous at x = a if f(a) exists and lim

Definition of Continuity: The function f(x) is continuous at x = a if f(a) exists and lim Mth 9 Course Summry/Study Guide Fll, 2005 [1] Limits Definition of Limit: We sy tht L is the limit of f(x) s x pproches if f(x) gets closer nd closer to L s x gets closer nd closer to. We write lim f(x)

More information

Math 113 Fall Final Exam Review. 2. Applications of Integration Chapter 6 including sections and section 6.8

Math 113 Fall Final Exam Review. 2. Applications of Integration Chapter 6 including sections and section 6.8 Mth 3 Fll 0 The scope of the finl exm will include: Finl Exm Review. Integrls Chpter 5 including sections 5. 5.7, 5.0. Applictions of Integrtion Chpter 6 including sections 6. 6.5 nd section 6.8 3. Infinite

More information

4. Calculus of Variations

4. Calculus of Variations 4. Clculus of Vritions Introduction - Typicl Problems The clculus of vritions generlises the theory of mxim nd minim. Exmple (): Shortest distnce between two points. On given surfce (e.g. plne), nd the

More information

Week 10: Line Integrals

Week 10: Line Integrals Week 10: Line Integrls Introduction In this finl week we return to prmetrised curves nd consider integrtion long such curves. We lredy sw this in Week 2 when we integrted long curve to find its length.

More information

Math& 152 Section Integration by Parts

Math& 152 Section Integration by Parts Mth& 5 Section 7. - Integrtion by Prts Integrtion by prts is rule tht trnsforms the integrl of the product of two functions into other (idelly simpler) integrls. Recll from Clculus I tht given two differentible

More information

Phys 7221, Fall 2006: Homework # 6

Phys 7221, Fall 2006: Homework # 6 Phys 7221, Fll 2006: Homework # 6 Gbriel González October 29, 2006 Problem 3-7 In the lbortory system, the scttering ngle of the incident prticle is ϑ, nd tht of the initilly sttionry trget prticle, which

More information

Partial Derivatives. Limits. For a single variable function f (x), the limit lim

Partial Derivatives. Limits. For a single variable function f (x), the limit lim Limits Prtil Derivtives For single vrible function f (x), the limit lim x f (x) exists only if the right-hnd side limit equls to the left-hnd side limit, i.e., lim f (x) = lim f (x). x x + For two vribles

More information

Review of Calculus, cont d

Review of Calculus, cont d Jim Lmbers MAT 460 Fll Semester 2009-10 Lecture 3 Notes These notes correspond to Section 1.1 in the text. Review of Clculus, cont d Riemnn Sums nd the Definite Integrl There re mny cses in which some

More information

CHM Physical Chemistry I Chapter 1 - Supplementary Material

CHM Physical Chemistry I Chapter 1 - Supplementary Material CHM 3410 - Physicl Chemistry I Chpter 1 - Supplementry Mteril For review of some bsic concepts in mth, see Atkins "Mthemticl Bckground 1 (pp 59-6), nd "Mthemticl Bckground " (pp 109-111). 1. Derivtion

More information

x = b a n x 2 e x dx. cdx = c(b a), where c is any constant. a b

x = b a n x 2 e x dx. cdx = c(b a), where c is any constant. a b CHAPTER 5. INTEGRALS 61 where nd x = b n x i = 1 (x i 1 + x i ) = midpoint of [x i 1, x i ]. Problem 168 (Exercise 1, pge 377). Use the Midpoint Rule with the n = 4 to pproximte 5 1 x e x dx. Some quick

More information

Exam 2, Mathematics 4701, Section ETY6 6:05 pm 7:40 pm, March 31, 2016, IH-1105 Instructor: Attila Máté 1

Exam 2, Mathematics 4701, Section ETY6 6:05 pm 7:40 pm, March 31, 2016, IH-1105 Instructor: Attila Máté 1 Exm, Mthemtics 471, Section ETY6 6:5 pm 7:4 pm, Mrch 1, 16, IH-115 Instructor: Attil Máté 1 17 copies 1. ) Stte the usul sufficient condition for the fixed-point itertion to converge when solving the eqution

More information

f(a+h) f(a) x a h 0. This is the rate at which

f(a+h) f(a) x a h 0. This is the rate at which M408S Concept Inventory smple nswers These questions re open-ended, nd re intended to cover the min topics tht we lerned in M408S. These re not crnk-out-n-nswer problems! (There re plenty of those in the

More information

Advanced Calculus: MATH 410 Notes on Integrals and Integrability Professor David Levermore 17 October 2004

Advanced Calculus: MATH 410 Notes on Integrals and Integrability Professor David Levermore 17 October 2004 Advnced Clculus: MATH 410 Notes on Integrls nd Integrbility Professor Dvid Levermore 17 October 2004 1. Definite Integrls In this section we revisit the definite integrl tht you were introduced to when

More information

Section 14.3 Arc Length and Curvature

Section 14.3 Arc Length and Curvature Section 4.3 Arc Length nd Curvture Clculus on Curves in Spce In this section, we ly the foundtions for describing the movement of n object in spce.. Vector Function Bsics In Clc, formul for rc length in

More information

n f(x i ) x. i=1 In section 4.2, we defined the definite integral of f from x = a to x = b as n f(x i ) x; f(x) dx = lim i=1

n f(x i ) x. i=1 In section 4.2, we defined the definite integral of f from x = a to x = b as n f(x i ) x; f(x) dx = lim i=1 The Fundmentl Theorem of Clculus As we continue to study the re problem, let s think bck to wht we know bout computing res of regions enclosed by curves. If we wnt to find the re of the region below the

More information

Conservation Law. Chapter Goal. 5.2 Theory

Conservation Law. Chapter Goal. 5.2 Theory Chpter 5 Conservtion Lw 5.1 Gol Our long term gol is to understnd how mny mthemticl models re derived. We study how certin quntity chnges with time in given region (sptil domin). We first derive the very

More information

The First Fundamental Theorem of Calculus. If f(x) is continuous on [a, b] and F (x) is any antiderivative. f(x) dx = F (b) F (a).

The First Fundamental Theorem of Calculus. If f(x) is continuous on [a, b] and F (x) is any antiderivative. f(x) dx = F (b) F (a). The Fundmentl Theorems of Clculus Mth 4, Section 0, Spring 009 We now know enough bout definite integrls to give precise formultions of the Fundmentl Theorems of Clculus. We will lso look t some bsic emples

More information

ES.182A Topic 32 Notes Jeremy Orloff

ES.182A Topic 32 Notes Jeremy Orloff ES.8A Topic 3 Notes Jerem Orloff 3 Polr coordintes nd double integrls 3. Polr Coordintes (, ) = (r cos(θ), r sin(θ)) r θ Stndrd,, r, θ tringle Polr coordintes re just stndrd trigonometric reltions. In

More information

The Form of Hanging Slinky

The Form of Hanging Slinky Bulletin of Aichi Univ. of Eduction, 66Nturl Sciences, pp. - 6, Mrch, 07 The Form of Hnging Slinky Kenzi ODANI Deprtment of Mthemtics Eduction, Aichi University of Eduction, Kriy 448-854, Jpn Introduction

More information

The Basic Functional 2 1

The Basic Functional 2 1 2 The Bsic Functionl 2 1 Chpter 2: THE BASIC FUNCTIONAL TABLE OF CONTENTS Pge 2.1 Introduction..................... 2 3 2.2 The First Vrition.................. 2 3 2.3 The Euler Eqution..................

More information

Higher Checklist (Unit 3) Higher Checklist (Unit 3) Vectors

Higher Checklist (Unit 3) Higher Checklist (Unit 3) Vectors Vectors Skill Achieved? Know tht sclr is quntity tht hs only size (no direction) Identify rel-life exmples of sclrs such s, temperture, mss, distnce, time, speed, energy nd electric chrge Know tht vector

More information

MATH , Calculus 2, Fall 2018

MATH , Calculus 2, Fall 2018 MATH 36-2, 36-3 Clculus 2, Fll 28 The FUNdmentl Theorem of Clculus Sections 5.4 nd 5.5 This worksheet focuses on the most importnt theorem in clculus. In fct, the Fundmentl Theorem of Clculus (FTC is rgubly

More information

We partition C into n small arcs by forming a partition of [a, b] by picking s i as follows: a = s 0 < s 1 < < s n = b.

We partition C into n small arcs by forming a partition of [a, b] by picking s i as follows: a = s 0 < s 1 < < s n = b. Mth 255 - Vector lculus II Notes 4.2 Pth nd Line Integrls We begin with discussion of pth integrls (the book clls them sclr line integrls). We will do this for function of two vribles, but these ides cn

More information

Improper Integrals. Type I Improper Integrals How do we evaluate an integral such as

Improper Integrals. Type I Improper Integrals How do we evaluate an integral such as Improper Integrls Two different types of integrls cn qulify s improper. The first type of improper integrl (which we will refer to s Type I) involves evluting n integrl over n infinite region. In the grph

More information

Math 426: Probability Final Exam Practice

Math 426: Probability Final Exam Practice Mth 46: Probbility Finl Exm Prctice. Computtionl problems 4. Let T k (n) denote the number of prtitions of the set {,..., n} into k nonempty subsets, where k n. Argue tht T k (n) kt k (n ) + T k (n ) by

More information

Solution to HW 4, Ma 1c Prac 2016

Solution to HW 4, Ma 1c Prac 2016 Solution to HW 4 M c Prc 6 Remrk: every function ppering in this homework set is sufficiently nice t lest C following the jrgon from the textbook we cn pply ll kinds of theorems from the textbook without

More information

Properties of Integrals, Indefinite Integrals. Goals: Definition of the Definite Integral Integral Calculations using Antiderivatives

Properties of Integrals, Indefinite Integrals. Goals: Definition of the Definite Integral Integral Calculations using Antiderivatives Block #6: Properties of Integrls, Indefinite Integrls Gols: Definition of the Definite Integrl Integrl Clcultions using Antiderivtives Properties of Integrls The Indefinite Integrl 1 Riemnn Sums - 1 Riemnn

More information

Line Integrals. Chapter Definition

Line Integrals. Chapter Definition hpter 2 Line Integrls 2.1 Definition When we re integrting function of one vrible, we integrte long n intervl on one of the xes. We now generlize this ide by integrting long ny curve in the xy-plne. It

More information

Some Methods in the Calculus of Variations

Some Methods in the Calculus of Variations CHAPTER 6 Some Methods in the Clculus of Vritions 6-. If we use the vried function ( α, ) α sin( ) + () Then d α cos ( ) () d Thus, the totl length of the pth is d S + d d α cos ( ) + α cos ( ) d Setting

More information

Physics 161: Black Holes: Lecture 6: 14 Jan 2011

Physics 161: Black Holes: Lecture 6: 14 Jan 2011 Physics 161: Blck Holes: Lecture 6: 14 Jn 2011 Professor: Kim Griest 6 Geodesics: Moving in stright lines through curved spcetime We sw tht grvity curves time nd spce. A very importnt result is how things

More information

Space Curves. Recall the parametric equations of a curve in xy-plane and compare them with parametric equations of a curve in space.

Space Curves. Recall the parametric equations of a curve in xy-plane and compare them with parametric equations of a curve in space. Clculus 3 Li Vs Spce Curves Recll the prmetric equtions of curve in xy-plne nd compre them with prmetric equtions of curve in spce. Prmetric curve in plne x = x(t) y = y(t) Prmetric curve in spce x = x(t)

More information

MATH 144: Business Calculus Final Review

MATH 144: Business Calculus Final Review MATH 144: Business Clculus Finl Review 1 Skills 1. Clculte severl limits. 2. Find verticl nd horizontl symptotes for given rtionl function. 3. Clculte derivtive by definition. 4. Clculte severl derivtives

More information

dt. However, we might also be curious about dy

dt. However, we might also be curious about dy Section 0. The Clculus of Prmetric Curves Even though curve defined prmetricly my not be function, we cn still consider concepts such s rtes of chnge. However, the concepts will need specil tretment. For

More information

Math 100 Review Sheet

Math 100 Review Sheet Mth 100 Review Sheet Joseph H. Silvermn December 2010 This outline of Mth 100 is summry of the mteril covered in the course. It is designed to be study id, but it is only n outline nd should be used s

More information

10 Vector Integral Calculus

10 Vector Integral Calculus Vector Integrl lculus Vector integrl clculus extends integrls s known from clculus to integrls over curves ("line integrls"), surfces ("surfce integrls") nd solids ("volume integrls"). These integrls hve

More information

Theoretische Physik 2: Elektrodynamik (Prof. A.-S. Smith) Home assignment 4

Theoretische Physik 2: Elektrodynamik (Prof. A.-S. Smith) Home assignment 4 WiSe 1 8.1.1 Prof. Dr. A.-S. Smith Dipl.-Phys. Ellen Fischermeier Dipl.-Phys. Mtthis Sb m Lehrstuhl für Theoretische Physik I Deprtment für Physik Friedrich-Alexnder-Universität Erlngen-Nürnberg Theoretische

More information

Chapter 0. What is the Lebesgue integral about?

Chapter 0. What is the Lebesgue integral about? Chpter 0. Wht is the Lebesgue integrl bout? The pln is to hve tutoril sheet ech week, most often on Fridy, (to be done during the clss) where you will try to get used to the ides introduced in the previous

More information

Heat flux and total heat

Heat flux and total heat Het flux nd totl het John McCun Mrch 14, 2017 1 Introduction Yesterdy (if I remember correctly) Ms. Prsd sked me question bout the condition of insulted boundry for the 1D het eqution, nd (bsed on glnce

More information

1 Probability Density Functions

1 Probability Density Functions Lis Yn CS 9 Continuous Distributions Lecture Notes #9 July 6, 28 Bsed on chpter by Chris Piech So fr, ll rndom vribles we hve seen hve been discrete. In ll the cses we hve seen in CS 9, this ment tht our

More information

Math 113 Exam 2 Practice

Math 113 Exam 2 Practice Mth 3 Exm Prctice Februry 8, 03 Exm will cover 7.4, 7.5, 7.7, 7.8, 8.-3 nd 8.5. Plese note tht integrtion skills lerned in erlier sections will still be needed for the mteril in 7.5, 7.8 nd chpter 8. This

More information

4.4 Areas, Integrals and Antiderivatives

4.4 Areas, Integrals and Antiderivatives . res, integrls nd ntiderivtives 333. Ares, Integrls nd Antiderivtives This section explores properties of functions defined s res nd exmines some connections mong res, integrls nd ntiderivtives. In order

More information

First midterm topics Second midterm topics End of quarter topics. Math 3B Review. Steve. 18 March 2009

First midterm topics Second midterm topics End of quarter topics. Math 3B Review. Steve. 18 March 2009 Mth 3B Review Steve 18 Mrch 2009 About the finl Fridy Mrch 20, 3pm-6pm, Lkretz 110 No notes, no book, no clcultor Ten questions Five review questions (Chpters 6,7,8) Five new questions (Chpters 9,10) No

More information

approaches as n becomes larger and larger. Since e > 1, the graph of the natural exponential function is as below

approaches as n becomes larger and larger. Since e > 1, the graph of the natural exponential function is as below . Eponentil nd rithmic functions.1 Eponentil Functions A function of the form f() =, > 0, 1 is clled n eponentil function. Its domin is the set of ll rel f ( 1) numbers. For n eponentil function f we hve.

More information

NUMERICAL INTEGRATION

NUMERICAL INTEGRATION NUMERICAL INTEGRATION How do we evlute I = f (x) dx By the fundmentl theorem of clculus, if F (x) is n ntiderivtive of f (x), then I = f (x) dx = F (x) b = F (b) F () However, in prctice most integrls

More information

Travelling Profile Solutions For Nonlinear Degenerate Parabolic Equation And Contour Enhancement In Image Processing

Travelling Profile Solutions For Nonlinear Degenerate Parabolic Equation And Contour Enhancement In Image Processing Applied Mthemtics E-Notes 8(8) - c IN 67-5 Avilble free t mirror sites of http://www.mth.nthu.edu.tw/ men/ Trvelling Profile olutions For Nonliner Degenerte Prbolic Eqution And Contour Enhncement In Imge

More information

Math 5440 Problem Set 3 Solutions

Math 5440 Problem Set 3 Solutions Mth 544 Mth 544 Problem Set 3 Solutions Aron Fogelson Fll, 213 1: (Logn, 1.5 # 2) Repet the derivtion for the eqution of motion of vibrting string when, in ddition, the verticl motion is retrded by dmping

More information

l 2 p2 n 4n 2, the total surface area of the

l 2 p2 n 4n 2, the total surface area of the Week 6 Lectures Sections 7.5, 7.6 Section 7.5: Surfce re of Revolution Surfce re of Cone: Let C be circle of rdius r. Let P n be n n-sided regulr polygon of perimeter p n with vertices on C. Form cone

More information

Lecture 6: Singular Integrals, Open Quadrature rules, and Gauss Quadrature

Lecture 6: Singular Integrals, Open Quadrature rules, and Gauss Quadrature Lecture notes on Vritionl nd Approximte Methods in Applied Mthemtics - A Peirce UBC Lecture 6: Singulr Integrls, Open Qudrture rules, nd Guss Qudrture (Compiled 6 August 7) In this lecture we discuss the

More information

INTRODUCTION TO INTEGRATION

INTRODUCTION TO INTEGRATION INTRODUCTION TO INTEGRATION 5.1 Ares nd Distnces Assume f(x) 0 on the intervl [, b]. Let A be the re under the grph of f(x). b We will obtin n pproximtion of A in the following three steps. STEP 1: Divide

More information

The Fundamental Theorem of Calculus. The Total Change Theorem and the Area Under a Curve.

The Fundamental Theorem of Calculus. The Total Change Theorem and the Area Under a Curve. Clculus Li Vs The Fundmentl Theorem of Clculus. The Totl Chnge Theorem nd the Are Under Curve. Recll the following fct from Clculus course. If continuous function f(x) represents the rte of chnge of F

More information

Problem set 1: Solutions Math 207B, Winter 2016

Problem set 1: Solutions Math 207B, Winter 2016 Problem set 1: Solutions Mth 27B, Winter 216 1. Define f : R 2 R by f(,) = nd f(x,y) = xy3 x 2 +y 6 if (x,y) (,). ()Show tht thedirectionl derivtives of f t (,)exist inevery direction. Wht is its Gâteux

More information

Math 124A October 04, 2011

Math 124A October 04, 2011 Mth 4A October 04, 0 Viktor Grigoryn 4 Vibrtions nd het flow In this lecture we will derive the wve nd het equtions from physicl principles. These re second order constnt coefficient liner PEs, which model

More information

1 Techniques of Integration

1 Techniques of Integration November 8, 8 MAT86 Week Justin Ko Techniques of Integrtion. Integrtion By Substitution (Chnge of Vribles) We cn think of integrtion by substitution s the counterprt of the chin rule for differentition.

More information

1.3 The Lemma of DuBois-Reymond

1.3 The Lemma of DuBois-Reymond 28 CHAPTER 1. INDIRECT METHODS 1.3 The Lemm of DuBois-Reymond We needed extr regulrity to integrte by prts nd obtin the Euler- Lgrnge eqution. The following result shows tht, t lest sometimes, the extr

More information

Main topics for the Second Midterm

Main topics for the Second Midterm Min topics for the Second Midterm The Midterm will cover Sections 5.4-5.9, Sections 6.1-6.3, nd Sections 7.1-7.7 (essentilly ll of the mteril covered in clss from the First Midterm). Be sure to know the

More information

Unit #9 : Definite Integral Properties; Fundamental Theorem of Calculus

Unit #9 : Definite Integral Properties; Fundamental Theorem of Calculus Unit #9 : Definite Integrl Properties; Fundmentl Theorem of Clculus Gols: Identify properties of definite integrls Define odd nd even functions, nd reltionship to integrl vlues Introduce the Fundmentl

More information

Problem Set 3 Solutions

Problem Set 3 Solutions Msschusetts Institute of Technology Deprtment of Physics Physics 8.07 Fll 2005 Problem Set 3 Solutions Problem 1: Cylindricl Cpcitor Griffiths Problems 2.39: Let the totl chrge per unit length on the inner

More information

HOMEWORK SOLUTIONS MATH 1910 Sections 7.9, 8.1 Fall 2016

HOMEWORK SOLUTIONS MATH 1910 Sections 7.9, 8.1 Fall 2016 HOMEWORK SOLUTIONS MATH 9 Sections 7.9, 8. Fll 6 Problem 7.9.33 Show tht for ny constnts M,, nd, the function yt) = )) t ) M + tnh stisfies the logistic eqution: y SOLUTION. Let Then nd Finlly, y = y M

More information

different methods (left endpoint, right endpoint, midpoint, trapezoid, Simpson s).

different methods (left endpoint, right endpoint, midpoint, trapezoid, Simpson s). Mth 1A with Professor Stnkov Worksheet, Discussion #41; Wednesdy, 12/6/217 GSI nme: Roy Zho Problems 1. Write the integrl 3 dx s limit of Riemnn sums. Write it using 2 intervls using the 1 x different

More information

Name Solutions to Test 3 November 8, 2017

Name Solutions to Test 3 November 8, 2017 Nme Solutions to Test 3 November 8, 07 This test consists of three prts. Plese note tht in prts II nd III, you cn skip one question of those offered. Some possibly useful formuls cn be found below. Brrier

More information

Math 231E, Lecture 33. Parametric Calculus

Math 231E, Lecture 33. Parametric Calculus Mth 31E, Lecture 33. Prmetric Clculus 1 Derivtives 1.1 First derivtive Now, let us sy tht we wnt the slope t point on prmetric curve. Recll the chin rule: which exists s long s /. = / / Exmple 1.1. Reconsider

More information

Section 6.1 INTRO to LAPLACE TRANSFORMS

Section 6.1 INTRO to LAPLACE TRANSFORMS Section 6. INTRO to LAPLACE TRANSFORMS Key terms: Improper Integrl; diverge, converge A A f(t)dt lim f(t)dt Piecewise Continuous Function; jump discontinuity Function of Exponentil Order Lplce Trnsform

More information

Section 4: Integration ECO4112F 2011

Section 4: Integration ECO4112F 2011 Reding: Ching Chpter Section : Integrtion ECOF Note: These notes do not fully cover the mteril in Ching, ut re ment to supplement your reding in Ching. Thus fr the optimistion you hve covered hs een sttic

More information

Classical Mechanics. From Molecular to Con/nuum Physics I WS 11/12 Emiliano Ippoli/ October, 2011

Classical Mechanics. From Molecular to Con/nuum Physics I WS 11/12 Emiliano Ippoli/ October, 2011 Clssicl Mechnics From Moleculr to Con/nuum Physics I WS 11/12 Emilino Ippoli/ October, 2011 Wednesdy, October 12, 2011 Review Mthemtics... Physics Bsic thermodynmics Temperture, idel gs, kinetic gs theory,

More information

Integration Techniques

Integration Techniques Integrtion Techniques. Integrtion of Trigonometric Functions Exmple. Evlute cos x. Recll tht cos x = cos x. Hence, cos x Exmple. Evlute = ( + cos x) = (x + sin x) + C = x + 4 sin x + C. cos 3 x. Let u

More information

Math 32B Discussion Session Session 7 Notes August 28, 2018

Math 32B Discussion Session Session 7 Notes August 28, 2018 Mth 32B iscussion ession ession 7 Notes August 28, 28 In tody s discussion we ll tlk bout surfce integrls both of sclr functions nd of vector fields nd we ll try to relte these to the mny other integrls

More information

Summary: Method of Separation of Variables

Summary: Method of Separation of Variables Physics 246 Electricity nd Mgnetism I, Fll 26, Lecture 22 1 Summry: Method of Seprtion of Vribles 1. Seprtion of Vribles in Crtesin Coordintes 2. Fourier Series Suggested Reding: Griffiths: Chpter 3, Section

More information

5.7 Improper Integrals

5.7 Improper Integrals 458 pplictions of definite integrls 5.7 Improper Integrls In Section 5.4, we computed the work required to lift pylod of mss m from the surfce of moon of mss nd rdius R to height H bove the surfce of the

More information

STURM-LIOUVILLE BOUNDARY VALUE PROBLEMS

STURM-LIOUVILLE BOUNDARY VALUE PROBLEMS STURM-LIOUVILLE BOUNDARY VALUE PROBLEMS Throughout, we let [, b] be bounded intervl in R. C 2 ([, b]) denotes the spce of functions with derivtives of second order continuous up to the endpoints. Cc 2

More information

Section 4.8. D v(t j 1 ) t. (4.8.1) j=1

Section 4.8. D v(t j 1 ) t. (4.8.1) j=1 Difference Equtions to Differentil Equtions Section.8 Distnce, Position, nd the Length of Curves Although we motivted the definition of the definite integrl with the notion of re, there re mny pplictions

More information

20 MATHEMATICS POLYNOMIALS

20 MATHEMATICS POLYNOMIALS 0 MATHEMATICS POLYNOMIALS.1 Introduction In Clss IX, you hve studied polynomils in one vrible nd their degrees. Recll tht if p(x) is polynomil in x, the highest power of x in p(x) is clled the degree of

More information

1 Line Integrals in Plane.

1 Line Integrals in Plane. MA213 thye Brief Notes on hpter 16. 1 Line Integrls in Plne. 1.1 Introduction. 1.1.1 urves. A piece of smooth curve is ssumed to be given by vector vlued position function P (t) (or r(t) ) s the prmeter

More information

How do we solve these things, especially when they get complicated? How do we know when a system has a solution, and when is it unique?

How do we solve these things, especially when they get complicated? How do we know when a system has a solution, and when is it unique? XII. LINEAR ALGEBRA: SOLVING SYSTEMS OF EQUATIONS Tody we re going to tlk bout solving systems of liner equtions. These re problems tht give couple of equtions with couple of unknowns, like: 6 2 3 7 4

More information

Math 135, Spring 2012: HW 7

Math 135, Spring 2012: HW 7 Mth 3, Spring : HW 7 Problem (p. 34 #). SOLUTION. Let N the number of risins per cookie. If N is Poisson rndom vrible with prmeter λ, then nd for this to be t lest.99, we need P (N ) P (N ) ep( λ) λ ln(.)

More information

A. Limits - L Hopital s Rule ( ) How to find it: Try and find limits by traditional methods (plugging in). If you get 0 0 or!!, apply C.! 1 6 C.

A. Limits - L Hopital s Rule ( ) How to find it: Try and find limits by traditional methods (plugging in). If you get 0 0 or!!, apply C.! 1 6 C. A. Limits - L Hopitl s Rule Wht you re finding: L Hopitl s Rule is used to find limits of the form f ( x) lim where lim f x x! c g x ( ) = or lim f ( x) = limg( x) = ". ( ) x! c limg( x) = 0 x! c x! c

More information

MAT187H1F Lec0101 Burbulla

MAT187H1F Lec0101 Burbulla Chpter 6 Lecture Notes Review nd Two New Sections Sprint 17 Net Distnce nd Totl Distnce Trvelled Suppose s is the position of prticle t time t for t [, b]. Then v dt = s (t) dt = s(b) s(). s(b) s() is

More information

Indefinite Integral. Chapter Integration - reverse of differentiation

Indefinite Integral. Chapter Integration - reverse of differentiation Chpter Indefinite Integrl Most of the mthemticl opertions hve inverse opertions. The inverse opertion of differentition is clled integrtion. For exmple, describing process t the given moment knowing the

More information

IMPORTANT. Read these directions carefully:

IMPORTANT. Read these directions carefully: Physics 208: Electricity nd Mgnetism Finl Exm, Secs. 506 510. 7 My. 2004 Instructor: Dr. George R. Welch, 415 Engineering-Physics, 845-7737 Print your nme netly: Lst nme: First nme: Sign your nme: Plese

More information

MATH 13 FINAL STUDY GUIDE, WINTER 2012

MATH 13 FINAL STUDY GUIDE, WINTER 2012 MATH 13 FINAL TUY GUI, WINTR 2012 This is ment to be quick reference guide for the topics you might wnt to know for the finl. It probbly isn t comprehensive, but should cover most of wht we studied in

More information

Lecture 20: Numerical Integration III

Lecture 20: Numerical Integration III cs4: introduction to numericl nlysis /8/0 Lecture 0: Numericl Integrtion III Instructor: Professor Amos Ron Scribes: Mrk Cowlishw, Yunpeng Li, Nthnel Fillmore For the lst few lectures we hve discussed

More information

Math 5440 Problem Set 3 Solutions

Math 5440 Problem Set 3 Solutions Mth 544 Mth 544 Problem Set 3 Solutions Aron Fogelson Fll, 25 1: Logn, 1.5 # 2) Repet the derivtion for the eqution of motion of vibrting string when, in ddition, the verticl motion is retrded by dmping

More information

1.9 C 2 inner variations

1.9 C 2 inner variations 46 CHAPTER 1. INDIRECT METHODS 1.9 C 2 inner vritions So fr, we hve restricted ttention to liner vritions. These re vritions of the form vx; ǫ = ux + ǫφx where φ is in some liner perturbtion clss P, for

More information