Physics 229& 100 Homework #1 Name: Nasser Abbasi

Size: px
Start display at page:

Download "Physics 229& 100 Homework #1 Name: Nasser Abbasi"

Transcription

1 Physics 229& 100 Homework #1 Name: Nasser Abbasi (converted to 6.0) 1. Practice in transcribing expressions into Mathematica syntax a) Find the determinant of this matrix: In[94]:= a = {{1, 2, 3, 4}, {1, -1, 0, 1}, {-1, 2, 6, 7}, {0, 2, 4, 1}}; Print["Determinant of the matrix is ", Det[a]] Determinant of the matrix is 57 b) If y = 0 x sin t 2 dt, what is d y d x? In[96]:= Clear[y, x] y[x_] := Integrate Sin[t^2], t, 0, Print " dy =", D[y[x], x] ; dx dy dx = Sin[x] 2 x x ;

2 2 AbbasiN12_FINAL.nb c) In your E&M book, you find the following equation which describes an LCR circuit : L d2 I + R d I + I = V d t 2 d t C 0 cos ω t. Use DSolve to find the general solution to the equation. In[99]:= Clear[r, L0, i, t, v0, w, c]; eq = L0 i''[t] + r i'[t] + i[t] v0 Cos[w t]; c sol = DSolve[eq, i[t], t]; Print["I(t)=", i[t] /. sol[[1]] /. {C[1] k1, C[2] k2}]; I(t)= 1 2 e - r -4 L0+c r2 - L0 c L0 t k1 + e r L L0+c r2 c L0 t k2-4 c L0 2 v0 (-Cos[t w] + c L0 w 2 Cos[t w] - c r w Sin[t w]) -2 L0 + c r 2 - c r -4 L0 + c r c L0 2 w 2-2 L0 + c r 2 + c r -4 L0 + c r c L0 2 w 2 d) Find the first 3 terms in the Taylor's series expansion of about x=0. In[103]:= Clear[f, x, a] f[x_] := a + Log[x + 1] ; Normal[Series[f[x], {x, 0, 2}]] x Out[105]= a + 2 a (-1-2 a) x2 + 8 a 3/2 2 The electromagnetic energy density inside a cavity at temperature T has a distribution of frequencies f. The distribution is given by the famous Planck formula u (f) = 8 π f2 c 3 constant, and c is the velocity of light. hf, where h is Planck's constant, k is Boltzmann's e hf kt -1

3 AbbasiN12_FINAL.nb 3 a) Make a plot of the energy density as a function of f for T=100K and 300K. Be sure to include the physically relevant range of f. Make the curves different colors. Make a substitution rule to provide numerical values for the constants. In[106]:= Remove["Global`*"]; c = QuantityMagnitude@ UnitConvert[Quantity["SpeedOfLight"]]; h = QuantityMagnitude@ UnitConvert[Quantity["PlanckConstant"]]; k = QuantityMagnitude@ UnitConvert[Quantity["BoltzmannConstant"]]; minfrequency = 0.001; maxfrequency = 3 * 10^14; 8 Pi f^2 (h f) u[f_, T0_] := ; c^3 Exp h f k T0-1 In[113]:= Plot[{u[f, 100], u[f, 300]}, {f, minfrequency, 10 ^14}, PlotRange All, FrameLabel {"frequency in Hz", "Energy Density (J per unit volume)"}, PlotStyle {Red, Blue}, Frame True, PlotLabel "Planck Formula for different tempreture"] Planck Formula for different tempreture Out[113]= Energy Density (J per unit volume) frequency in Hz

4 4 AbbasiN12_FINAL.nb b) Find the total energy in the cavity, which is given by the integral of the energy density over frequency. Leave the result in symbolic form( i.e. in terms of h, k, c, etc.). You might want to include an Assumptions->Re[ ]>0 to avoid If statements in the answer. See examples of this in Integrate. In[117]:= Clear[h, k, c] u[f_] := 8 Pi f^2 c^3 h f Exp h f k T0-1 sol = Integrate u[f], {f, 0, Infinity}, Assumptions Re h k T0 > 0 ; Print["Total energy is ", sol, " Joules"] Total energy is 8 k4 π 5 T0 4 Joules 15 c 3 h 3 c) The power flux in the radiation is the total energy times the rate at which it moves (which is the speed of light, c) times a geometrical factor (1/4). Evaluate this and find the numerical coefficient of T 4 ; this is the Stefan-Boltzmann constant of radiative transfer. In[121]:= Clear[f, T0]; sol = Integrate u[f, T0], {f, 0, Infinity}, Assumptions Re h k T0 > 0 ; sol = 1 * sol * c; 4 Print "coefficient of T 4 =", coeff = Coefficient[Collect[sol, T0], T0^4] ; c = QuantityMagnitude@ UnitConvert[Quantity["SpeedOfLight"]]; h = QuantityMagnitude@ UnitConvert[Quantity["PlanckConstant"]]; k = QuantityMagnitude@ UnitConvert[Quantity["BoltzmannConstant"]]; Print "Its numerical value is =", coeff, " J K -4 m -2 s -1 " ; coefficient of T 4 = 2 k4 π 5 15 c 2 h 3 Its numerical value is = J K -4 m -2 s -1 3

5 AbbasiN12_FINAL.nb 5 Conic sections can be described by the equation 1 r = 1 + e Cos[θ], where e is the eccentricity, and r and θ are polar coordinates, with x = r Cos[θ] and y = r Sin[θ]. Use ParametricPlot to draw the curves for e=0.8, e=1, and e=1.5 In[150]:= Remove["Global`*"]; eq = 1 r 1 + e Cos[θ]; 1 r = 1 + e Cos[θ] ; x = r Cos[θ]; y = r Sin[θ]; plotit[v_] := ParametricPlot[Evaluate[{x /.e v, y /.e v}], {θ, 0, 2 π}, PlotLabel {"PLot for e=", v}, ImageSize 200] Row[plotit /@ {0.8, 1, 1.5}] Out[156]= {PLot for e=, 0.8} {PLot for e=, 1} {PLot for e=, 1.5}

