Normal distribution and probability

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
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:

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

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 [itex]\frac{1}{\sqrt{2\pi}}[/itex]. Edited now.