MAT 243 Applied Statistics for STEM
For a Student's t-distribution with mean 0, standard deviation 1, and degrees of freedom
49, which of the following Python lines outputs the probability P(t > 0.115)? -
ANS-import scipy.stats as st
print(st.t.ppf(0.115,49,01))
For a normal distribution with mean 5 and standard deviation 2 which of the following
python lines outputs the probability P(x > 7)? - ANS-import scipy.stats as st
print(st.norm.cdf(7,5,2))
For a student's t-distribution with mean 0, standard deviation 1 and degrees of freedom
30, which of the following python lines outputs the probability P(t < -0.185)? -
ANS-import scipy.stats as st
print(st.t.pdf(-0.185,30,0,1)
For a normal distribution with mean 0 and standard deviation 1 which of the following
python lines outputs P( -0.15 , x < 1.88)? - ANS-import scipy.stats as st
print(st.norm.cdf(1.88,0,1)- st.norm.cdf(-0.15, 0 ,1)
For a student's t-distribution with mean 0 and standard deviation 1, and degrees of
freedom 30 which of the following outputs the probability P(1.50 < t < 2.85)? -
ANS-import scipy.stats as st
print(st.t.cdf(2.85,30,0,1 - st.t.cdr(1.5,30,0,1))
For a normal distribution with mean 0 and standard deviation 1 which of the following
python lines outputs the probability P(z < 0.325)? - ANS-import scipty. stats as st
print(st.norm.cdf(0.325,0,1))
For a normal distribution with mean 0 and standard deviation 1 which of the following
python lines outputs the critical value a if P( z > a) = 0.818 - ANS-import scipy.stats as st
print(st.norm.isf(0.818,0,1))
Which Python modules is used to create confidence intervals? - ANS-scipy
In the following Python commands, what does the 0.99 represent? - ANS-confidence
level
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller ACTUALSTUDY. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $7.99. You're not tied to anything after your purchase.