Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

#1: Initial revision by user avatar TheCodidacter, or rather ACodidacter‭ · 2023-06-14T07:24:44Z (11 months ago)
Average distance from circle's center to a point
> What is the average distance from a point inside a circle to the circle's center?

I came across this problem, and I've heard the solution is $\frac23R$ for the radius $R$.

So, I tried to tackle this myself:
* Let there be two concentric circles $C_1$ and $C_2$ with radii $R$ and $r$ ($R\gt r$).
* We pick a random point $P$ inside $C_1$. If there's a $50\%$ chance that $P$ is inside $C_2$, then $r$ is the average distance from $P$ to the center.

Then:
$$[C_1]=\frac12[C_2]$$
$$\not\pi r^2=\frac12\not\pi R^2\implies r=\frac12\sqrt2\cdot R$$

...which doesn't match the answer of $\frac23R$ (though, I should say $\frac12\sqrt2\approx0.707106781187$ which is quite close to $\frac23$).

Why is my reasoning wrong? If it's because $r$ isn't the average distance, why's that? I can't really make sense of this.

Thanks!