6 6 AbbasiN12_FINAL.nb 4 The temperature in degrees Fahrenheit F is related to the temperature in degrees centigrade C by the formula F= 9 5 C The temperature in Kelvin K is related to the centigrade temperature by C-273=K. Use Table to make a table which gives all three temperatures for K=0,300 in 10 degree increments. Use TableForm with TableHeadings to make a nice printout. In[157]:= Remove["Global`*"]; converttof[k_] := 9 5 converttoc[k] + 32.; converttoc[k_] := k ; Table[{k, converttoc[k], converttof[k]}, {k, 0, 300, 10}]; TableForm[%, TableHeadings -> {None, {"Kelvin", "Centigrade", "Fahrenheit"}}] Out[161]//TableForm= Kelvin Centigrade Fahrenheit

7 AbbasiN12_FINAL.nb 7 5 Consider the system of linear equations a) Solve for x,y,z,w using Solve. In[162]:= Remove["Global`*"]; eq1 = I x + y + z - I w 0; eq2 = x + I y - I z + w I; eq3 = x - y + e i δ z + e -i δ w 1; eq4 = x - I y + e i δ z - e -i δ w 0; sol1 = Solve[{eq1, eq2, eq3, eq4}, {x, y, z, w}]; Print["x = ", x1 = First[x /. sol1]]; Print["y = ", y1 = First[y /. sol1]]; Print["z = ", z1 = First[z /. sol1]]; Print["w = ", w1 = First[w /. sol1]]; (-2 + i) + e 2 i δ x = - 2 (1 - i) - (2 + i) e i δ + i e 2 i δ 1 + i -i ei δ y = - (-1 + i) + e i δ 1 - i ei δ z = (-1 - i) - (1-2 i) e i δ + e 2 i δ 1 + i 2 ei δ w = - (-1 - i) + i e i δ

8 8 AbbasiN12_FINAL.nb b) Extract the matrix of coefficients. One convenient way to do this is to use Input-> Create Table/Matrix/Palette->Matrix. Solve for x,y,z,w using Inverse. Convince yourself you get the same answers as in part a. In[172]:= eq1 = I x + y + z - I w 0; eq2 = x + I y - I z + w I; eq3 = x - y + e i δ z + e -i δ w 1; eq4 = x - I y + e i δ z - e -i δ w 0; eqs = {eq1, eq2, eq3, eq4}; {b, coeff} = Normal[CoefficientArrays[eqs, {x, y, z, w}]]; Print["Matrix of coefficients=", MatrixForm[coeff]] sol2 = LinearSolve[coeff, b]; Print["x = ", x2 = sol2[[1]]]; Print["y = ", y2 = sol2[[2]]]; Print["z = ", z2 = sol2[[3]]]; Print["w = ", w2 = sol2[[4]]]; Print["Verifying same as part a..."]; If[Simplify[x1 - x2] == 0, Print["x verfied OK"], Print["x NOT verified"]]; If[Simplify[y1 - y2] == 0, Print["y verfied OK"], Print["y NOT verified"]]; If[Simplify[z1 - z2] == 0, Print["z verfied OK"], Print["z NOT verified"]]; If[Simplify[w1 - w2] == 0, Print["w verfied OK"], Print["w NOT verified"]];

9 AbbasiN12_FINAL.nb 9 Matrix of coefficients= i 1 1 -i 1 i -i e i δ e -i δ 1 -i e i δ -e -i δ x = (-2 + i) + e 2 i δ i e i δ (-1 + i) + e i δ 1 + i -i ei δ y = (-1 + i) + e i δ 1 - i ei δ z = - (-1 + i) + e i δ i + e i δ 1 + i 2 ei δ w = (-1 - i) + i e i δ Verifying same as part a...

10 10 AbbasiN12_FINAL.nb 6 The Bernoulli numbers B n appear in many formulas you will find in tables of integrals. They are defined as the coefficients of powers of z in the expansion z e z -1 =1+B 1z+ B 2 2! z2 + B 3 3! z3... Write a function bern[n] that returns the nth Bernoulli number. Use Series and Coefficient[expr,form] to extract the coefficient. Use the function and the Table command to make a table of the first 20 Bernoulli numbers. Compare with the built-in function BernoulliB. z In[189]:= f[z_] := e z - 1 ; bern[n_] := Coefficient Normal[Series[f[z], {z, 0, n}]], z n * Factorial[n] t = Table[{n, bern[n], BernoulliB[n]}, {n, 1, 20}]; TableForm[t, TableHeadings -> {None, {"n", "bern[n]", "BernoulliB[n]"}}]

11 AbbasiN12_FINAL.nb 11 Out[192]//TableForm= n bern[n] BernoulliB[n]

12 12 AbbasiN12_FINAL.nb 7 Consider the quadratic equation x 2 + R1 x + R2 = 0, where R1 and R2 are independent random numbers uniformly distributed on [0,1]. a) For each choice of random coefficients R1 and R2, the equation has two solutions, x1 and x2. Write a function printsol[neq_] which prints out x1 and x2 for neq randomly generated equations. Use a Do loop. Execute the function for neq->15. In[193]:= Remove["Global`*"]; neq = 15; printsol[] := Module[{eq, sol, x}, eq = x^2 + RandomReal[] x + RandomReal[] 0; sol = Solve[eq, x]; sol = x /. sol; Print["x 1 = ", sol[[1]], " x 2 = ", sol[[2]]]; ]; Do[printsol[], {n, 1, neq}];

13 AbbasiN12_FINAL.nb 13 x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i x 1 = x 2 = x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i x 1 = x 2 = x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i x 1 = i x 2 = i In[197]:= printsol[npts_] := Module[{x, x1, x2, s}, Do[s = Flatten[Solve[x^ 2 + RandomReal[] * x + RandomReal[] == 0, x]]; x1 = x /. First[s]; x2 = x /. Last[s]; Print["x1= ", x1, " x2= ", x2], {i, 1, npts}]] In[198]:= printsol[15] x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= x2= x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i x1= i x2= i b) Write a function reimxy[neq_] which computes the solutions x1 and x2

