I'm having the following code:
\documentclass[11pt]{article}
\usepackage{amssymb,amsthm,amsmath}
\newcommand{\norm}[1]{\lVert #1 \rVert_2}
\begin{document}
\begin{displaymath}
\norm{\cdot}=...
\end{displaymath}
\end{document}
I'd like to add a little space before and after the dot in the norm, because it's a bit crushed between the vertical lines now. Is there a command with the same output as \cdot that does this automatically or should I insert the spacing manually (with ~ for example) each time?

\norm{{}\mathrel{\cdot}{}}does the trick quite nicely. – cslstr May 25 '14 at 17:56\,or a thick space with\;. – Henri Menke May 25 '14 at 17:56