I'm plotting a exponential function and I need to point out some specific values in my plot.
Point name (x;y)
Point N1 (2;50)
Point N2 (4;25)
I'm trying to follow Gonzalo Medina's answer but I am not getting any success
\begin{figure}[H]
\begin{tikzpicture}[scale=1.5]
\begin{axis}[
domain=10:1,
axis lines=left,
grid=both,
clip=false,
xlabel=$Tempo (dias)$,
ylabel=$Atividade (Ci)$
]
\addplot[name path=curve,smooth,thick,black]{100*exp(-x*ln(2)/2)};
\addplot[name path=line,smooth,dashed,red]{50};
\path[name intersections={of=curve and line, by={a}}];
\draw[dashed]
(a) -- (a|-{axis cs:0,0}) node[anchor=north,font=\tiny] {$N=1$};
\node[fill,inner sep=1.5pt] at (a) {};
\end{axis}
\end{tikzpicture}
\end{figure}
Note that I only tried pointing N1 here, and even that doesn't work. Also, I dont want do plot a line just to make the intersection, but I don't know how to do in another way.
Any advice?