14 14 AbbasiN12_FINAL.nb discussed above, and plots the location of each point in the complex plane. Initialize a list xy={}, and use Re, Im, AppendTo, ListPlot, and Do. Execute the function for neq->5000. What fraction of the solutions are Real, i.e. have zero imaginary part? Use a counter and If. In[199]:= Remove["Global`*"]; xy = {}; re = 0; neq = 5000; reimxy[] := Module {eq, sol, x, x1, x2}, eq = x 2 + RandomReal[] x + RandomReal[] 0; sol = Solve[eq, x]; sol = x /. sol; x1 = sol[[1]]; x2 = sol[[2]]; If[Im[x1] 0 && Im[x2] 0, re = re + 1]; xy = Append[xy, {Re[x1], Im[x1]}]; xy = Append[xy, {Re[x2], Im[x2]}]; ; Do[reimxy[], {n, 1, neq}]; ListPlot[xy, PlotLabel -> "Solution in the complex plane", AxesLabel {"Real axes", "Imaginary axes"}] Print "Out of ", neq, " equations, there were ", re, " real solutions. This is ", re * 100. neq, "% of all solutions"

15 AbbasiN12_FINAL.nb 15 Solution in the complex plane Imaginary axes Out[205]= Real axes Out of 5000 equations, there were 415 real solutions. This is 8.3% of all solutions 8 Find the center of mass of a solid half sphere of radius R. Recall that the position of the center of mass is x cm = 1 M x ρ dv, y ρ dv, z ρ dv, where M is the total mass and ρ is the density. Include a diagram which specifies your coordinate system. Go here for a reminder about how to do this. Remove["Global`*"] (*By symmetry, the x and y coordinates of center of mass must be located at the origin. Hence we only need to determine the z coordinate*)

16 16 AbbasiN12_FINAL.nb In[207]:= volumeofsphere = 0 R 0 π 0 2 π r 2 Sin[θ] dϕ dθ dr ; (*using spherical coordinates*) volumeofhemisphere = volumeofsphere ; 2 z = r Cos[θ]; (*by expressing z in spherical coordinates, see diagram*) π 1 R 2 π zcoord = volumeofhemisphere 2 0 z r 2 Sin[θ] dϕ dθ dr; 0 0 Print["Coordinates of center of mass are X=0, Y=0, Z=", zcoord]; Coordinates of center of mass are X=0, Y=0, Z= 3 R 8 9 (grads only) The wavefunctions for the quantum mechanical harmonic oscillator are proportional to e - x2 2 H n (x) where H n (x) are the Hermite polynomials defined by H n (x)=(-1) n e x2 n x e -x2. Write a function hermite[n] which returns the nth Hermite polynomial. Compare your answer with the built-in function HermiteH[n,x].Write a function psi[n] that returns the nth harmonic oscillator wave function. Make sure that your wave functions are normalized, ie that - Ψ * Ψ dx=1. Plot psi[13] and psi[13]^2, the probability density of finding the particle at x. (See the examples section of Plot for the trick for getting Plot to work properly.)

17 AbbasiN12_FINAL.nb (grads only) van der Waals attraction to a wall van der Waals interactions between molecules produce an attractive interaction described by a potential of the form - C 6, where r is the distance between 2 r 6 molecules. Show that the interaction energy between a molecule and a half space ( a solid wall) is -C 6 π ρif the molecule is a distance h from a wall with density of 6 h 3 molecules ρ. The molecule is at vector position x1={0,0,h} x2={x,y,z} is the position of a typical molecule in the wall, and ranges over the region z<0. If the number density of molecules in the solid wall is ρ, the potential energy of interaction between the molecule at x1 and all of the molecules in the wall is -ρ C 6 x1-x2 6 dx dy dz, where the range of integration is over the solid half space.

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

Sections minutes. 5 to 10 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed.

Sections minutes. 5 to 10 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed. MTH 34 Review for Exam 4 ections 16.1-16.8. 5 minutes. 5 to 1 problems, similar to homework problems. No calculators, no notes, no books, no phones. No green book needed. Review for Exam 4 (16.1) Line

More information

Math 253 Homework due Wednesday, March 9 SOLUTIONS

Math 253 Homework due Wednesday, March 9 SOLUTIONS Math 53 Homework due Wednesday, March 9 SOLUTIONS 1. Do Section 8.8, problems 11,, 15, 17 (these problems have to do with Taylor s Inequality, and they are very similar to what we did on the last homework.

More information

A small note on the statistical method of moments for fitting a probability model to data

A small note on the statistical method of moments for fitting a probability model to data A small note on the statistical method of moments for fitting a probability model to data by Nasser Abbasi, Nov 16, 2007 Mathematics 502 probability and statistics, CSUF, Fall 2007 f x x Μ 2 2 Σ 2 2 Π

More information

Problem Set 5 Math 213, Fall 2016

Problem Set 5 Math 213, Fall 2016 Problem Set 5 Math 213, Fall 216 Directions: Name: Show all your work. You are welcome and encouraged to use Mathematica, or similar software, to check your answers and aid in your understanding of the

More information

Lecture 22 Appendix B (More on Legendre Polynomials and Associated Legendre functions)

Lecture 22 Appendix B (More on Legendre Polynomials and Associated Legendre functions) Lecture Appendix B (More on Legendre Polynomials and Associated Legendre functions) Ex.7: Let's use Mathematica to solve the equation and then verify orthogonality. First In[]:= Out[]= DSolve y'' x n^y

More information

MATHS 267 Answers to Stokes Practice Dr. Jones

MATHS 267 Answers to Stokes Practice Dr. Jones MATH 267 Answers to tokes Practice Dr. Jones 1. Calculate the flux F d where is the hemisphere x2 + y 2 + z 2 1, z > and F (xz + e y2, yz, z 2 + 1). Note: the surface is open (doesn t include any of the

More information

Figure 25:Differentials of surface.

Figure 25:Differentials of surface. 2.5. Change of variables and Jacobians In the previous example we saw that, once we have identified the type of coordinates which is best to use for solving a particular problem, the next step is to do

More information

- 1 - θ 1. n 1. θ 2. mirror. object. image

- 1 - θ 1. n 1. θ 2. mirror. object. image TEST 5 (PHY 50) 1. a) How will the ray indicated in the figure on the following page be reflected by the mirror? (Be accurate!) b) Explain the symbols in the thin lens equation. c) Recall the laws governing

More information

Lesson 09 Methods of integrating ordinary differential equations

Lesson 09 Methods of integrating ordinary differential equations Lesson 09 Methods of integrating ordinary differential equations Suppose we do not have the commands from Mathematica, what can we do? http://numericalmethods.eng.usf.edu/ Euler s Method Euler s method

