I usually define a \blank command for signposts in math expressions:
\newcommand{\blank}{{-}}
(the additional braces makes the symbol behave like a letter and not an operation symbol). You can adapt it to your liking:
\newcommand{\blank}{{\,\cdot\,}}
because some space should be added, in this case.
Here's the example
\documentclass{article}
\usepackage{amsmath}
\newcommand{\blank}{{\,\cdot\,}}
\begin{document}
\[
\mathit{Au}(\blank)=
\nabla_{(\blank)}
\left\{ \frac{\blank}{\lvert\blank\rvert^{3}}\,
1_{B(0,r)}(\blank) \right\}.
\]
\[
\mathit{Au}(\blank)=
\nabla_{(\blank)}
\left\{ \frac{\blank\hphantom{^{3}}}{\lvert\blank\rvert^{3}}\,
1_{B(0,r)}(\blank) \right\}.
\]
\end{document}
In the second version, the dot is moved left by adding a phantom; I'm not sure it's really wanted.

\{and\}rather than{and}. The latter are "special-function" characters in TeX, as they are used to start and end "groups" (chunks of code, if you will). The characters need to be "escaped" with a backslash,\, in order to generate curly braces. – Mico Dec 13 '13 at 11:27