Questions tagged [cumulative-distribution-function]

Cumulative distribution function. While the PDF gives the probability density of each value of a random variable, the CDF (often denoted $F(x)$) gives the probability that the random variable will be less than or equal to a specified value.

The cumulative distribution function of a random variable gives the probability of that variable taking on a value less than or equal to any given value. The cdf of a distribution is the integral of the pdf of that distribution: $$ F(x)=Pr(X\le x)=\int_{-\infty}^{x}f(\xi)d\xi $$ (If the random variable is discrete, this simplifies to a sum.)

In applied statistics, cdfs are important in comparing distributions, playing a role in plots (e.g., pp-plots), and hypothesis tests (e.g., the Kolmogorov-Smirnov test).

784 questions
4
votes
1 answer

limit involving CDF and Quantile functions

Suppose $F(z,\Theta)$ is a continuosly differentiable cumulative density function where $z$ is a random variable defined over $[0,\infty)$ and $\Theta$ is a parameter of the distribution. I have a feeling that the follwoing limit is true but how can…
user41838
  • 531
  • 2
  • 7
3
votes
0 answers

Variance of CDF F(x) when x follows the same probability law as F

The cumulative distribution function $F(x)=P(X\leq x)$ is a fixed probability number. I wonder what its variance is, if we let the argument be a random variable following the same distribution as $X$. For continuous $X$, this variance can be readily…
cdalitz
  • 5,132
3
votes
2 answers

How to compute the marginal CDF of a joint density?

I am trying to compute the cumulative distribution function of a random variable $u$ that has the following density: $$f(u) = \int_{1}^\infty \frac{e^{-4uv}}{v^5}dv$$ for $u \gt 0$. What I've tried I've tried computing this integral, giving a…
Occhima
  • 425
3
votes
3 answers

Derivation of CDF of a function that results in an exponential distribution

I was looking through wiki's treatment on the title topic in https://en.wikipedia.org/wiki/Random_variable and am completely stumped on this particular section: There are several specifics that elude me. How is the following progression…
3
votes
2 answers

Is this true: $P(X>x) = P(\log(X)>\log(x))$

I can't find any theorem regarding this. I know it works for normal / lognormal distributions and as the logarithm is an affine transformation and the cdf is increasing it seems plausible but i can't find any reason/proof in favour or against. Many…
Vanity
  • 73
3
votes
0 answers

Why do we need to estimate the cumulative distribution function?

In statistic estimation we always works with densities. However, sometimes we need to estimate the cumulative distribution function? why? What is the benefits of estimating the cumulative distribution function? Every time that I search about…
Silver_80
  • 425
3
votes
1 answer

How to think about random CDF?

Chi (2014, "The Value of Information and Dispersion") defines a RV $X^*$ by the continuous distribution of (footnote 7, pg. 6): $$ G(x) = \begin{cases} (1-p) U_1 & \mbox{if } x=0 \\ 1-p & \mbox{if } x \in (0,1)\\ 1-p + p U_2 & \mbox{if } x =…
bonifaz
  • 1,085
2
votes
1 answer

Cumulative Distribution Function of the skewed generalized error distribution

I´m trying to calculate the cumulative distribution function of the skewed generalized error distribution with the probability density function: where u = y - m. From Theodossiou in…
Jo Hannes
  • 21
  • 2
2
votes
1 answer

Amazed by a calculation of $x$, such as $P(X < x) = 3.60\%$ when $X \sim N(µ=1, σ=1.5)$

My book has an exercise that asks me two questions: Be $X$ a variable following a normal distribution, find $\mathbf{m_{x}}$ and $\mathbf{σ_{x}^2}$ knowing that $P(X \leq -1) = P(X > 3) = 9.12\%$ (the expected result is that $X \sim N(µ=1,…
2
votes
0 answers

How to prove a particular identity involving the CDF of a continuous, strictly positive random variable?

Can someone show me why for a distribution function $F$ on $(0,\infty)$, $0 < y \leq x$, the following holds: $\frac{F(x)-F^{*2}(x)}{\overline{F}(x)}=\int\limits_{0}^{x}\frac{\overline{F}(x-t)}{\overline{F}(x)}dF(t)$ Edit: $F^{*2}$ stands for the…
Chris
  • 1,339
1
vote
0 answers

What would you call the "opposite" of a cumulative distribution function?

A cumulative distribution function is a function that returns probabilities of $X$ being smaller than or equal to some value $x$: $$Pr(≤)=()$$ What would you call a distribution function that returns probabilities $X$ being greater than or equal to…
0
votes
1 answer

Why P(X=x) is not zero here?

From the CDF,I feel that the random variable here is continuous.So shouldn't the P(X=x) equals 0 here and we only need to find P(X>=1).
Aman
  • 1
0
votes
0 answers

Analyzing the minimum of a sequence of iid random variables given the CDF

I'm doing a question about a sequence of i.i.d. random variables that all have CDF $F(x) = 2^\alpha(2 - x)^{-\alpha}$ for $x < 0$ and $F(x) = 1$ otherwise. Without asking the whole question, basically, it asks about the CDF of the minimum of these…
johnsmith
  • 335
0
votes
0 answers

Need help finding odds a random point on one CDF is greater than an independently random point on a different CDF

I am using a SRS spreadsheet (Not necessary to know I believe, but it is as mentioned in this article) to determine team strength in various sports. This system allows me to predict an average score for both teams and what the variance of the score…
1
2