[Tex/LaTex] How to put bullet symbol on top of downarrow symbol

stacking-symbolssymbols

I want to put bullet symbol on top of downward arrow symbol. Can someone help me on this?

\documentclass{article}
\usepackage{graphicx}

\begin{document}

The transition is represented with $\mathrel{\bullet}\downarrow $ arrow.

\end{document}

Edit1: Actually I want to attach bullet symbol on top of downarrow symbol without any gap.

Best Answer

I don't really know what I'm doing with this, but a suggestion with \ooalign and \mathchoice:

enter image description here

\documentclass{article}
\newcommand\bulletarrow{%
\mathchoice
  {{\ooalign{\raise0.8ex\hbox{$\bullet$}\cr$\downarrow$}}}
  {{\ooalign{\raise0.8ex\hbox{$\bullet$}\cr$\downarrow$}}}
  {{\ooalign{\raise0.65ex\hbox{$\scriptstyle\bullet$}\cr$\scriptstyle\downarrow$}}}
  {{\ooalign{\raise0.5ex\hbox{$\scriptscriptstyle\bullet$}\cr$\scriptscriptstyle\downarrow$}}}%
}

\begin{document}

The transition is represented with $ \bulletarrow_{\bulletarrow_{\bulletarrow}} $ arrow.
\end{document}

For more information about \ooalign see egregs answer to another question.