Probability – Probability of Quadratic Polynomial with Real Roots

polynomialsprobabilityquadratics

The following is a homework question for which I am asking guidance.

Let $A$, $B$, $C$ be independent random variables uniformly distributed between $(0,1)$. What is the probability that the polynomial $Ax^2 + Bx + C$ has real roots?

That means I need $P(B^2 -4AC \geq 0$). I've tried calling $X=B^2 -4AC$ and finding $1-F_X(0)$, where $F$ is the cumulative distribution function.

I have two problems with this approach. First, I'm having trouble determining the product of two uniform random variables. We haven't been taught anything like this in class, and couldn't find anything like it on Sheldon Ross' Introduction to Probability Models.

Second, this strategy just seems wrong, because it involves so many steps and subjects we haven't seen in class. Even if I calculate the product of $A$ and $C$, I'll still have to square $B$, multiply $AC$ by four and then subtract those results. It's too much for a homework question. I'm hoping there might be an easier way.

Best Answer

Hints: First consider $B^2 \geq 4AC$. Now, if $U$ is uniform$(0,1)$, then $-\log(U)$ is exponential$(1)$; further, the sum of two independent exponential$(1)$ random variables has pdf $x e^{-x}$, $x > 0$. Thus, using the law of total probability, the answer can be found by solving an elementary one dimensional integral. I've confirmed the result by simulations.

EDIT: Specifically, $$ {\rm P}(B^2 - 4AC \ge 0) = \int_{\log 4}^\infty {[1 - e^{ - (x - \log 4)/2} ]xe^{ - x} \,{\rm d}x} = \frac{{5 + 3\log 4}}{{36}} \approx 0.2544134. $$ The answer was confirmed using Monte Carlo simulations: $N=10^8$ runs gave average of $0.25444043$.

EDIT: Note that it is quite easy to determine, moreover, the distribution of the product of $n$ independent uniform$(0,1)$ random variables. Indeed, let $U_1,\ldots,U_n$ be independent uniform$(0,1)$ variables. Write $$ U_1 \cdots U_n = \exp \Big[ - \sum\nolimits_{i = 1}^n { - \log U_i } \Big]. $$ Since the $-\log U_i$ are independent exponential$(1)$ variables, $U_1 \cdots U_n$ is merely distributed as $e^{-X}$, where $X$ has gamma pdf $x^{n-1}e^{-x}/(n-1)!$, $x > 0$.

EDIT: Elaborating in response to the OP's request (see the first comment below).

Actually, the hint was supposed to send you in a slightly different direction, that is to consider the probability $$ {\rm P}\bigg( - \log B \le \frac{{( - \log A) + ( - \log C) - \log 4}}{2}\bigg), $$ or $$ {\rm P}\bigg(X \le \frac{{Y - \log 4}}{2}\bigg), $$ where $X$ is exponential$(1)$ and $Y$, independent of $X$, has gamma pdf $f_Y (x) = xe^{-x}$, $x > 0$. Then, by the law of total probability (and using that $X$ and $Y$ are independent), the above probability is given by $$ \int_0^\infty {{\rm P}\bigg(X \le \frac{{Y - \log 4}}{2}\bigg|Y = x\bigg)f_Y (x)\,{\rm d}x} = \int_0^\infty {{\rm P}\bigg(X \le \frac{{x - \log 4}}{2}\bigg)xe^{ - x} \,{\rm d}x}, $$ and so substituting the exponential$(1)$ cdf yields the desired integral.

Related Question