More information

Quantum Mechanics using Matrix Methods

Quantum Mechanics using Matrix Methods Quantum Mechanics using Matrix Methods Introduction and the simple harmonic oscillator In this notebook we study some problems in quantum mechanics using matrix methods. We know that we can solve quantum

More information

Math Review for Exam Compute the second degree Taylor polynomials about (0, 0) of the following functions: (a) f(x, y) = e 2x 3y.

Math Review for Exam Compute the second degree Taylor polynomials about (0, 0) of the following functions: (a) f(x, y) = e 2x 3y. Math 35 - Review for Exam 1. Compute the second degree Taylor polynomial of f e x+3y about (, ). Solution. A computation shows that f x(, ), f y(, ) 3, f xx(, ) 4, f yy(, ) 9, f xy(, ) 6. The second degree

More information

A Quantum Mechanical Model for the Vibration and Rotation of Molecules. Rigid Rotor

A Quantum Mechanical Model for the Vibration and Rotation of Molecules. Rigid Rotor A Quantum Mechanical Model for the Vibration and Rotation of Molecules Harmonic Oscillator Rigid Rotor Degrees of Freedom Translation: quantum mechanical model is particle in box or free particle. A molecule

More information

1 Lecture 24: Linearization

1 Lecture 24: Linearization 1 Lecture 24: Linearization 1.1 Outline The linearization of a function at a point a. Linear approximation of the change in f. Error, absolute error. Examples 1.2 Linearization Functions can be complicated.

More information

MTH4101 CALCULUS II REVISION NOTES. 1. COMPLEX NUMBERS (Thomas Appendix 7 + lecture notes) ax 2 + bx + c = 0. x = b ± b 2 4ac 2a. i = 1.

MTH4101 CALCULUS II REVISION NOTES. 1. COMPLEX NUMBERS (Thomas Appendix 7 + lecture notes) ax 2 + bx + c = 0. x = b ± b 2 4ac 2a. i = 1. MTH4101 CALCULUS II REVISION NOTES 1. COMPLEX NUMBERS (Thomas Appendix 7 + lecture notes) 1.1 Introduction Types of numbers (natural, integers, rationals, reals) The need to solve quadratic equations:

More information

7a3 2. (c) πa 3 (d) πa 3 (e) πa3

7a3 2. (c) πa 3 (d) πa 3 (e) πa3 1.(6pts) Find the integral x, y, z d S where H is the part of the upper hemisphere of H x 2 + y 2 + z 2 = a 2 above the plane z = a and the normal points up. ( 2 π ) Useful Facts: cos = 1 and ds = ±a sin

More information

(x 3)(x + 5) = (x 3)(x 1) = x + 5. sin 2 x e ax bx 1 = 1 2. lim

(x 3)(x + 5) = (x 3)(x 1) = x + 5. sin 2 x e ax bx 1 = 1 2. lim SMT Calculus Test Solutions February, x + x 5 Compute x x x + Answer: Solution: Note that x + x 5 x x + x )x + 5) = x )x ) = x + 5 x x + 5 Then x x = + 5 = Compute all real values of b such that, for fx)

More information

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error

Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Concepts of Approximate Error: Approximate Error, Absolute Approximate Error, Relative Approximate Error, and Absolute Relative Approximate Error Sean Rodby, Luke Snyder, Autar Kaw University of South

More information

Math Questions for the 2011 PhD Qualifier Exam 1. Evaluate the following definite integral 3" 4 where! ( x) is the Dirac! - function. # " 4 [ ( )] dx x 2! cos x 2. Consider the differential equation dx

More information

Figure 21:The polar and Cartesian coordinate systems.

Figure 21:The polar and Cartesian coordinate systems. Figure 21:The polar and Cartesian coordinate systems. Coordinate systems in R There are three standard coordinate systems which are used to describe points in -dimensional space. These coordinate systems

More information

ME201/MTH21/ME400/CHE400 ASSIGNMENT #7 PROBLEM 1 Newton's Law of Cooling in Transient Conduction 1. Introduction This notebook uses Mathematica to solve problem 1 of Assignment #7, in which we analyze

More information

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II.

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II. MTH 142 Practice Exam Chapters 9-11 Calculus II With Analytic Geometry Fall 2011 - University of Rhode Island This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus

More information

Without fully opening the exam, check that you have pages 1 through 10.

Without fully opening the exam, check that you have pages 1 through 10. MTH 234 Solutions to Exam 2 April 11th 216 Name: Section: Recitation Instructor: INSTRUTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through

More information

Practice Final Exam Solutions

Practice Final Exam Solutions Important Notice: To prepare for the final exam, one should study the past exams and practice midterms (and homeworks, quizzes, and worksheets), not just this practice final. A topic not being on the practice

More information

Chapter 11 Parametric Equations, Polar Curves, and Conic Sections

Chapter 11 Parametric Equations, Polar Curves, and Conic Sections Chapter 11 Parametric Equations, Polar Curves, and Conic Sections ü 11.1 Parametric Equations Students should read Sections 11.1-11. of Rogawski's Calculus [1] for a detailed discussion of the material

More information

20 The Hydrogen Atom. Ze2 r R (20.1) H( r, R) = h2 2m 2 r h2 2M 2 R

20 The Hydrogen Atom. Ze2 r R (20.1) H( r, R) = h2 2m 2 r h2 2M 2 R 20 The Hydrogen Atom 1. We want to solve the time independent Schrödinger Equation for the hydrogen atom. 2. There are two particles in the system, an electron and a nucleus, and so we can write the Hamiltonian

More information

Mathematica for Calculus II (Version 9.0)

Mathematica for Calculus II (Version 9.0) Mathematica for Calculus II (Version 9.0) C. G. Melles Mathematics Department United States Naval Academy December 31, 013 Contents 1. Introduction. Volumes of revolution 3. Solving systems of equations

More information

Quantum Mechanics in Three Dimensions

Quantum Mechanics in Three Dimensions Physics 342 Lecture 21 Quantum Mechanics in Three Dimensions Lecture 21 Physics 342 Quantum Mechanics I Monday, March 22nd, 21 We are used to the temporal separation that gives, for example, the timeindependent

More information

Quantum Physics Lecture 8

