For a function l(p;x)=log p+3log(1-p) as the following picture,

how can I add mark a value for l(p;x) and mark its p value as in the red color line. For example, I want to mark l(p;x)=-3.2 and its corresponding interval for p.
I can plot the function in R:
l=function(p){log(p)+3*log(1-p)}
plot(l, 0, 1)

