I am writing a paper and I will prove a theorem in an appendix because the proof is lengthy. When I use the following code,
\documentclass[journal]{IEEEtran}
\usepackage{amssymb, amsmath, amsthm, amsfonts}
\renewcommand*{\proofname}{}
\begin{document}
\appendices
\section{Proof of Theorem \ref{theorem1}}
\begin{proof}
We will use induction to prove this theorem.
\end{proof}
\end{document}
I get the following:

I would like to remove the word "Proof:" from the proof as this is already explained in the name of the appendix.
I have checked the question How to change the word “Proof” in the proof environment?. I tried to change the name to be blank using
\renewcommand*{\proofname}{}
However this does not seem to work.


: We will use induction ....
– BHamza May 30 '14 at 11:23\unskipbefore\nopunct. – egreg May 30 '14 at 11:24\renewcommand{\proofname}{}line. – egreg May 30 '14 at 11:24\begin{proof}[\unskip\nopunct]you should be on your way. – egreg May 30 '14 at 11:30ATTENTION: \proof is deprecated (line 17). Use \IEEEproof instead. Can you confirm? – egreg Jun 03 '14 at 14:16