Quantum Physics Lecture 8 Quantum Physics Lecture 8 Applications of Steady state Schroedinger Equation Box of more than one dimension Harmonic oscillator Particle meeting a potential step Waves/particles in a box of >1 dimension

More information

PHYS 3313 Section 001 Lecture # 22

PHYS 3313 Section 001 Lecture # 22 PHYS 3313 Section 001 Lecture # 22 Dr. Barry Spurlock Simple Harmonic Oscillator Barriers and Tunneling Alpha Particle Decay Schrodinger Equation on Hydrogen Atom Solutions for Schrodinger Equation for

More information

Multiple Choice. Compute the Jacobian, (u, v), of the coordinate transformation x = u2 v 4, y = uv. (a) 2u 2 + 4v 4 (b) xu yv (c) 3u 2 + 7v 6

Multiple Choice. Compute the Jacobian, (u, v), of the coordinate transformation x = u2 v 4, y = uv. (a) 2u 2 + 4v 4 (b) xu yv (c) 3u 2 + 7v 6 .(5pts) y = uv. ompute the Jacobian, Multiple hoice (x, y) (u, v), of the coordinate transformation x = u v 4, (a) u + 4v 4 (b) xu yv (c) u + 7v 6 (d) u (e) u v uv 4 Solution. u v 4v u = u + 4v 4..(5pts)

More information

Mathematica Project, Math21b Spring 2008

Mathematica Project, Math21b Spring 2008 Mathematica Project, Math21b Spring 2008 Oliver Knill, Harvard University, Spring 2008 Support Welcome to the Mathematica computer project! In case problems with this assignment, please email Oliver at

More information

Final Exam May 4, 2016

Final Exam May 4, 2016 1 Math 425 / AMCS 525 Dr. DeTurck Final Exam May 4, 2016 You may use your book and notes on this exam. Show your work in the exam book. Work only the problems that correspond to the section that you prepared.

More information

Bohr & Wheeler Fission Theory Calculation 4 March 2009

Bohr & Wheeler Fission Theory Calculation 4 March 2009 Bohr & Wheeler Fission Theory Calculation 4 March 9 () Introduction The goal here is to reproduce the calculation of the limiting Z /A against spontaneous fission Z A lim a S. (.) a C as first done by

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

Math Final Exam.

Math Final Exam. Math 106 - Final Exam. This is a closed book exam. No calculators are allowed. The exam consists of 8 questions worth 100 points. Good luck! Name: Acknowledgment and acceptance of honor code: Signature:

More information

a k 0, then k + 1 = 2 lim 1 + 1

a k 0, then k + 1 = 2 lim 1 + 1 Math 7 - Midterm - Form A - Page From the desk of C. Davis Buenger. https://people.math.osu.edu/buenger.8/ Problem a) [3 pts] If lim a k = then a k converges. False: The divergence test states that if

More information

Week 7: Integration: Special Coordinates

Week 7: Integration: Special Coordinates Week 7: Integration: Special Coordinates Introduction Many problems naturally involve symmetry. One should exploit it where possible and this often means using coordinate systems other than Cartesian coordinates.

More information

xy 2 e 2z dx dy dz = 8 3 (1 e 4 ) = 2.62 mc. 12 x2 y 3 e 2z 2 m 2 m 2 m Figure P4.1: Cube of Problem 4.1.

xy 2 e 2z dx dy dz = 8 3 (1 e 4 ) = 2.62 mc. 12 x2 y 3 e 2z 2 m 2 m 2 m Figure P4.1: Cube of Problem 4.1. Problem 4.1 A cube m on a side is located in the first octant in a Cartesian coordinate system, with one of its corners at the origin. Find the total charge contained in the cube if the charge density

More information

Integrals in cylindrical, spherical coordinates (Sect. 15.7)

