Quantum Mechanics using Matrix Methods

Size: px
Start display at page:

Download "Quantum Mechanics using Matrix Methods"

Transcription

1 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 mechanics in any complete set of basis functions. If we choose a particular basis, the Hamiltonian will not, in general, be diagonal, so the task is to diagonalize it to find the eigenvalues (which are the possible results of a measurement of the energy) and the eigenvectors. In many cases this can not be done exactly and some numerical approximation is needed. A common approach, which is the basis of a lot of quantum chemistry is to take a finite basis set and diagonalize it numerically. The ground state of this reduced basis set will not be the exact ground state, but by increasing the size of the basis we can improve the accuracy and check if the energy converges as we increase the basis size. We will apply this approach here for an anharmonic oscillator. The reference for this material is Kinzel and Reents, p We first discuss the exactly solvable case of the simple harmonic oscillator. The Hamiltonian is given by H 0 p m m Ω x where p is the momentum, x the position, m the mass and Ω the angular frequency of the classical oscillator. x and p satisfiy the commutation relation [x, p] = i ħ. The Hamiltonian can be written in dimensionless form as H 0 ħω p p 0 x x 0 where p 0 = ħm Ω and x 0 = ħ m Ω, are the basic momentum and length scales. From now on, we will give the energy in units of ħ Ω, x in units of x 0, and p in units of p 0, so the reduced Hamiltonian is H 0 p x. In these units the commutation relation is [x, p] = i. In any textbook on quantum mechanics, it is shown that the energy levels are given by E n n, n 0,,,.... and the wavefunctions are given by Ψ n x n n Π e x H n x, where H n (x) is a Hermite polynomial. The books also show that it is easier to determine the energy levels using operator methods rather than the Schr dinger equation, and that is the approach that we will take here. In this approach, one introduces so-called raising and lowering operators, a and a, related to x and p by x i a a, p a a,

2 matrix_qm.nb which have the commutation relations a, a. and in terms of which the Hamiltonian is written H 0 a a. Denoting eigenstates of the Hamiltonian by n, then one finds a n n n, a n n n and so a a n n n, from which it follows that the energy E n is equal to (n + /) as stated above. The matrix elements of x in the basis n are given by X nm n x m m n,m m n,m n m nm,. Hence we can conveniently define the matrix elements for x as follows: In[]:= Clear"Global " In[]:= xn, m : Sqrtn m ; Absn m In[3]:= xn, m : 0 ; Absn m where we have used the symbol /;, which means "assuming that". From these we can generate a matrix for x keeping a basis of "basissize" states: In[4]:= xbasissize : Tablexn, m, n, 0, basissize, m, 0, basissize Let s see what we get for basissize = 4 In[5]:= x4 MatrixForm Out[5]//MatrixForm= It is trivial to generate the Hamiltonian matrix of the simple harmonic oscillator, since it is diagonal, i.e. In[6]:= h0basissize : DiagonalMatrix Tablen, n, 0, basissize

3 matrix_qm.nb 3 In[7]:= Out[7]//MatrixForm= h04 MatrixForm The anharmonic oscillator Now we make the problem non-trivial by adding an anharmonic term. We will take it to be proportional to x 4, i.e. H H 0 Λ x 4 It is easy to generate the matrix for H using the matrix obtained above for x and the convenient "dot" notation in Mathematica for performing matrix products: In[8]:= hbasissize, Λ : h0basissize Λ xbasissize. xbasissize. xbasissize. xbasissize For example, with a basis size of 4 we get In[9]:= h4, Λ MatrixForm Out[9]//MatrixForm= 3 Λ 4 3 Λ Λ Λ 3 Λ Λ Λ 0 5 Λ 4 The eigenvalues can also be obtained numerically and then sorted. Here we give a function (with delayed assignment) for doing this: In[0]:= evalsbasissize, Λ : Sort Eigenvalues N hbasissize, Λ Now we get some numbers. First consider the trivial example of the simple harmonic oscillator, Λ = 0, and a basis size of 0. In[]:= Out[]= evals0, 0 0.5,.5,.5, 3.5, 4.5, 5.5, 6.5, 7.5, 8.5, 9.5 Naturally we get the right answer, since the matrix is diagonal in this case. Next we consider the anharmonic oscillator, Λ =. In[]:= Out[]= evals0, ,.756, , 7.599, 4.5, , 46.87, 46.93, 46.84, The energy levels are no longer uniformily spaced. We expect that the lowest few levels will be fairly accurate, but the higher levels will be inaccurate because they feel more severely the truncation of the basis states. To test this, we plot the eigenvalues for a range of Λ, starting with a basis size of 5.

4 4 matrix_qm.nb In[3]:= basissize 5; In[4]:= p Plot Evaluateevalsbasissize, Λ, Λ, 0,, PlotRange 0,, PlotStyle AbsoluteThickness, AxesLabel "Λ", "E" 0 8 Out[4]= 6 4 To see how accurate these are we compare the results for the size-5 basis with those for a size-0 basis. In[5]:= basissize 0; In[6]:= p Plot Evaluate evalsbasissize, Λ, Λ, 0,, PlotRange 0, 0, PlotStyle AbsoluteThickness, Hue0, Dashing0.0, 0.0, BaseStyle FontSize 4, FontWeight "Bold", FontColor Hue0 ; In[7]:= Showp, p, PlotLabel "basissize 5 solid and 0 dashed" 0 8 E Out[7]= 6 4 The lowest levels appear to have converged well, but the higher levels have not. This is not surprising because the highest of the plotted levels are some of the highest levels possible for the size-0 basis, and so the effects of the finite basis size are naturally large in that region. Now we focus on the ground state, which is given by the first element of evals, e.g. for basis size 0 and Λ = 0. we have In[8]:= basissize 0;

