Normal distribution and probability

kliker
Messages
102
Reaction score
0

Homework Statement


The time until the first failure occurred in supplies ink to a particular printer brand, follows a normal distribution with μ=1500 and standard deviation(σ) 20 hours of operation. What percentage of these printers will be damaged before the end of 1000 hours of operation


Homework Equations



Z = (X - μ)/σ

The Attempt at a Solution



Ok first of all i found the z score, which is (1000-1500)/20 = -25

this gives me 0 percentage, actually i have the table in front of me and it gives values for minimum z = -3 or something

so, is there anything i can do to find the exact result?
 
Physics news on Phys.org
Well, the value is exactly:

\frac{1}{\sqrt{2 \pi}}\int_{-\infty}^{-25} e^{-\frac{x^2}{2}} dx

Using software I get:

>>> from scipy.stats import norm
>>> norm.cdf(-25)
3.056696706382561e-138
 
Last edited:
where did you get this integral from?

it gives me ouput 0, which is the correct asnwer, I guess

edit:

ok i get it now, you integrated the probability density function

thanks
 
Oh, I forgot the \frac{1}{\sqrt{2\pi}}. Edited now.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top