Tagged Questions

2
votes
4answers
366 views

How to do numerical integration with quantum harmonic oscillator wavefunction?

How to do numerical integration (what numerical method, and what tricks to use) for one-dimensional integration over infinite range, where one or more functions in the integrand ar …
2
votes
1answer
150 views

how to do a program to solve three functions using improve euler’s method?

I was given three functions: dx/dt = a(y-x) dy/dt = x(b-z)-y dz/dt = xy-cz All the variables are set by the user. I can do it if its just the basic one-equation problem. But now …