5 matrix_qm.nb 5 In[9]:= evalsbasissize, 0. Out[9]= For a given basis size, we can plot the lowest energy level versus Λ, In[0]:= Plot evalsbasissize, Λ, Λ, 0,, PlotRange 0.5, 0.8, AxesLabel "Λ", "E 0 " Out[0]= We see that the energy level starts off, as it must, at the value / for Λ = 0, and then increases with increasing Λ. Note that to plot all the eigenvalues as a function of Λ it is necessary to Evaluate the evals function inside the Plot function, whereas to plot just the lowest eigenvalue it is important not to use Evaluate otherwise the wrong eigenvalue is plotted (For some reason, Plot seems to ignore Sort in this case.) The details of the functioning of the Plot command, and when one should Evaluate the function to be plotted, remain rather mysterious to me. In fact,in versions prior to version 5, I don t think one could get Mathematica to correctly plot the ground state energy at all, even if one omitted the Evaluate command. You could get round this by obtaining a list of the desired numerical values for a set of values of Λ, and then plotting them with ListPlot, using PlotJoined -> True if you want a continuous line rather than dots. The routines given at the back of Kinzel and Reents show how to do this (though it is not discussed in the text). We really wish to check that our calculation of the ground state energy used a large enough basis size in order to be accurate. To check this, we plot the ground state energy versus the inverse of the size of the basis set. Here are some results for Λ = 0.:

6 6 matrix_qm.nb In[]:= ListPlotTable basissize, evalsbasissize, 0., basissize, 9, 30, Frame True, Axes False, PlotStyle PointSize0.0, Hue0, Epilog Line 30, , 8, , PlotRange All, FrameLabel "basis size", "E 0 ", RotateLabel False, PlotLabel "Λ 0." Out[]= E We see that for basis size greater than about 6, the energy has converged well. As you might expect, and you can verify yourself, a larger basis set is needed if Λ is larger. The eigenvectors can also be found, and these give the linear coefficients of the Hermite polynomials which make up the coordinate space wavefunction. Hence the wavefunction of the anharmonic oscillator can also be obtained by this method. Double Well Potential Next we use matrix methods to calculate the lowest energy levels in a double well potential. The Hamiltonian is given by p H x V x, where V x x 4 Λ 4. Note that the coeficient of x is negative. The minima of the potential energy are at x 0 ±, V min V x 0 Λ 4 Λ. We plot the potential for the case of Λ = 0..

7 matrix_qm.nb 7 In[]:= Plotx^ Λ x^4 4. Λ 0., x, 4, 4 Out[]= 4 4 The new physics in this example is the possibility of tunneling between the two minima. The reader is referred to any quantum mechanics book for more details on tunneling. Setup To obtain the Hamiltonian, it is convenient to use the matrix elements of p, given in any quantum mechanics textbook, (as well those of of x which we already have). (To avoid needing p we could alternatively write H = H 0 x x 4 4 where H 0 is the simple harmonic oscillator Hamiltonian which is diagonal). In[3]:= pj, k : I Sqrtj k ; j k In[4]:= pj, k : I Sqrtj k ; j k In[5]:= pj, k : 0 ; Absj k In[6]:= pbasissize : Tablepn, m, n, 0, basissize, m, 0, basissize In[7]:= hn, Λ : pn. pn xn. xn Λ xn. xn. xn. xn 4 The function evals is the same as before. Λ = 0. Consider first Λ = 0.. We can find where the two minima are either analytically, which gives x 0 = / Λ, and E min 4 Λ, as stated above, or use Mathematica: In[8]:= Out[8]= FindMinimum x^ Λ x^4 4. Λ 0., x,.5, x.3607 We extract the energy levels for n (the basis size) equal to 0 and 0 In[9]:= Out[9]= evals0, , , , ,.08039,.5807,.56578, , 5.9,

8 8 matrix_qm.nb In[30]:= evals0, 0. Out[30]= , , , ,.5557,.4794, 3.378, 4.408, 5.569, , 7.73, , 9.378, ,.9696, 3.53, 5.883, , , 9.86 Next we plot the lowest energy level versus /n. It seems to be converging. In[3]:= ListPlot Table size, evalssize, 0., size, 0, 30, 4, PlotStyle Hue, PointSize0.0, Axes False, Frame True, FrameLabel "basis size", "E 0 ", RotateLabel False, PlotLabel "Λ 0." Out[3]= E Now we want to plot more than one energy level for different values of n. We construct evalslist, a two-dimensional different values of n between 0 and 30, list containing all the eigenvalues for In[3]:= evalslist Tableevalsn, 0., n,, 30 ; and from this plot the two lowest levels versus /n (note we plot each set of data twice, once to get the points without the lines, and once to get the lines without the points; this is done by the Joined -> {True, False, Tre, False} option.)

9 matrix_qm.nb 9 In[33]:= ListPlot Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Axes False, Frame True, Joined True, False, True, False, PlotStyle Thick, Red, Red, PointSizeLarge, Thick, Blue, Blue, PointSizeLarge, FrameLabel "basis size", "E 0 ", RotateLabel False, PlotLabel "Λ 0." Out[33]= E As expected, both levels converge as the basis size increases. Λ = 0. Next we consider a smaller value, Λ = 0., for which the minima are deeper. In[34]:= ClearΛ; Plotx^ Λ x^4 4. Λ 0., x, 4.7, Out[34]=

10 0 matrix_qm.nb In[35]:= minpot FindMinimum x^ Λ x^4 4. Λ 0., x, 3.5 Out[35]=.5, x 3.68 When the potential is very deep the two the particle will only tunnel very slowly from one well to the other. The two lowest energy levels are split by this small tunneling splitting, and the eigenstates are the symmetric and anti-symmetric combinations of the wavefunction for the particle localized in the ground state of the left well and the right well. If we represent the potential at the bottom of each well as a parabola then the lowest energy of each of these states is given by the simple harmonic ground state energy above V min, i.e. Ε 0 V min Ω min where Ω min is classical freqency of oscillation about the minimum, i.e. Ω min = V x 0 =. Hence Ε 0 4 Λ. We expect then, that for deep wells, the two lowest energy levels will be given, to a good approximation by E Ε 0 0, E 0 Ε 0 deep wells where 0 is the (small) tunneling splitting. For Λ = 0., Ε 0 is given by In[36]:= Out[36]= Ε0 4Λ Λ 0. Now we compare this with the actual energy of the two lowest levels. In[37]:= evalslist Tableevalsn, 0., n,, 30 ;

11 matrix_qm.nb In[38]:= ListPlot Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Axes False, Frame True, Joined True, False, True, False, FrameLabel "basis size", "E 0, E ", RotateLabel False, PlotLabel "Λ 0.".80.8 Out[38]= E 0, E We see that the two lowest levels are close together as expected (the difference being the tunneling splitting), and the energies are fairly close to Ε , though they are not precisely equal to that value. The difference arises because, for this value of Λ, the wells are not deep enough to accurately represent their behavior about the minima as parabolas. Now we also include the next two levels. These are also fairly close together, but not as close as the lowest two because, having more energy, they can tunnel more easily from one well to the other.

