I have a large circle of radius $B$. I choose a random point inside the large circle, and draw a small circle of radius $A$ around it ($A<B$). What are the chances that, after drawing $n$ such small circles, the union of their area covers the large circle (i.e., includes every point in the large circle)? What is the expected value of the number of small circles I must draw to cover the large circle?
My progress so far: If I pick any point in the large circle, the chance that it has not been covered by $n$ small circles is:
1 minus the chance that it has been covered
= 1 minus the chance that the origin of a small circle is within $A$ of this point, after $n$ tries
= 1 minus (the small circle of radius $A$ around this point divided by the total area of the large circle), after $n$ tries
= $\left(1 - \frac{\pi A^2}{\pi B^2}\right)^n$
= $\left(\frac{B^2 - A^2}{B^2}\right)^n$
So, the chance that any point has been covered is $1 - \left(\frac{B^2 - A^2}{B^2}\right)^n$. How do I use this info to know whether all point have been covered after $n$ small circles? And find the expected value of the number of small circles it takes?
Also, even this oversimplifies it: If the point I pick in the large circle is within $A$ away from the edge, a circle of radius $A$ around it isn't completely contained in $B$, so the ratio of "hits" is actually less than $\frac{A^2}{B^2}$. I assume we can calculate the amount of overlap for the "average" small circle, which is 100% for most of them but less than that (is it $\frac{3}{4}$?) for $\frac{A}{B}$ of them.