Integrals in cylindrical, spherical coordinates (Sect. 15.7) Integrals in clindrical, spherical coordinates (Sect. 15.7 Integration in spherical coordinates. Review: Clindrical coordinates. Spherical coordinates in space. Triple integral in spherical coordinates.

More information

Multiple Integrals and Vector Calculus (Oxford Physics) Synopsis and Problem Sets; Hilary 2015

Multiple Integrals and Vector Calculus (Oxford Physics) Synopsis and Problem Sets; Hilary 2015 Multiple Integrals and Vector Calculus (Oxford Physics) Ramin Golestanian Synopsis and Problem Sets; Hilary 215 The outline of the material, which will be covered in 14 lectures, is as follows: 1. Introduction

More information

Math Exam IV - Fall 2011

Math Exam IV - Fall 2011 Math 233 - Exam IV - Fall 2011 December 15, 2011 - Renato Feres NAME: STUDENT ID NUMBER: General instructions: This exam has 16 questions, each worth the same amount. Check that no pages are missing and

More information

MAT 211 Final Exam. Spring Jennings. Show your work!

MAT 211 Final Exam. Spring Jennings. Show your work! MAT 211 Final Exam. pring 215. Jennings. how your work! Hessian D = f xx f yy (f xy ) 2 (for optimization). Polar coordinates x = r cos(θ), y = r sin(θ), da = r dr dθ. ylindrical coordinates x = r cos(θ),

More information

Basics of Electromagnetics Maxwell s Equations (Part - I)

Basics of Electromagnetics Maxwell s Equations (Part - I) Basics of Electromagnetics Maxwell s Equations (Part - I) Soln. 1. C A. dl = C. d S [GATE 1994: 1 Mark] A. dl = A. da using Stoke s Theorem = S A. ds 2. The electric field strength at distant point, P,

More information

Study Guide/Practice Exam 3

Study Guide/Practice Exam 3 Study Guide/Practice Exam 3 This study guide/practice exam covers only the material since exam. The final exam, however, is cumulative so you should be sure to thoroughly study earlier material. The distribution

More information

EELE 3331 Electromagnetic I Chapter 3. Vector Calculus. Islamic University of Gaza Electrical Engineering Department Dr.

EELE 3331 Electromagnetic I Chapter 3. Vector Calculus. Islamic University of Gaza Electrical Engineering Department Dr. EELE 3331 Electromagnetic I Chapter 3 Vector Calculus Islamic University of Gaza Electrical Engineering Department Dr. Talal Skaik 2012 1 Differential Length, Area, and Volume This chapter deals with integration

More information

Assignment 1 Physics/ECE 176

Assignment 1 Physics/ECE 176 Assignment 1 Physics/ECE 176 Made available: Thursday, January 13, 211 Due: Thursday, January 2, 211, by the beginning of class. Overview Before beginning this assignment, please read carefully the part

More information

False. 1 is a number, the other expressions are invalid.

False. 1 is a number, the other expressions are invalid. Ma1023 Calculus III A Term, 2013 Pseudo-Final Exam Print Name: Pancho Bosphorus 1. Mark the following T and F for false, and if it cannot be determined from the given information. 1 = 0 0 = 1. False. 1

More information

Problem Set 3 Physics 480 / Fall 1999 Professor Klaus Schulten

Problem Set 3 Physics 480 / Fall 1999 Professor Klaus Schulten Problem Set 3 Physics 480 / Fall 1999 Professor Klaus Schulten Problem 1: Wave Packet in 1-Dimensional Box Using Mathematica evaluate the time-dependence of a Gaussian wave packet moving in a 1-dimensional

More information

S12.1 SOLUTIONS TO PROBLEMS 12 (ODD NUMBERS)

S12.1 SOLUTIONS TO PROBLEMS 12 (ODD NUMBERS) OLUTION TO PROBLEM 2 (ODD NUMBER) 2. The electric field is E = φ = 2xi + 2y j and at (2, ) E = 4i + 2j. Thus E = 2 5 and its direction is 2i + j. At ( 3, 2), φ = 6i + 4 j. Thus the direction of most rapid

More information

MLC Practice Final Exam

MLC Practice Final Exam Name: Section: Recitation/Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 13. Show all your work on the standard

More information

PHYS 404 Lecture 1: Legendre Functions

PHYS 404 Lecture 1: Legendre Functions PHYS 404 Lecture 1: Legendre Functions Dr. Vasileios Lempesis PHYS 404 - LECTURE 1 DR. V. LEMPESIS 1 Legendre Functions physical justification Legendre functions or Legendre polynomials are the solutions

More information

BTL What is the value of m if the vector is solenoidal. BTL What is the value of a, b, c if the vector may be irrotational.

BTL What is the value of m if the vector is solenoidal. BTL What is the value of a, b, c if the vector may be irrotational. VALLIAMMAI ENGINEERING OLLEGE SRM NAGAR, KATTANDKULATHUR Department of Mathematics MA65 - MATHEMATIS II QUESTION BANK - 6 UNIT - I VETOR ALULUS Part - A. Find, if at (, -, ). BTL-. Find the Directional

More information

MAC2313 Final A. (5 pts) 1. How many of the following are necessarily true? i. The vector field F = 2x + 3y, 3x 5y is conservative.

MAC2313 Final A. (5 pts) 1. How many of the following are necessarily true? i. The vector field F = 2x + 3y, 3x 5y is conservative. MAC2313 Final A (5 pts) 1. How many of the following are necessarily true? i. The vector field F = 2x + 3y, 3x 5y is conservative. ii. The vector field F = 5(x 2 + y 2 ) 3/2 x, y is radial. iii. All constant

More information

Without fully opening the exam, check that you have pages 1 through 12.

Without fully opening the exam, check that you have pages 1 through 12. Name: Section: Recitation Instructor: INSTRUCTIONS Fill in your name, etc. on this first page. Without fully opening the exam, check that you have pages 1 through 12. Show all your work on the standard

More information

Chapter 7: Quantum Statistics

Chapter 7: Quantum Statistics Part II: Applications SDSMT, Physics 2013 Fall 1 Introduction Photons, E.M. Radiation 2 Blackbody Radiation The Ultraviolet Catastrophe 3 Thermal Quantities of Photon System Total Energy Entropy 4 Radiation

More information

No calculators, cell phones or any other electronic devices can be used on this exam. Clear your desk of everything excepts pens, pencils and erasers.

No calculators, cell phones or any other electronic devices can be used on this exam. Clear your desk of everything excepts pens, pencils and erasers. Name: Section: Recitation Instructor: READ THE FOLLOWING INSTRUCTIONS. Do not open your exam until told to do so. No calculators, cell phones or any other electronic devices can be used on this exam. Clear

More information

Lecture 5: Harmonic oscillator, Morse Oscillator, 1D Rigid Rotor

Lecture 5: Harmonic oscillator, Morse Oscillator, 1D Rigid Rotor Lecture 5: Harmonic oscillator, Morse Oscillator, 1D Rigid Rotor It turns out that the boundary condition of the wavefunction going to zero at infinity is sufficient to quantize the value of energy that

More information

Calculus II Practice Test 1 Problems: , 6.5, Page 1 of 10

Calculus II Practice Test 1 Problems: , 6.5, Page 1 of 10 Calculus II Practice Test Problems: 6.-6.3, 6.5, 7.-7.3 Page of This is in no way an inclusive set of problems there can be other types of problems on the actual test. To prepare for the test: review homework,

More information

Physics 235 Chapter 4. Chapter 4 Non-Linear Oscillations and Chaos

Physics 235 Chapter 4. Chapter 4 Non-Linear Oscillations and Chaos Chapter 4 Non-Linear Oscillations and Chaos Non-Linear Differential Equations Up to now we have considered differential equations with terms that are proportional to the acceleration, the velocity, and

More information

10. e tan 1 (y) 11. sin 3 x

10. e tan 1 (y) 11. sin 3 x MATH B FINAL REVIEW DISCLAIMER: WHAT FOLLOWS IS A LIST OF PROBLEMS, CONCEPTUAL QUESTIONS, TOPICS, AND SAMPLE PROBLEMS FROM THE TEXTBOOK WHICH COMPRISE A HEFTY BUT BY NO MEANS EXHAUSTIVE LIST OF MATERIAL

More information

Instructions: No books. No notes. Non-graphing calculators only. You are encouraged, although not required, to show your work.

Instructions: No books. No notes. Non-graphing calculators only. You are encouraged, although not required, to show your work. Exam 3 Math 850-007 Fall 04 Odenthal Name: Instructions: No books. No notes. Non-graphing calculators only. You are encouraged, although not required, to show your work.. Evaluate the iterated integral

More information

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n.

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n. .8 Power Series. n x n x n n Using the ratio test. lim x n+ n n + lim x n n + so r and I (, ). By the ratio test. n Then r and I (, ). n x < ( ) n x n < x < n lim x n+ n (n + ) x n lim xn n (n + ) x

More information

William P. Thurston. The Geometry and Topology of Three-Manifolds

William P. Thurston. The Geometry and Topology of Three-Manifolds William P. Thurston The Geometry and Topology of Three-Manifolds Electronic version 1.1 - March 00 http://www.msri.org/publications/books/gt3m/ This is an electronic edition of the 1980 notes distributed

More information

Research Institute of Geodesy, Topography and Cartography Zdiby, Prague-East, Czech Republic

Research Institute of Geodesy, Topography and Cartography Zdiby, Prague-East, Czech Republic Leibniz Society of Science at Berlin, Scientific Colloquium Geodesy - Mathematic - Physics - Geophysics in honour of Erik W. Grafarend on the occasion of his 75th birthday Berlin, Germany, 3 February 05

More information

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

You can learn more about the services offered by the teaching center by visiting

You can learn more about the services offered by the teaching center by visiting MAC 232 Exam 3 Review Spring 209 This review, produced by the Broward Teaching Center, contains a collection of questions which are representative of the type you may encounter on the exam. Other resources

More information

Chemistry 795T. NC State University. Lecture 4. Vibrational and Rotational Spectroscopy

Chemistry 795T. NC State University. Lecture 4. Vibrational and Rotational Spectroscopy Chemistry 795T Lecture 4 Vibrational and Rotational Spectroscopy NC State University The Dipole Moment Expansion The permanent dipole moment of a molecule oscillates about an equilibrium value as the molecule

More information

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx

y = x 3 and y = 2x 2 x. 2x 2 x = x 3 x 3 2x 2 + x = 0 x(x 2 2x + 1) = 0 x(x 1) 2 = 0 x = 0 and x = (x 3 (2x 2 x)) dx Millersville University Name Answer Key Mathematics Department MATH 2, Calculus II, Final Examination May 4, 2, 8:AM-:AM Please answer the following questions. Your answers will be evaluated on their correctness,

More information

Lecture 17 - Gyroscopes

Lecture 17 - Gyroscopes Lecture 17 - Gyroscopes A Puzzle... We have seen throughout class that the center of mass is a very powerful tool for evaluating systems. However, don t let yourself get carried away with how useful it

More information

Solving beam deflection problems using the moment-deflection approach and using the Euler-Bernoulli approach

Solving beam deflection problems using the moment-deflection approach and using the Euler-Bernoulli approach Solving beam deflection problems using the moment-deflection approach and using the Euler-Bernoulli approach by Nasser M. Abbasi November 9 Links PDF file Mathematica notebook Introduction These are problems

More information

would represent a 1s orbital centered on the H atom and φ 2px )+ 1 r 2 sinθ