12 matrix_qm.nb In[39]:= ListPlot Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n3, n, 0, 30, Table n, evalslist n3, n, 0, 30, Table n, evalslist n4, n, 0, 30, Table n, evalslist n4, n, 0, 30, Axes False, Frame True, Joined True, False, True, False, True, False, True, False, FrameLabel "basis size", "E 0,E,E,E 3 ", RotateLabel False, FrameLabel "Λ 0.".0 Out[39]= E 0,E,E,E Λ = 0.05 Finally we take Λ to have the smaller value of 0.05, which makes the wells deeper still: In[40]:= ClearΛ; Plotx^ Λ x^4 4. Λ 0.05, x, 6.5, Out[40]= 3 4 We calculate Ε 0 for this value of Λ :

13 matrix_qm.nb 3 In[4]:= minpot FindMinimum x^ Λ x^4 4. Λ 0.05, x, 3.5 Out[4]= 5., x In[4]:= Out[4]= Ε0 4Λ Λ 0.05 Now we plot the lowest two levels for different basis sizes: In[43]:= In[44]:= In[45]:= In[46]:= evalslist Tableevalsn, 0.05, n,, 30 ; lw ListPlot Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Table n, evalslist n, n, 0, 30, Axes False, Frame True, Joined True, False, True, False, FrameLabel "basis size", "E 0, E ", RotateLabel False, PlotLabel "Λ 0.05"; pe0 ListPlotTable n, Ε0, n, 0, 30, PlotStyle AbsoluteThickness, Dashing0.0, 0.0, Hue0.65, Showlw, pe0 Joined True ; Out[46]= E 0, E Ε Finally we show the lowest 8 levels. They are grouped into four pairs as expected,

14 4 matrix_qm.nb Finally we show the lowest 8 levels. They are grouped into four pairs as expected, with each pair corresponding to a symmetric and anti-symmetric combination of wavefunctions localized in the left and the right well. In[47]:= In[48]:= lw8 ListPlot FlattenTable Table n, evalslist ni, n, 0, 30, i,, 8, Table Table n, evalslist ni, n, 0, 30, i,, 8,, Axes False, Frame True, Joined Flatten TableTrue, 8, TableFalse, 8, FrameLabel "basis size", "E 0,..,E 7 ", RotateLabel False, PlotLabel "Λ 0.05", PlotRange 4.8, 0.5 ; pe ListPlotTable n, Ε0, n, 0, 30, PlotStyle AbsoluteThickness, Dashing0.0, 0.0, Hue0.35, Joined True; In[49]:= pe ListPlotTable n, Ε0, n, 0, 30, PlotStyle AbsoluteThickness, Dashing0.0, 0.0, Hue0.85, Joined True; In[50]:= Showlw8, pe0, pe, pe 0 Out[50]= E 0,..,E For the case of a really deep well, the lowest levels would correspond to simple harmonic oscillator levels in each of the two wells with energy Ε n V min n Ω min where here we have V min 4 Λ and Ω min =. For each n, tunneling causes the two degenerate levels to split by a small amount n, so E n Ε n n, E n n Ε n n 0,,,... very deep wells. Ε n

15 matrix_qm.nb 5 fer progressively mroe and more, indicating that the potential cannot be accurately represented by a parabola at these energies.

Harmonic Oscillator with raising and lowering operators. We write the Schrödinger equation for the harmonic oscillator in one dimension as follows:

Harmonic Oscillator with raising and lowering operators. We write the Schrödinger equation for the harmonic oscillator in one dimension as follows: We write the Schrödinger equation for the harmonic oscillator in one dimension as follows: H ˆ! = "!2 d 2! + 1 2µ dx 2 2 kx 2! = E! T ˆ = "! 2 2µ d 2 dx 2 V ˆ = 1 2 kx 2 H ˆ = ˆ T + ˆ V (1) where µ is

More information

The Shooting Method (application to energy levels of the simple harmonic oscillator and other problems of a particle in a potential minimum)

The Shooting Method (application to energy levels of the simple harmonic oscillator and other problems of a particle in a potential minimum) The Shooting Method (application to energy levels of the simple harmonic oscillator and other problems of a particle in a potential minimum) Introduction In the previous handout we found the eigenvalues

More information

Quantum Wells The Shooting Method (application to the simple harmonic oscillator and other problems of a particle in a potential)

Quantum Wells The Shooting Method (application to the simple harmonic oscillator and other problems of a particle in a potential) quantumwellsho.nb Quantum Wells The Shooting Method (application to the simple harmonic oscillator and other problems of a particle in a potential) Introduction In the previous handout we found the eigenvalues

More information

Simple Harmonic Oscillator

Simple Harmonic Oscillator Classical harmonic oscillator Linear force acting on a particle (Hooke s law): F =!kx From Newton s law: F = ma = m d x dt =!kx " d x dt + # x = 0, # = k / m Position and momentum solutions oscillate in

More information

Page 404. Lecture 22: Simple Harmonic Oscillator: Energy Basis Date Given: 2008/11/19 Date Revised: 2008/11/19

Page 404. Lecture 22: Simple Harmonic Oscillator: Energy Basis Date Given: 2008/11/19 Date Revised: 2008/11/19 Page 404 Lecture : Simple Harmonic Oscillator: Energy Basis Date Given: 008/11/19 Date Revised: 008/11/19 Coordinate Basis Section 6. The One-Dimensional Simple Harmonic Oscillator: Coordinate Basis Page

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

Harmonic Oscillator Eigenvalues and Eigenfunctions

Harmonic Oscillator Eigenvalues and Eigenfunctions Chemistry 46 Fall 217 Dr. Jean M. Standard October 4, 217 Harmonic Oscillator Eigenvalues and Eigenfunctions The Quantum Mechanical Harmonic Oscillator The quantum mechanical harmonic oscillator in one

More information

Chm 331 Fall 2015, Exercise Set 4 NMR Review Problems

