-1

Lets assume that I have samples that fit to normal distribution. $f(x) = y$

How to calculate the probability that sum of values for $n$ next samples will equal $Z$.

$\mathbb P(f(x1) +f (x2) + f(x3) + f(xn) = Z) = ?$

Is it even possible?

Sven Hohenstein
  • 6,285
  • 25
  • 30
  • 39
Robert.K
  • 109
  • 4
  • 1
    This is a wrong question to ask. The probability of a normal variable equals to a particular value is 0. – Peter Oct 23 '14 at 14:50
  • 2
    The mathematical notation doesn't seem to match what you're asking. What's $f(.)$? What's $y$? I think you wanted to write $\Pr(X_1+ X_2 + X_3 \ldots + X_n = z)$. Note the convention of upper case letters just for the random variables. In any case the probability of the sum's being *exactly* any value is zero, as pointed out - this goes for any continuous random variable. A Poisson random variable can have a probability of being equal to $2$; a normal random variable only a probability of being $2 \pm 0.1$, say. – Scortchi - Reinstate Monica Oct 23 '14 at 17:38
  • The answers [here](http://stats.stackexchange.com/questions/74692/probability-that-a-continuous-random-variable-assumes-a-fixed-point) may be helpful. – Scortchi - Reinstate Monica Oct 23 '14 at 17:52

1 Answers1

6

The sum of independent normally distributed variables will itself be normally distributed. This then implies that the probability of their sum being any particular value $Z$ is 0.

You might want to rethink your question in terms of putting an interval on Z - i.e., what is the probability that the result is within $[Z-\omega;Z+\omega]$.


Let $X_i \sim N(\mu_i,\sigma_i)$ and $X_j \sim N(\mu_j,\sigma_j)$ be independent normal random variables. Then their sum is given by $$X_{ij}=X_i+X_j \rightarrow X_{ij} \sim N(\mu_i+\mu_j,\sigma_i+\sigma_j)$$.

Given this, finding the probability that $X_{ij}$ is within some interval $[Z-\omega;Z+\omega]$ can be found by subtracting the CDF of $X_{ij}$ at $Z-\omega$ from the CDF at $Z+\omega$.

abaumann
  • 1,910
  • 14
  • 12