Steps for Solving the Time Independent Schrodinger Equation for a Free Particle

  • Context: Graduate 
  • Thread starter Thread starter linear_shift
  • Start date Start date
  • Tags Tags
    Ode
Click For Summary

Discussion Overview

The discussion revolves around solving the time-independent Schrödinger equation for a free particle, specifically addressing the differential equation d²y/dx² = -ky. Participants explore various methods and forms of solutions, including exponential and trigonometric representations, while some express their learning processes and challenges with differential equations.

Discussion Character

  • Exploratory
  • Technical explanation
  • Debate/contested
  • Mathematical reasoning

Main Points Raised

  • One participant requests a step-by-step solution to the equation, expressing a desire to learn through examples rather than corrections of their own attempts.
  • Another participant suggests starting with a trial solution of the form y = e^{λx} to solve the equation.
  • A participant recalls from memory that the general solution involves complex exponentials and provides a derivation leading to y(x) = A*cos(√k*x) + B*sin(√k*x).
  • Some participants debate the validity of solutions for k ≤ 0, with one asserting that nontrivial solutions exist for these cases.
  • There is discussion about the inclusion of an exponential term in the solution, with differing opinions on its necessity and relevance to the specific form of the differential equation.
  • One participant expresses satisfaction with the clarification received, indicating they now understand how to approach quantum mechanics wave equations.
  • Another participant argues that the absence of a first derivative in the equation does not preclude the presence of exponential terms in the solution.
  • There is a contention regarding the usefulness of adding a constant exponential factor to the solution, with some participants asserting it is unnecessary while others defend its inclusion based on general solution forms.

Areas of Agreement / Disagreement

Participants do not reach a consensus on several points, including the necessity of exponential terms in the solution and the existence of nontrivial solutions for k ≤ 0. The discussion remains unresolved on these aspects.

Contextual Notes

Some participants acknowledge limitations in their understanding of differential equations, indicating varying levels of experience and familiarity with the topic. The discussion reflects differing interpretations of mathematical techniques and their applicability to the problem at hand.

linear_shift
Messages
16
Reaction score
0
Hi, could someone show me the steps to solve the equation

d^2y/dx^2 = -ky

for the solution

A*exp(i*sqrt(k)*x) + B*exp(-i*sqrt(k)*x)

?