Chm 331 Fall 2015, Exercise Set 4 NMR Review Problems Chm 331 Fall 015, Exercise Set 4 NMR Review Problems Mr. Linck Version.0. Compiled December 1, 015 at 11:04:44 4.1 Diagonal Matrix Elements for the nmr H 0 Find the diagonal matrix elements for H 0 (the

More information

Addition of Angular Momenta

Addition of Angular Momenta Addition of Angular Momenta What we have so far considered to be an exact solution for the many electron problem, should really be called exact non-relativistic solution. A relativistic treatment is needed

More information

1 Notes and Directions on Dirac Notation

1 Notes and Directions on Dirac Notation 1 Notes and Directions on Dirac Notation A. M. Steane, Exeter College, Oxford University 1.1 Introduction These pages are intended to help you get a feel for the mathematics behind Quantum Mechanics. The

More information

Showing the shooting method in detail for n = 0

Showing the shooting method in detail for n = 0 11.2.7 Finding Eigenvalues by the Shooting Method The shooting method is a means to compute eigenvalues of a boundary problem defined by a onedimensional differential equation and boundary conditions fixed

More information

Massachusetts Institute of Technology Physics Department

Massachusetts Institute of Technology Physics Department Massachusetts Institute of Technology Physics Department Physics 8.32 Fall 2006 Quantum Theory I October 9, 2006 Assignment 6 Due October 20, 2006 Announcements There will be a makeup lecture on Friday,

More information

Alpha Decay. 1. Introduction. 2. Constants, Commands, and Functions. 2.1 Constants:

Alpha Decay. 1. Introduction. 2. Constants, Commands, and Functions. 2.1 Constants: 1. Introduction Alpha Decay One of the earliest and most convincing verifications of the validity of quantum mechanics was the resolution of the paradox of alpha decay observed in heavy nuclei. Gamow,

More information

Rotations in Quantum Mechanics

Rotations in Quantum Mechanics Rotations in Quantum Mechanics We have seen that physical transformations are represented in quantum mechanics by unitary operators acting on the Hilbert space. In this section, we ll think about the specific

More information

Chain of interacting spins-1/2

Chain of interacting spins-1/2 Chain of interacting spins-1/2 Below we give codes for finding: (1) the Hamiltonian in the site-basis, as well as its eigenvalues and eigenstates; (2) the density of states; (3) the number of principal

More information

Atkins & de Paula: Atkins Physical Chemistry 9e Checklist of key ideas. Chapter 8: Quantum Theory: Techniques and Applications

Atkins & de Paula: Atkins Physical Chemistry 9e Checklist of key ideas. Chapter 8: Quantum Theory: Techniques and Applications Atkins & de Paula: Atkins Physical Chemistry 9e Checklist of key ideas Chapter 8: Quantum Theory: Techniques and Applications TRANSLATIONAL MOTION wavefunction of free particle, ψ k = Ae ikx + Be ikx,

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

Physics 229& 100 Homework #1 Name: Nasser Abbasi

Physics 229& 100 Homework #1 Name: Nasser Abbasi 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,

More information

HW WKB harmonic oscillator. a) Energy levels. b) SHO WKB wavefunctions. HW6.nb 1. (Hitoshi does this problem in his WKB notes, on page 8.

HW WKB harmonic oscillator. a) Energy levels. b) SHO WKB wavefunctions. HW6.nb 1. (Hitoshi does this problem in his WKB notes, on page 8. HW6.nb HW 6. WKB harmonic oscillator a) Energy levels (Hitoshi does this problem in his WKB notes, on page 8.) The classical turning points a, b are where KE=0, i.e. E Vx m x so a, b E. m We apply or Vx

More information

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata

MSE 310/ECE 340. Instructor: Bill Knowlton. Initialize data Clear somedata, someplot. Place data in list somedata MSE 3/ECE 340 Instructor: Bill Knowlton Examples of Plotting Functions ü Example 1: Using the command ListPlot[ ] to plot data in a scatter plot In[1]:= Initialize data Clear somedata someplot Place data

More information

From The Picture Book of Quantum Mechanics, S. Brandt and H.D. Dahmen, 4th ed., c 2012 by Springer-Verlag New York.

From The Picture Book of Quantum Mechanics, S. Brandt and H.D. Dahmen, 4th ed., c 2012 by Springer-Verlag New York. 1 Fig. 6.1. Bound states in an infinitely deep square well. The long-dash line indicates the potential energy V (x). It vanishes for d/2 < x < d/2 and is infinite elsewhere. Points x = ±d/2 are indicated

More information

Physics 221A Fall 2017 Notes 27 The Variational Method

Physics 221A Fall 2017 Notes 27 The Variational Method Copyright c 2018 by Robert G. Littlejohn Physics 221A Fall 2017 Notes 27 The Variational Method 1. Introduction Very few realistic problems in quantum mechanics are exactly solvable, so approximation methods

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

Problems and Multiple Choice Questions

Problems and Multiple Choice Questions Problems and Multiple Choice Questions 1. A momentum operator in one dimension is 2. A position operator in 3 dimensions is 3. A kinetic energy operator in 1 dimension is 4. If two operator commute, a)

More information

Ph2b Quiz - 2. Instructions

Ph2b Quiz - 2. Instructions Ph2b Quiz - 2 Instructions 1. Your solutions are due by Monday, February 26th, 2018 at 4pm in the quiz box outside 201 E. Bridge. 2. Late quizzes will not be accepted, except in very special circumstances.

More information

Problem 1: A 3-D Spherical Well(10 Points)

Problem 1: A 3-D Spherical Well(10 Points) Problem : A 3-D Spherical Well( Points) For this problem, consider a particle of mass m in a three-dimensional spherical potential well, V (r), given as, V = r a/2 V = W r > a/2. with W >. All of the following

More information

Class 4: More Pendulum results

Class 4: More Pendulum results Class 4: More Pendulum results The pendulum is a mechanical problem with a long and interesting history, from Galileo s first ansatz that the period was independent of the amplitude based on watching priests

More information

Quantum Physics III (8.06) Spring 2005 Assignment 5

Quantum Physics III (8.06) Spring 2005 Assignment 5 Quantum Physics III (8.06) Spring 2005 Assignment 5 Tuesday March 1, 2005 Due Tuesday March 8, 2005 Readings The reading assignment for this problem set and part of the next one is: Griffiths all of Chapter

More information

Lecture #8: Quantum Mechanical Harmonic Oscillator

