• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

Probability Question Help

Joined
9/13/11
Messages
5
Points
13
I'm working on a probability interview question that I found from some website. I'm having some problems.

A point is uniformly distribute on a disk with radius 1.
That is, the density is f(x,y) = C, where 0 <= x^2 + y^2 <= 1.

What is the probability that the distance from the origin is less than x, where 0 <= x <= 1?

From reading this question, it seems like for any given point (x,y) on the disk, I have to determine the probability that the distance of (x,y) from the origin is less than x.

Any help is appreciated? I'm looking for help on the thought process to arrive at the answer.
 
Actually, the question might be mis-phrased.

In any case, I realized it's not nearly as complicated as polar coordinates. All you need to do is look up and visualize the probability integral.
 
the distribution is uniform, so you don't even need to do integration, just simple division/multiplication is enough
 
I think I got the solution.

Probability (Distance is < x) implies the portion of the area of circle covered by x = Pi x^2/ Pi r^2 = x^2

Can someone confirm?
 
Back
Top