A random circle (with random center and radius) is formed inside a bigger circle, which is a unit circle centered at origin. Given that the smaller circle is totally in the big circle, what is the probability that the small circle contains the center of the bigger circle?
Through sets of simulation of $1000$ runs, the solution comes around $16.6\%$. But I am curious about an analytic solution.
Let $A$ be the event that center is contained by the little circle. Let $D$ be the distance from the center of the little circle to the origin, and let $R$ be the radius.
We have $P(A\mid D=x) = P(R>x | D=x) = \max(0,1-\frac{x}{1-x})$, since $R$ is chosen uniformly from $(0,1-x)$. In particular, the probability is $0$ if and only if $D\ge\frac12$.
We need to figure out the distribution of $D$. We have $P(D<x) = \frac{x^2\pi}{\pi}=x^2$. Therefore the PDF is $f_D(x)= \frac{d}{dx}x^2=2x$ for $0<x<1$.
By the law of total probability: $$ P(A) = \int P(A|D=x)f_D(x)dx = \int_0^\frac12 (1-\frac{x}{1-x})\cdot 2xdx = \frac32-2\log2 \approx 11.37\% $$
This is definitely different from your result (which could be 1/6 it seems). It could be a calculation mistake on my part, or that you chose the random circle differently than what I understood. Both cases are likely in my opinion ;)