Lecture #8: Quantum Mechanical Harmonic Oscillator 5.61 Fall, 013 Lecture #8 Page 1 Last time Lecture #8: Quantum Mechanical Harmonic Oscillator Classical Mechanical Harmonic Oscillator * V(x) = 1 kx (leading term in power series expansion of most V(x)

More information

Physics 137A Quantum Mechanics Fall 2012 Midterm II - Solutions

Physics 137A Quantum Mechanics Fall 2012 Midterm II - Solutions Physics 37A Quantum Mechanics Fall 0 Midterm II - Solutions These are the solutions to the exam given to Lecture Problem [5 points] Consider a particle with mass m charge q in a simple harmonic oscillator

More information

CHAPTER 6 Quantum Mechanics II

CHAPTER 6 Quantum Mechanics II CHAPTER 6 Quantum Mechanics II 6.1 6.2 6.3 6.4 6.5 6.6 6.7 The Schrödinger Wave Equation Expectation Values Infinite Square-Well Potential Finite Square-Well Potential Three-Dimensional Infinite-Potential

More information

Physics 342 Lecture 26. Angular Momentum. Lecture 26. Physics 342 Quantum Mechanics I

Physics 342 Lecture 26. Angular Momentum. Lecture 26. Physics 342 Quantum Mechanics I Physics 342 Lecture 26 Angular Momentum Lecture 26 Physics 342 Quantum Mechanics I Friday, April 2nd, 2010 We know how to obtain the energy of Hydrogen using the Hamiltonian operator but given a particular

More information

Reading: Mathchapters F and G, MQ - Ch. 7-8, Lecture notes on hydrogen atom.

Reading: Mathchapters F and G, MQ - Ch. 7-8, Lecture notes on hydrogen atom. Chemistry 356 017: Problem set No. 6; Reading: Mathchapters F and G, MQ - Ch. 7-8, Lecture notes on hydrogen atom. The H atom involves spherical coordinates and angular momentum, which leads to the shapes

More information

Chem 3502/4502 Physical Chemistry II (Quantum Mechanics) 3 Credits Spring Semester 2006 Christopher J. Cramer. Lecture 9, February 8, 2006

Chem 3502/4502 Physical Chemistry II (Quantum Mechanics) 3 Credits Spring Semester 2006 Christopher J. Cramer. Lecture 9, February 8, 2006 Chem 3502/4502 Physical Chemistry II (Quantum Mechanics) 3 Credits Spring Semester 2006 Christopher J. Cramer Lecture 9, February 8, 2006 The Harmonic Oscillator Consider a diatomic molecule. Such a molecule

More information

P3317 HW from Lecture 15 and Recitation 8

P3317 HW from Lecture 15 and Recitation 8 P3317 HW from Lecture 15 and Recitation 8 Due Oct 23, 218 Problem 1. Variational Energy of Helium Here we will estimate the ground state energy of Helium. Helium has two electrons circling around a nucleus

More information

LS coupling. 2 2 n + H s o + H h f + H B. (1) 2m

LS coupling. 2 2 n + H s o + H h f + H B. (1) 2m LS coupling 1 The big picture We start from the Hamiltonian of an atomic system: H = [ ] 2 2 n Ze2 1 + 1 e 2 1 + H s o + H h f + H B. (1) 2m n e 4πɛ 0 r n 2 4πɛ 0 r nm n,m Here n runs pver the electrons,

More information

+E v(t) H(t) = v(t) E where v(t) is real and where v 0 for t ±.

+E v(t) H(t) = v(t) E where v(t) is real and where v 0 for t ±. . Brick in a Square Well REMEMBER: THIS PROBLEM AND THOSE BELOW SHOULD NOT BE HANDED IN. THEY WILL NOT BE GRADED. THEY ARE INTENDED AS A STUDY GUIDE TO HELP YOU UNDERSTAND TIME DEPENDENT PERTURBATION THEORY

More information

Harmonic Oscillator I

Harmonic Oscillator I Physics 34 Lecture 7 Harmonic Oscillator I Lecture 7 Physics 34 Quantum Mechanics I Monday, February th, 008 We can manipulate operators, to a certain extent, as we would algebraic expressions. By considering

More information

Quantum mechanics in one hour

Quantum mechanics in one hour Chapter 2 Quantum mechanics in one hour 2.1 Introduction The purpose of this chapter is to refresh your knowledge of quantum mechanics and to establish notation. Depending on your background you might

More information

Quantum Mechanics Solutions. λ i λ j v j v j v i v i.

Quantum Mechanics Solutions. λ i λ j v j v j v i v i. Quantum Mechanics Solutions 1. (a) If H has an orthonormal basis consisting of the eigenvectors { v i } of A with eigenvalues λ i C, then A can be written in terms of its spectral decomposition as A =

More information

EE201/MSE207 Lecture 10 Angular momentum

EE201/MSE207 Lecture 10 Angular momentum EE20/MSE207 Lecture 0 Angular momentum (A lot of mathematics; I will try to explain as simple as possile) Classical mechanics r L = r p (angular momentum) Quantum mechanics The same, ut p x = iħ x p =

More information

The Simple Harmonic Oscillator

The Simple Harmonic Oscillator The Simple Harmonic Oscillator Asaf Pe er 1 November 4, 215 This part of the course is based on Refs [1] [3] 1 Introduction We return now to the study of a 1-d stationary problem: that of the simple harmonic

More information

Angular Momentum Algebra

Angular Momentum Algebra Angular Momentum Algebra Chris Clark August 1, 2006 1 Input We will be going through the derivation of the angular momentum operator algebra. The only inputs to this mathematical formalism are the basic

More information

Time-Independent Perturbation Theory

Time-Independent Perturbation Theory 4 Phys46.nb Time-Independent Perturbation Theory.. Overview... General question Assuming that we have a Hamiltonian, H = H + λ H (.) where λ is a very small real number. The eigenstates of the Hamiltonian

More information

5.61 Physical Chemistry Lecture #36 Page

5.61 Physical Chemistry Lecture #36 Page 5.61 Physical Chemistry Lecture #36 Page 1 NUCLEAR MAGNETIC RESONANCE Just as IR spectroscopy is the simplest example of transitions being induced by light s oscillating electric field, so NMR is the simplest

More information

Central potential problem and angular momentum. Separating the Angular and Radial wave equations. Asymptotics of the radial equation

