I am using \newtheorem{thm}{Theorem}[section] and would like to my article to read Heuristic Proof instead of the standard Proof. I am showing Ito's but not in a rigorous way. Any ideas?
\begin{Heuristic proof}
Since $g(x, t)$ is twice continuously-differentiable, we can apply Taylor's expansion to get
\begin{align*}
dg(W,t) &= g(t+\Updelta t\,,\,W+\Updelta W) - g(t\,,\,W)\\
&= \frac{\partial g}{\partial t}dt + \frac{\partial g}{\partial x}dW + \frac{1}{2}\frac{\partial^2 g}{\partial x^2}(dW)^2 + \frac{1}{2}\frac{\partial^2 g}{\partial t^2}(dt)^2+ \frac{1}{2}\frac{\partial^2 g}{\partial t \partial x}(dt)(dW) + \dots\,\,(*)
\end{align*}
\end{Heuristic proof}

\renewcommand{\proofname}{Heuristic proof}? – jub0bs Apr 25 '13 at 10:22amsthm(and don't usebabel), the following may work:\renewcommand{\proofname}{Heuristic Proof). See http://tex.stackexchange.com/questions/82993/how-to-change-the-name-of-document-elements-like-figure-contents-bibliogr – lockstep Apr 25 '13 at 10:24amsthmpackage and itsproofenvironment, just say\begin{proof}[Heuristic proof]since the environment uses the optional argument (if specified) for the title. – egreg Apr 25 '13 at 10:33