Is My Normalized Wave Function Accurate?

Click For Summary

Discussion Overview

The discussion revolves around the accuracy of a normalized hydrogen wave function in quantum mechanics, specifically focusing on the integration of the wave function to verify that it equals unity. Participants explore the implementation of numerical methods for integration over a spherical volume and the challenges encountered in achieving expected results.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning

Main Points Raised

  • One participant reports an unexpectedly high value (4.6x10^19) when integrating the normalized hydrogen wave function and questions where the error might lie.
  • Another participant suggests checking the correctness of units, the volume element used for integration, and whether the sum is normalized by the number of discretization points.
  • A participant confirms using Griffiths' formula in SI units and references a paper by Tarantola for the volume element but still encounters issues with the integration result.
  • Concerns are raised about the proper definition of probability density in quantum mechanics, emphasizing the need to include the correct volume element in calculations.
  • One participant suggests verifying the correctness of 1-dimensional integrals for the radial and angular parts of the wave function before proceeding to higher dimensions.
  • A later reply indicates that after adjusting discretization values, the participant achieved results that closely matched expected values for area, volume, and the wave function, suggesting a resolution to the initial problem.

Areas of Agreement / Disagreement

Participants express differing views on the correct approach to integrating the wave function, particularly regarding the volume element and normalization. While some participants provide corrections and suggestions, the discussion does not reach a consensus on the initial errors, although one participant reports resolving their issue.

Contextual Notes

Participants reference specific integration methods and volume elements, indicating potential limitations in their approaches. The discussion highlights the importance of careful consideration of coordinate systems and normalization in numerical integration.

intervoxel
Messages
192
Reaction score
1
Hi,

I built a small program to show that the normalized hydrogen wave function (ground state) integrates to unity, as expected. But I got an absurd value: 4.6x10^19 instead.

I spanned a big volume (30 Bohr's radius) calculating and summing the product dr*dphi*dtheta * psi * psi.

Worse yet, when I choose a different discretization for the radial distance, I get very different value for the resulting probability.

Where am I missing the point?
 
Physics news on Phys.org
intervoxel said:
Hi,

I built a small program to show that the normalized hydrogen wave function (ground state) integrates to unity, as expected. But I got an absurd value: 4.6x10^19 instead.

I spanned a big volume (30 Bohr's radius) calculating and summing the product dr*dphi*dtheta * psi * psi.

Worse yet, when I choose a different discretization for the radial distance, I get very different value for the resulting probability.

Where am I missing the point?

Three things:

1) are your units correct?
2) are you using the correct volume element for your integration? I ask because what you posted above is not the correct volume element for spherical coordinates ...
3) are you remembering to normalize your sum for the number of discretization points?
 
SpectraCat said:
Three things:

1) are your units correct?
2) are you using the correct volume element for your integration? I ask because what you posted above is not the correct volume element for spherical coordinates ...
3) are you remembering to normalize your sum for the number of discretization points?
1) Yes, I'm using Griffiths formulae, which uses the SI system.
2) I followed the recommendation contained in the paper by Tarantola: http://www.cmmacs.ernet.in/inverse/Diverse/DensityVersusVolume/DensityVersusVolume.pdf (equation 9).
3) Nope! I modified the program but the problem still remains (I divided the integrated value by the number of elements).
 
Last edited by a moderator:
intervoxel said:
1) Yes, I'm using Griffiths formulae, which uses the SI system.
2) I followed the recommendation contained in the paper by Tarantola: http://www.cmmacs.ernet.in/inverse/Diverse/DensityVersusVolume/DensityVersusVolume.pdf (equation 9).

[STRIKE]Ok, that looks bizarre and wrong, at least for applications in Q.M. Everything in section 3 is complete nonsense if one is using the standard definition of a probability density in Q.M., which is just the square modulus of the wavefunction multiplied by the volume element.[/STRIKE] You must multiply by the proper volume element ... [tex]r^{2}sin\theta drd\theta d\phi[/tex] ... that is part of the definition of the probability density in Q.M.

EDIT: Ok, I wrote the crossed out stuff above too quickly .. after looking at the paper more carefully, everything the author wrote is correct ... his phrasing is just a little weird, and section 3 really threw me for a loop when I was skimming through.

3) Nope! I modified the program but the problem still remains (I divided the integrated value by the number of elements).

step 3 shouldn't be necessary *IF* you are using the correctly scaled volume element for your sum (including units).

EDIT: Think about it this way, what is the volume of a region of space bounded by equal sized steps along the coordinates r, theta and phi? The answer depends on where you are relative to the origin right? Regions close to the origin will have smaller volumes than those that are farther away, and you must account for this somehow. You can either do it by using a probability density, which includes the volume element in the definition (this is what the author is talking about in his paper). Or you can just integrate [tex]\psi^{*}\psi[/tex], which is what the author calls a "volumetric probability", but then you need to account for the volume element explicitly when doing the integration. Both treatments end up the same for your case:

[tex]P\left(r,\theta,\phi\right)=\int^{2\pi}_{0}d\phi\int^{\pi}_{0}sin\theta d\theta\int^{\infty}_{0}r^{2}dr\psi^{*}\left(r,\theta,\phi\right)\psi\left(r,\theta,\phi\right) \approx \sum_{i=1}^{M}r^{2}_{i}\Delta r\sum_{j=1}^{N}sin\theta_{j}\Delta\theta\sum_{k=1}^{Q}\Delta\phi\left[\psi^{*}\left(r_{i},\theta_{j},\phi_{k}\right)\psi\left(r_{i},\theta_{j},\phi_{k}\right)\right][/tex]

where all points along a given coordinate are equally spaced, and [tex]N\Delta\theta=\pi, Q\Delta\phi=2\pi, M\Delta r=R[/tex]

where R is some large arbitrary value, like your choice of 30 Angstroms.
 
Last edited by a moderator:
Since the groundstate wavefunction is separable and following the general principle of walking before running you might as well check that your computer program can do the 1-dimensional integrals correctly first. The squared radial part should integrate to 1, and the squared angular part should integrate to 1. (with the phi integral being trivial)
 
Thank you guys. I think it's all right now.

Using the discretization values:

NR = 200;
NTHETA = 120;
NPHI = 240;

I got the following result, which is fine:

area = 12.565652868273277 = 12.566370614359172
volume = 4.157189180804628 = 4.1887902047863905
angular = 0.9999428835812512 = 1
radial = 0.9999664899367885 = 1
psi = 0.9999093754274876 = 1
 

Similar threads

  • · Replies 31 ·
2
Replies
31
Views
6K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 23 ·
Replies
23
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K