Central potential problem and angular momentum. Separating the Angular and Radial wave equations. Asymptotics of the radial equation Central potential problem and angular momentum What is a central potential? Separating the Angular and Radial wave equations Asymptotics of the radial equation Example 1: Free Particle Example 2: 3-d QHO

More information

Opinions on quantum mechanics. CHAPTER 6 Quantum Mechanics II. 6.1: The Schrödinger Wave Equation. Normalization and Probability

Opinions on quantum mechanics. CHAPTER 6 Quantum Mechanics II. 6.1: The Schrödinger Wave Equation. Normalization and Probability CHAPTER 6 Quantum Mechanics II 6.1 The Schrödinger Wave Equation 6. Expectation Values 6.3 Infinite Square-Well Potential 6.4 Finite Square-Well Potential 6.5 Three-Dimensional Infinite- 6.6 Simple Harmonic

More information

Ch 125a Problem Set 1

Ch 125a Problem Set 1 Ch 5a Problem Set Due Monday, Oct 5, 05, am Problem : Bra-ket notation (Dirac notation) Bra-ket notation is a standard and convenient way to describe quantum state vectors For example, φ is an abstract

More information

Two and Three-Dimensional Systems

Two and Three-Dimensional Systems 0 Two and Three-Dimensional Systems Separation of variables; degeneracy theorem; group of invariance of the two-dimensional isotropic oscillator. 0. Consider the Hamiltonian of a two-dimensional anisotropic

More information

Physics 215 Quantum Mechanics 1 Assignment 5

Physics 215 Quantum Mechanics 1 Assignment 5 Physics 15 Quantum Mechanics 1 Assignment 5 Logan A. Morrison February 10, 016 Problem 1 A particle of mass m is confined to a one-dimensional region 0 x a. At t 0 its normalized wave function is 8 πx

More information

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

The Sommerfeld Polynomial Method: Harmonic Oscillator Example

The Sommerfeld Polynomial Method: Harmonic Oscillator Example Chemistry 460 Fall 2017 Dr. Jean M. Standard October 2, 2017 The Sommerfeld Polynomial Method: Harmonic Oscillator Example Scaling the Harmonic Oscillator Equation Recall the basic definitions of the harmonic

More information

Quantum Mechanics for Scientists and Engineers. David Miller

Quantum Mechanics for Scientists and Engineers. David Miller Quantum Mechanics for Scientists and Engineers David Miller Particles in potential wells The finite potential well Insert video here (split screen) Finite potential well Lesson 7 Particles in potential

More information

Qualifying Exam. Aug Part II. Please use blank paper for your work do not write on problems sheets!

Qualifying Exam. Aug Part II. Please use blank paper for your work do not write on problems sheets! Qualifying Exam Aug. 2015 Part II Please use blank paper for your work do not write on problems sheets! Solve only one problem from each of the four sections Mechanics, Quantum Mechanics, Statistical Physics

More information

Physics 342 Lecture 27. Spin. Lecture 27. Physics 342 Quantum Mechanics I

Physics 342 Lecture 27. Spin. Lecture 27. Physics 342 Quantum Mechanics I Physics 342 Lecture 27 Spin Lecture 27 Physics 342 Quantum Mechanics I Monday, April 5th, 2010 There is an intrinsic characteristic of point particles that has an analogue in but no direct derivation from

More information

Statistical Interpretation

Statistical Interpretation Physics 342 Lecture 15 Statistical Interpretation Lecture 15 Physics 342 Quantum Mechanics I Friday, February 29th, 2008 Quantum mechanics is a theory of probability densities given that we now have an

More information

H.O. [202] 3 2 (2) (2) H.O. 4.0 [200] 1 2 [202] 5 2 (2) (4) (2) 3.5 [211] 1 2 (2) (6) [211] 3 2 (2) 3.0 (2) [220] ε

H.O. [202] 3 2 (2) (2) H.O. 4.0 [200] 1 2 [202] 5 2 (2) (4) (2) 3.5 [211] 1 2 (2) (6) [211] 3 2 (2) 3.0 (2) [220] ε E/ħω H r 0 r Y0 0 l s l l N + l + l s [0] 3 H.O. ε = 0.75 4.0 H.O. ε = 0 + l s + l [00] n z = 0 d 3/ 4 [0] 5 3.5 N = s / N n z d 5/ 6 [] n z = N lj [] 3 3.0.5 0.0 0.5 ε 0.5 0.75 [0] n z = interaction of

More information

Quantum Theory and Group Representations

Quantum Theory and Group Representations Quantum Theory and Group Representations Peter Woit Columbia University LaGuardia Community College, November 1, 2017 Queensborough Community College, November 15, 2017 Peter Woit (Columbia University)

More information

Quantum Physics III (8.06) Spring 2007 FINAL EXAMINATION Monday May 21, 9:00 am You have 3 hours.

Quantum Physics III (8.06) Spring 2007 FINAL EXAMINATION Monday May 21, 9:00 am You have 3 hours. Quantum Physics III (8.06) Spring 2007 FINAL EXAMINATION Monday May 21, 9:00 am You have 3 hours. There are 10 problems, totalling 180 points. Do all problems. Answer all problems in the white books provided.

More information

A Poor Example of a Project - But Gives Some Direction

A Poor Example of a Project - But Gives Some Direction A Poor Example of a Project - But Gives Some Direction Bill Knowlton Materials Science & Engineering Electrical & Computer Engineering Boise State Unversity The idea behind this example is two-fold: 1.

More information

4.3 Lecture 18: Quantum Mechanics

4.3 Lecture 18: Quantum Mechanics CHAPTER 4. QUANTUM SYSTEMS 73 4.3 Lecture 18: Quantum Mechanics 4.3.1 Basics Now that we have mathematical tools of linear algebra we are ready to develop a framework of quantum mechanics. The framework

More information

Physics 342 Lecture 17. Midterm I Recap. Lecture 17. Physics 342 Quantum Mechanics I

Physics 342 Lecture 17. Midterm I Recap. Lecture 17. Physics 342 Quantum Mechanics I Physics 342 Lecture 17 Midterm I Recap Lecture 17 Physics 342 Quantum Mechanics I Monday, March 1th, 28 17.1 Introduction In the context of the first midterm, there are a few points I d like to make about

More information

arxiv: v1 [hep-ph] 5 Sep 2017