would represent a 1s orbital centered on the H atom and φ 2px )+ 1 r 2 sinθ Physical Chemistry for Engineers CHEM 4521 Homework: Molecular Structure (1) Consider the cation, HeH +. (a) Write the Hamiltonian for this system (there should be 10 terms). Indicate the physical meaning

More information

Practice Final Exam Solutions

Practice Final Exam Solutions Important Notice: To prepare for the final exam, study past exams and practice exams, and homeworks, quizzes, and worksheets, not just this practice final. A topic not being on the practice final does

More information

11 Quantum theory: introduction and principles

11 Quantum theory: introduction and principles Part 2: Structure Quantum theory: introduction and principles Solutions to exercises E.b E.2b E.3b E.4b E.5b E.6b Discussion questions A successful theory of black-body radiation must be able to explain

More information

MATH20411 PDEs and Vector Calculus B

MATH20411 PDEs and Vector Calculus B MATH2411 PDEs and Vector Calculus B Dr Stefan Güttel Acknowledgement The lecture notes and other course materials are based on notes provided by Dr Catherine Powell. SECTION 1: Introctory Material MATH2411

More information

Computational Physics (6810): Session 8

Computational Physics (6810): Session 8 Computational Physics (6810): Session 8 Dick Furnstahl Nuclear Theory Group OSU Physics Department February 24, 2014 Differential equation solving Session 7 Preview Session 8 Stuff Solving differential

More information

MATH 52 FINAL EXAM SOLUTIONS

MATH 52 FINAL EXAM SOLUTIONS MAH 5 FINAL EXAM OLUION. (a) ketch the region R of integration in the following double integral. x xe y5 dy dx R = {(x, y) x, x y }. (b) Express the region R as an x-simple region. R = {(x, y) y, x y }

More information

0 + E (1) and the first correction to the ground state energy is given by

0 + E (1) and the first correction to the ground state energy is given by 1 Problem set 9 Handout: 1/24 Due date: 1/31 Problem 1 Prove that the energy to first order for the lowest-energy state of a perturbed system is an upper bound for the exact energy of the lowest-energy

More information

Math 350 Solutions for Final Exam Page 1. Problem 1. (10 points) (a) Compute the line integral. F ds C. z dx + y dy + x dz C

Math 350 Solutions for Final Exam Page 1. Problem 1. (10 points) (a) Compute the line integral. F ds C. z dx + y dy + x dz C Math 35 Solutions for Final Exam Page Problem. ( points) (a) ompute the line integral F ds for the path c(t) = (t 2, t 3, t) with t and the vector field F (x, y, z) = xi + zj + xk. (b) ompute the line

More information

Notes 19 Gradient and Laplacian

Notes 19 Gradient and Laplacian ECE 3318 Applied Electricity and Magnetism Spring 218 Prof. David R. Jackson Dept. of ECE Notes 19 Gradient and Laplacian 1 Gradient Φ ( x, y, z) =scalar function Φ Φ Φ grad Φ xˆ + yˆ + zˆ x y z We can

More information

Before you begin read these instructions carefully.

Before you begin read these instructions carefully. MATHEMATICAL TRIPOS Part IB Thursday, 9 June, 2011 9:00 am to 12:00 pm PAPER 3 Before you begin read these instructions carefully. Each question in Section II carries twice the number of marks of each

More information

Lecture 1 - Vectors. A Puzzle... Introduction. Vectors: The quest begins! TA s Information. Vectors