I am trying to solve the time independent Schrödinger equation for a free particle, and the above question is of the same form. Wikipedia says it is the above solution, and I can kind of see where it's going in doing some of the math for myself, but am stuck at several places. Don't ask me what I did, it will not help me for you to correct me at steps, I just need to see it done so that I can "assimilate" the knowledge for me to use in other problems (I am rather inexperienced with these types of (O)DEs, and I'm learning subjects in tandem to learn them, quantum mechanics I would like to learn, and DEs I would like to strengthen my knowledge of; it's just how I learn best, don't ask me why).

Thanks,

linear
 
Physics news on Phys.org
Don't ask me what I did, it will not help me for you to correct me at steps, I just need to see it done so that I can "assimilate" the knowledge for me to use in other problems

No offense, but that is a pretty bad attitude. You won't learn mathematics properly by just copying people.

Anyhow to get you started. These equations are usually solved by inserting a try out solution [itex]y=e^{\lambda x}[/itex].
 
Take this with a grain of salt, as I am doing it completely from memory. If you have y'' = -ky, then y = erx is a solution since y'' = r2erx, and substituting this into the original ODE you have

r2erx = -kerx ==> r2 = -k ==> r = +/- sqrt(-k)

then r = +/- i sqrt(k) therefore let

[tex]y_1 = e^{i\sqrt{k}x}, y_2 = e^{-i\sqrt{k}x}[/tex]

But we can take a linear combination of these:

[tex]\hat{y_1} = \frac{y_1 + y_2}{2}, \hat{y_2} = \frac{y_1 - y_2}{2i}[/tex]

Then by superposition

[tex]y(x) = A\hat{y_1} + B\hat{y_2} = A\cos(\sqrt{k}x) + B\sin(\sqrt{k}x)[/tex]

where A,B are constants.

This is assuming that k > 0 since k <= 0 has no nontrivial solutions (again, from memory).
 
Last edited:
Cyosis,

I never said I was going to copy anyone, I only mean that I'm going to use the ideas in the steps being taken to solve other problems. _That_ is how I learn, not by copying.
 
pbandjay said:
This is assuming that k > 0 since k <= 0 has no nontrivial solutions (again, from memory).

Both k=0 and k<0 have nontrivial solutions.
 
pbandjay,

I guess there is no exponentials in your final answer becasue the solution should be in the form:

y(t)=e^(alpha*t)*(Acos(beta*t) + Bsin(beta*t))

Where i guess in this case:
alpha=0 (Therefore making e^(alpha*t) equal to 1)
beta=sqrt(k)

Just trying to understand your logic becasue this is the first time i have seen such an equation solved using that particular method. And yes, i realize your equation was in terms of x not t, but this really dosent matter...

Thanks for the post.
 
Why would you put that exponential in front in this case?
 
Meteorologist said:
pbandjay,

I guess there is no exponentials in your final answer becasue the solution should be in the form:

y(t)=e^(alpha*t)*(Acos(beta*t) + Bsin(beta*t))

Where i guess in this case:
alpha=0 (Therefore making e^(alpha*t) equal to 1)
beta=sqrt(k)

Just trying to understand your logic becasue this is the first time i have seen such an equation solved using that particular method. And yes, i realize your equation was in terms of x not t, but this really dosent matter...

Thanks for the post.

An equation of the form

[tex]y(x) = c_1 e^{i\sqrt{k}x} + c_2 e^{-i\sqrt{k}x}[/tex]

would also solve the ODE, but that technique made use of the definitions

[tex]\cos x = \frac{e^{ix} + e^{-ix}}{2}[/tex]

[tex]\sin x = \frac{e^{ix} - e^{-ix}}{2i}[/tex]

to get rid of the imaginary units.
 
Cyosis,

i believe the reason for multiplying e^(alpha*t) by (Acos(beta*t) + Bsin(beta*t)) is becasue when solving an ODE with imaginary roots you are left dealing with an exponential of the form e^(alpha + i*beta). This can be expanded into a form involving sines and cosines. If you would like a can post a completely solved example problem using this technique.

I hope this clarifyed.
 
  • #10
You're only left with an exponential of that form if the differential equation also involves a first derivative, which is absent here. I see no point in adding it to the solution. The best way to deal with differential equations like this is to just use a try out function [itex]y=e^{\lambda x}[/itex].
 
  • #11
pbandjay,

Thanks, that's exactly what I needed. :) I feel dumb now, it was so simple (I'm still a bit fresh on differential equations). XP I know what to do for all the QM wave equations (as well as any other wave equation) now. \o/

linear
 
  • #12
Cyosis,

Absense of a first derivative really has nothing to do with whether or not exponentials will be in the answer. as far as i know an equation such as that will always have a constant times an exponential in the solution. In this case there is no exponential because it is raised to the zero power and is therefore only 1.
 
  • #13
I am talking about the superfluous exponential you put in front of the general solution. The constant alpha will always be 0 and therefore the exponent will always be 1 with the type of differential equation we're discussing. If we add a first derivative term this will change, which is quite easy to see if you look at the characteristic equation.
 
Last edited:
  • #14
Yes, any changes to the characteristic equation could yeild large differences in the solution. The exponential term i had out in front that you are referring too was simply a factored out term. And yes again, if the coefficient of the first derivative term equals zero then alpha would then be zero bue to quadratic formula. we seem to be on the same page here... WHat exactly are we differing on?
 
  • #15
The issue here is that it is a useless addition. You can multiply any solution by 1 and that solution will again be a solution to the differential equation. I suggest you plug your 'general' solution into the differential equation and check if both sides are the same. I think you will see my point once you're finished.
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 5 ·
Replies
5
Views
4K
  • · Replies 2 ·
Replies
2
Views
6K
  • · Replies 3 ·
Replies
3
Views
1K