arxiv: v1 [hep-ph] 5 Sep 2017 A First Step Towards Effectively Nonperturbative Scattering Amplitudes in the Perturbative Regime Neil Christensen, Joshua Henderson, Santiago Pinto, and Cory Russ Department of Physics, Illinois State

More information

Total Angular Momentum for Hydrogen

Total Angular Momentum for Hydrogen Physics 4 Lecture 7 Total Angular Momentum for Hydrogen Lecture 7 Physics 4 Quantum Mechanics I Friday, April th, 008 We have the Hydrogen Hamiltonian for central potential φ(r), we can write: H r = p

More information

S.E. of H.O., con con t

S.E. of H.O., con con t Quantum Mechanics and Atomic Physics Lecture 11: The Harmonic Oscillator: Part I http://www.physics.rutgers.edu/ugrad/361 Prof. Sean Oh The Classical Harmonic Oscillator Classical mechanics examples Mass

More information

Second quantization: where quantization and particles come from?

Second quantization: where quantization and particles come from? 110 Phys460.nb 7 Second quantization: where quantization and particles come from? 7.1. Lagrangian mechanics and canonical quantization Q: How do we quantize a general system? 7.1.1.Lagrangian Lagrangian

More information

3 The Harmonic Oscillator

3 The Harmonic Oscillator 3 The Harmonic Oscillator What we ve laid out so far is essentially just linear algebra. I now want to show how this formalism can be used to do some physics. To do this, we ll study a simple system the

More information

Quantum Mechanics Solutions

