{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# How to Make a Wormhole\n", "\n", "## Part 3: Time Evolution" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Consider the Schrodinger equation.\n", "\n", "$$ \\dot \\psi = -iE\\psi$$\n", "\n", "The dot above the \\\\(\\psi\\\\) means the change in time of \\\\(\\psi\\\\), in other words, its first derivative. \\\\(\\psi\\\\) is our state vector. \\\\( E \\\\) is the energy operator: \\\\( \\langle \\psi \\mid E \\mid \\psi \\rangle \\\\) is the expected value of the energy. One of the most important equations in linear algebra is the one relating the \"eigenvalues\" and \"eigenvectors\" of an operator.\n", "\n", "$$ E\\mid v \\rangle = \\lambda\\mid v \\rangle$$\n", "\n", "The action of an operator E on an eigenvector \\\\( v \\\\) is just \\\\( v \\\\) multiplied by a scalar \\\\( \\lambda \\\\). \"Eigen\" in German means \"the same.\" So the eigenvectors of an operator are the vectors which are left \"unrotated\" by the operator: the eigenvectors are merely scaled by some eigenvalue. Now the eigenvalues can be complex, leading to a complex rotation, or phase shift, but the vector itself isn't rotated as a whole. And if the eigenvalue is 0, then the eigenvector remains completely unchanged. Now, operators corresponding to \"observables\" in quantum mechanics are Hermitian: in otherwords, they are equal to their conjugate transpose. \\\\( H = H^{\\dagger} \\\\): these matrices have real eigenvalues, so their expectation values are real; and their eigenvectors are all orthogonal, and so they form a complete basis for the space on which they operate. \n", "\n", "So what is the Schrodinger equation saying? It's saying according to quantum mechanics, the time derivative of an energy eigenstate is just given by the state itself times \\\\(-1j\\lambda\\\\). And if \\\\( \\lambda = 0 \\\\), the state doesn't change at all. So we describe change in quantum mechanics in terms of those states which don't change in time. To wit, if you're in an energy eigenstate, you stay in an energy eigenstate, just phasing around at a certain rate given by the eigenvalue. Superpositions of energy eigenstates, in other words, states with an uncertainty about their energy, correspond to states that *change in time*.\n", "\n", "