Solving transcendental equation- Quantum Mechanics

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 11K views
GTdan
Messages
39
Reaction score
0
I don't know if I am being dumb or not but I need to solve a transcendental equation numerically and I need to write a program that can do this. The equation is so I can find the the ground state energy of a wave function in a semi-infinite well. I was told to use the Newton-Raphson method to do it and I am thinking of a transcendental equation found in the book would be the one I need to solve (if anyone thinks differently let me know). Here is the equation:

tan(z)=sqrt((z(o)/z)^2-1)

where z(o)=(a/h)*sqrt(2mV(o))

z=(a/h)*sqrt(2m(E+V(o)))

and V(o)= -10 eV

This is written in maple code btw. I'm thinking I can solve for z by using Newton's method and then solve for E afterwards since z is a function of E. That's the only idea I have that I would need Newton's method to do so can someone let me know if I am on the right track or give me some hints or something.
 
Physics news on Phys.org
Well, we have to use Newton Raphson. I would much rather solve it graphically like the book but that's not the case. I may have been vague but my problem is that I am I have no idea if I am going the right direction or not. Am I using the right equation to solve for E? If I am can I get some hints on the programming procedure?

Also, unless I can make Maple compile a program or something (if it even does that), I have to write it in C++.