Quantum Mechanics Solutions Quantum Mechanics Solutions (a (i f A and B are Hermitian, since (AB = B A = BA, operator AB is Hermitian if and only if A and B commute So, we know that [A,B] = 0, which means that the Hilbert space H

More information

Sample Mathematica code for the paper "Modeling a Diving Board"

Sample Mathematica code for the paper Modeling a Diving Board Sample Mathematica code for the paper "Modeling a Diving Board" Michael A. Karls and Brenda M. Skoczelas, Department of Mathematical Sciences, Ball State University, Muncie, IN 47306 Beam Data Original

More information

NANOSCALE SCIENCE & TECHNOLOGY

NANOSCALE SCIENCE & TECHNOLOGY . NANOSCALE SCIENCE & TECHNOLOGY V Two-Level Quantum Systems (Qubits) Lecture notes 5 5. Qubit description Quantum bit (qubit) is an elementary unit of a quantum computer. Similar to classical computers,

More information

Statistical Mechanics in a Nutshell

Statistical Mechanics in a Nutshell Chapter 2 Statistical Mechanics in a Nutshell Adapted from: Understanding Molecular Simulation Daan Frenkel and Berend Smit Academic Press (2001) pp. 9-22 11 2.1 Introduction In this course, we will treat

More information

CHAPTER 6 Quantum Mechanics II

CHAPTER 6 Quantum Mechanics II CHAPTER 6 Quantum Mechanics II 6.1 The Schrödinger Wave Equation 6.2 Expectation Values 6.3 Infinite Square-Well Potential 6.4 Finite Square-Well Potential 6.5 Three-Dimensional Infinite-Potential Well

More information

Prob (solution by Michael Fisher) 1

Prob (solution by Michael Fisher) 1 Prob 975 (solution by Michael Fisher) We begin by expressing the initial state in a basis of the spherical harmonics, which will allow us to apply the operators ˆL and ˆL z θ, φ φ() = 4π sin θ sin φ =

More information

P3317 HW from Lecture 7+8 and Recitation 4

P3317 HW from Lecture 7+8 and Recitation 4 P3317 HW from Lecture 7+8 and Recitation 4 Due Friday Tuesday September 25 Problem 1. In class we argued that an ammonia atom in an electric field can be modeled by a two-level system, described by a Schrodinger

More information

Eigenmodes for coupled harmonic vibrations. Algebraic Method for Harmonic Oscillator.

Eigenmodes for coupled harmonic vibrations. Algebraic Method for Harmonic Oscillator. PHYS208 spring 2008 Eigenmodes for coupled harmonic vibrations. Algebraic Method for Harmonic Oscillator. 07.02.2008 Adapted from the text Light - Atom Interaction PHYS261 autumn 2007 Go to list of topics

More information

Chem 452 Mega Practice Exam 1

Chem 452 Mega Practice Exam 1 Last Name: First Name: PSU ID #: Chem 45 Mega Practice Exam 1 Cover Sheet Closed Book, Notes, and NO Calculator The exam will consist of approximately 5 similar questions worth 4 points each. This mega-exam

More information

Physics 115/242 Comparison of methods for integrating the simple harmonic oscillator.

Physics 115/242 Comparison of methods for integrating the simple harmonic oscillator. Physics 115/4 Comparison of methods for integrating the simple harmonic oscillator. Peter Young I. THE SIMPLE HARMONIC OSCILLATOR The energy (sometimes called the Hamiltonian ) of the simple harmonic oscillator

More information

PHY 407 QUANTUM MECHANICS Fall 05 Problem set 1 Due Sep

PHY 407 QUANTUM MECHANICS Fall 05 Problem set 1 Due Sep Problem set 1 Due Sep 15 2005 1. Let V be the set of all complex valued functions of a real variable θ, that are periodic with period 2π. That is u(θ + 2π) = u(θ), for all u V. (1) (i) Show that this V

More information

Physics 202 Laboratory 5. Linear Algebra 1. Laboratory 5. Physics 202 Laboratory

Physics 202 Laboratory 5. Linear Algebra 1. Laboratory 5. Physics 202 Laboratory Physics 202 Laboratory 5 Linear Algebra Laboratory 5 Physics 202 Laboratory We close our whirlwind tour of numerical methods by advertising some elements of (numerical) linear algebra. There are three

More information

Quantum Physics III (8.06) Spring 2016 Assignment 3

Quantum Physics III (8.06) Spring 2016 Assignment 3 Quantum Physics III (8.6) Spring 6 Assignment 3 Readings Griffiths Chapter 9 on time-dependent perturbation theory Shankar Chapter 8 Cohen-Tannoudji, Chapter XIII. Problem Set 3. Semi-classical approximation

More information

5 Linear Homotopy. 5-1 Introduction

5 Linear Homotopy. 5-1 Introduction Algebraic Geodesy and Geoinformatics - 2009 PART I METHODS 5 Linear Homotopy 5-1 Introduction Most often, there exist a fundamental task of solving systems of equations in geodesy. In such cases, many

More information

Quantum Mechanics C (130C) Winter 2014 Final exam

Quantum Mechanics C (130C) Winter 2014 Final exam University of California at San Diego Department of Physics Prof. John McGreevy Quantum Mechanics C (130C Winter 014 Final exam Please remember to put your name on your exam booklet. This is a closed-book

More information

Brief review of Quantum Mechanics (QM)

Brief review of Quantum Mechanics (QM) Brief review of Quantum Mechanics (QM) Note: This is a collection of several formulae and facts that we will use throughout the course. It is by no means a complete discussion of QM, nor will I attempt

More information

Summary of Last Time Barrier Potential/Tunneling Case I: E<V 0 Describes alpha-decay (Details are in the lecture note; go over it yourself!!) Case II:

Summary of Last Time Barrier Potential/Tunneling Case I: E<V 0 Describes alpha-decay (Details are in the lecture note; go over it yourself!!) Case II: Quantum Mechanics and Atomic Physics Lecture 8: Scattering & Operators and Expectation Values http://www.physics.rutgers.edu/ugrad/361 Prof. Sean Oh Summary of Last Time Barrier Potential/Tunneling Case

More information

Columbia University Department of Physics QUALIFYING EXAMINATION

Columbia University Department of Physics QUALIFYING EXAMINATION Columbia University Department of Physics QUALIFYING EXAMINATION Wednesday, January 10, 2018 10:00AM to 12:00PM Modern Physics Section 3. Quantum Mechanics Two hours are permitted for the completion of

More information

Perturbation Theory. Andreas Wacker Mathematical Physics Lund University

Perturbation Theory. Andreas Wacker Mathematical Physics Lund University Perturbation Theory Andreas Wacker Mathematical Physics Lund University General starting point Hamiltonian ^H (t) has typically noanalytic solution of Ψ(t) Decompose Ĥ (t )=Ĥ 0 + V (t) known eigenstates

More information

Quantum Physics III (8.06) Spring 2005 Assignment 8

Quantum Physics III (8.06) Spring 2005 Assignment 8 Quantum Physics III (8.06) Spring 2005 Assignment 8 April 5, 2005 Due WEDNESDAY April 20, 2005 Readings Griffiths Chapter 8 on the semiclassical approximation. Griffiths Chapter 10 on the adiabatic approximation.

More information

Asymptotic Methods of ODEs: Exploring Singularities of the Second Kind

Asymptotic Methods of ODEs: Exploring Singularities of the Second Kind The Mathematica Journal Asymptotic Methods of ODEs: Exploring Singularities of the Second Kind Christopher J. Winfield Madison Area Science and Technology We develop symbolic methods of asymptotic approximations

More information

Section 9 Variational Method. Page 492

Section 9 Variational Method. Page 492 Section 9 Variational Method Page 492 Page 493 Lecture 27: The Variational Method Date Given: 2008/12/03 Date Revised: 2008/12/03 Derivation Section 9.1 Variational Method: Derivation Page 494 Motivation

More information

QM and Angular Momentum

QM and Angular Momentum Chapter 5 QM and Angular Momentum 5. Angular Momentum Operators In your Introductory Quantum Mechanics (QM) course you learned about the basic properties of low spin systems. Here we want to review that

More information

PH 451/551 Quantum Mechanics Capstone Winter 201x

PH 451/551 Quantum Mechanics Capstone Winter 201x These are the questions from the W7 exam presented as practice problems. The equation sheet is PH 45/55 Quantum Mechanics Capstone Winter x TOTAL POINTS: xx Weniger 6, time There are xx questions, for

More information

Lecture 12. The harmonic oscillator

Lecture 12. The harmonic oscillator Lecture 12 The harmonic oscillator 107 108 LECTURE 12. THE HARMONIC OSCILLATOR 12.1 Introduction In this chapter, we are going to find explicitly the eigenfunctions and eigenvalues for the time-independent

More information

P3317 HW from Lecture and Recitation 7

P3317 HW from Lecture and Recitation 7 P3317 HW from Lecture 1+13 and Recitation 7 Due Oct 16, 018 Problem 1. Separation of variables Suppose we have two masses that can move in 1D. They are attached by a spring, yielding a Hamiltonian where

More information

in terms of the classical frequency, ω = , puts the classical Hamiltonian in the form H = p2 2m + mω2 x 2

in terms of the classical frequency, ω = , puts the classical Hamiltonian in the form H = p2 2m + mω2 x 2 One of the most important problems in quantum mechanics is the simple harmonic oscillator, in part because its properties are directly applicable to field theory. The treatment in Dirac notation is particularly

More information

Sample Quantum Chemistry Exam 2 Solutions

Sample Quantum Chemistry Exam 2 Solutions Chemistry 46 Fall 7 Dr. Jean M. Standard Name SAMPE EXAM Sample Quantum Chemistry Exam Solutions.) ( points) Answer the following questions by selecting the correct answer from the choices provided. a.)

More information

Comparison of Finite Differences and WKB Method for Approximating Tunneling Times of the One Dimensional Schrödinger Equation Student: Yael Elmatad

Comparison of Finite Differences and WKB Method for Approximating Tunneling Times of the One Dimensional Schrödinger Equation Student: Yael Elmatad Comparison of Finite Differences and WKB Method for Approximating Tunneling Times of the One Dimensional Schrödinger Equation Student: Yael Elmatad Overview The goal of this research was to examine the

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

Mathematical Physics Homework 10

Mathematical Physics Homework 10 Georgia Institute of Technology Mathematical Physics Homework Conner Herndon November, 5 Several types of orthogonal polynomials frequently occur in various physics problems. For instance, Hermite polynomials

More information

Physics 217 Problem Set 1 Due: Friday, Aug 29th, 2008

Physics 217 Problem Set 1 Due: Friday, Aug 29th, 2008 Problem Set 1 Due: Friday, Aug 29th, 2008 Course page: http://www.physics.wustl.edu/~alford/p217/ Review of complex numbers. See appendix K of the textbook. 1. Consider complex numbers z = 1.5 + 0.5i and

More information

Dimensional analysis

Dimensional analysis Dimensional analysis Calvin W. Johnson September 9, 04 Dimensional analysis Dimensional analysis is a powerful and important tool in calculations. In fact, you should make it a habit to automatically use

More information