Lecture 1 - Vectors. A Puzzle... Introduction. Vectors: The quest begins! TA s Information. Vectors Lecture 1 - Vectors Puzzle... The sum starts at 0. Players alternate by choosing an integer from 1 to 10 and then adding it to the sum. The player who gets to 100 wins. You go first. What is the winning

More information

What is it good for? RT is a key part of remote sensing and climate modeling.

What is it good for? RT is a key part of remote sensing and climate modeling. Read Bohren and Clothiaux Ch.; Ch 4.-4. Thomas and Stamnes, Ch..-.6; 4.3.-4.3. Radiative Transfer Applications What is it good for? RT is a key part of remote sensing and climate modeling. Remote sensing:

More information

Math 1310 Final Exam

Math 1310 Final Exam Math 1310 Final Exam December 11, 2014 NAME: INSTRUCTOR: Write neatly and show all your work in the space provided below each question. You may use the back of the exam pages if you need additional space

More information

1. (a) The volume of a piece of cake, with radius r, height h and angle θ, is given by the formula: [Yes! It s a piece of cake.]

1. (a) The volume of a piece of cake, with radius r, height h and angle θ, is given by the formula: [Yes! It s a piece of cake.] 1. (a The volume of a piece of cake, with radius r, height h and angle θ, is given by the formula: / 3 V (r,h,θ = 1 r θh. Calculate V r, V h and V θ. [Yes! It s a piece of cake.] V r = 1 r θh = rθh V h

More information

Name: Answer Key David Arnold. Math 50B Integral Calculus May 13, Final Exam

Name: Answer Key David Arnold. Math 50B Integral Calculus May 13, Final Exam Math 5B Integral Calculus May 3, 7 Final Exam Name: Answer Key David Arnold Instructions. (9 points) Follow the directions exactly! Whatever you are asked to do, you must do to receive full credit for

More information

Math 113 Final Exam Practice

Math 113 Final Exam Practice Math Final Exam Practice The Final Exam is comprehensive. You should refer to prior reviews when studying material in chapters 6, 7, 8, and.-9. This review will cover.0- and chapter 0. This sheet has three

More information

( ), λ. ( ) =u z. ( )+ iv z

( ), λ. ( ) =u z. ( )+ iv z AMS 212B Perturbation Metho Lecture 18 Copyright by Hongyun Wang, UCSC Method of steepest descent Consider the integral I = f exp( λ g )d, g C =u + iv, λ We consider the situation where ƒ() and g() = u()

More information

Infinite Series. 1 Introduction. 2 General discussion on convergence

Infinite Series. 1 Introduction. 2 General discussion on convergence Infinite Series 1 Introduction I will only cover a few topics in this lecture, choosing to discuss those which I have used over the years. The text covers substantially more material and is available for

More information

Day 3 Review of Basic Calculus

Day 3 Review of Basic Calculus Day 3 Review of Basic Calculus Sivaram sivaambi@stanford.edu Institute of Computational and Mathematical Engineering Stanford University September 21, 2011 Differential Calculus Product rule Quotient rule

More information

Qualification Exam: Mathematical Methods

Qualification Exam: Mathematical Methods Qualification Exam: Mathematical Methods Name:, QEID#41534189: August, 218 Qualification Exam QEID#41534189 2 1 Mathematical Methods I Problem 1. ID:MM-1-2 Solve the differential equation dy + y = sin

More information

51. General Surface Integrals

51. General Surface Integrals 51. General urface Integrals The area of a surface in defined parametrically by r(u, v) = x(u, v), y(u, v), z(u, v) over a region of integration in the input-variable plane is given by d = r u r v da.

More information

Mathematics of Physics and Engineering II: Homework problems

Mathematics of Physics and Engineering II: Homework problems Mathematics of Physics and Engineering II: Homework problems Homework. Problem. Consider four points in R 3 : P (,, ), Q(,, 2), R(,, ), S( + a,, 2a), where a is a real number. () Compute the coordinates

More information

1. (a) (5 points) Find the unit tangent and unit normal vectors T and N to the curve. r (t) = 3 cos t, 0, 3 sin t, r ( 3π

1. (a) (5 points) Find the unit tangent and unit normal vectors T and N to the curve. r (t) = 3 cos t, 0, 3 sin t, r ( 3π 1. a) 5 points) Find the unit tangent and unit normal vectors T and N to the curve at the point P 3, 3π, r t) 3 cos t, 4t, 3 sin t 3 ). b) 5 points) Find curvature of the curve at the point P. olution:

More information

Differential Equations Review

Differential Equations Review P. R. Nelson diff eq prn.tex Winter 2010 p. 1/20 Differential Equations Review Phyllis R. Nelson prnelson@csupomona.edu Professor, Department of Electrical and Computer Engineering California State Polytechnic

More information

University of Alberta. Math 214 Sample Exam Math 214 Solutions

University of Alberta. Math 214 Sample Exam Math 214 Solutions University of Alberta Math 14 Sample Exam Math 14 Solutions 1. Test the following series for convergence or divergence (a) ( n +n+1 3n +n+1 )n, (b) 3 n (n +1) (c) SOL: n!, arccos( n n +1 ), (a) ( n +n+1

More information

Math 234 Exam 3 Review Sheet

Math 234 Exam 3 Review Sheet Math 234 Exam 3 Review Sheet Jim Brunner LIST OF TOPIS TO KNOW Vector Fields lairaut s Theorem & onservative Vector Fields url Divergence Area & Volume Integrals Using oordinate Transforms hanging the

More information

10.1 Review of Parametric Equations

10.1 Review of Parametric Equations 10.1 Review of Parametric Equations Recall that often, instead of representing a curve using just x and y (called a Cartesian equation), it is more convenient to define x and y using parametric equations

More information

Section 5.8. Taylor Series

Section 5.8. Taylor Series Difference Equations to Differential Equations Section 5.8 Taylor Series In this section we will put together much of the work of Sections 5.-5.7 in the context of a discussion of Taylor series. We begin

More information

Geometry and Motion Selected answers to Sections A and C Dwight Barkley 2016

Geometry and Motion Selected answers to Sections A and C Dwight Barkley 2016 MA34 Geometry and Motion Selected answers to Sections A and C Dwight Barkley 26 Example Sheet d n+ = d n cot θ n r θ n r = Θθ n i. 2. 3. 4. Possible answers include: and with opposite orientation: 5..

More information