Question

Suppose X has a standard normal distribution. The pnorm(), norm(), and qnorm() functions should be useful in the following. R

0 0
Add a comment Improve this question Transcribed image text
Answer #1

a) E((X+1)/3) = E(X)/3 + 1/3 = 0+1/3 = 1/3=0.3333

b) V((X+1)/3) = V(X/3) = 1*(1/3)^2 = 1/9=0.1111

c) E(X^6) = 15

d) P(X>0.83) = 0.2033

e) P(-0.2<X<1.1) = 0.4436

f) P(0<(X+1)/3<1) = P(-1<X<2) = 0.8186

g) P(X>t)= 0.29 implies t= 0.5534

h) The R codes are as follows -

# a) and b)
E_x=0
V_x=1
y=(x/3) +(1/3)
E_y= (0/3) + (1/3)
V_y = (1/3)^2
E_y
V_y

#c)
x=rnorm(1000000,0,1)
y=x^6
mean(x)
mean(y)
#The mean of X^6 goes close to 15

#d)
w=pnorm ( 0.83,lower.tail=FALSE)
w

#e)
r1=pnorm ( 1.1,lower.tail=TRUE)
r2=pnorm ( -0.2,lower.tail=TRUE)
r1-r2

#f)
s1=pnorm ( 2,lower.tail=TRUE)
s2=pnorm ( -1,lower.tail=TRUE)
s1-s2

#g)
m=qnorm(0.29,lower.tail=FALSE)
m

Add a comment
Know the answer?
Add Answer to:
Suppose X has a standard normal distribution. The pnorm(), norm(), and qnorm() functions should be useful...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Calculation to be done using R Suppose X has a standard normal distribution. The pnorm(), norm(),...

    Calculation to be done using R Suppose X has a standard normal distribution. The pnorm(), norm(), and qnorm() functions should be useful in the following. Remember, if X has a standard normal distribution then E(X) = 0 and Var(x)=1. a) What is the expected value of b) What is the variance of Xt2 ? c) What is the expected value of x6? d) Using R, calculate the probability X > .83) e) Using R, calculate the probability that -0.2 <...

  • PLEASE ANSWER THE HIGHLIGHTED PARTS ONLY. REALLY NEED PART G. Suppose X has a normal distribution...

    PLEASE ANSWER THE HIGHLIGHTED PARTS ONLY. REALLY NEED PART G. Suppose X has a normal distribution with mean -3 and standard deviation 7. The pnorm(), dnorm() and qnorm() functions should be useful in the following. a) What is the expected value of 5X + 15? b) What is the variance of 5X + 15? c) Calculate the probability X >0. d) Calculate the probability that X < -10 e) Calculate the probability that 1 < X < 10. f) If...

  • Suppose X is a Normal random variable with with expected value 16 and standard deviation 1.05....

    Suppose X is a Normal random variable with with expected value 16 and standard deviation 1.05. We take a random sample of size n from the distribution of X. Let X be the sample mean. Use R to determine the following: a) Find the probability P(X>16.4) b) Find the probability P(X >16.4) when n 9 c) Find the probability P(X>16.4) when n = 36| d) What is the probability P(15.6 <X <16.4) when n 36? e) What is the standard...

  • Find the following probabilities for the standard normal distribution in R or using the standard normal...

    Find the following probabilities for the standard normal distribution in R or using the standard normal table. Note I always recommend drawing the distribution. (Round your answers to four decimal places) ### Example R code mu-o: sigma = 1: x = x; # Note you will have to change the value of x. pnorm(x,mu.sigma) (a) PIX s 0.41) (b) P(X 2041) () PIXs-4.25) Find the following percentiles for the standard normal distribution in Ror using the standard normal table. (Round...

  • Part 2: Normal distribution z-N(0,1):f(x) :v2ne- # The function dnorm returns the height of the n...

    USING R AND RSTUDIO PLEASE PROVIDE EXPLANATION AS WELL, THANK YOU(: Part 2: Normal distribution z-N(0,1):f(x) :v2ne- # The function dnorm returns the height of the normal density # function at a given value of X, for a normal distribution with # a given mean and standard deviation (sd) dnorm(x- 1,mean -e, sd-1) C8. (1) For what special normal distribution does the above call return the value of the normal density function? C9. (1) Report the result of the dnorm...

  • Will rate!! Find the felouring probabilities for the standard normal distribution in R or using the...

    Will rate!! Find the felouring probabilities for the standard normal distribution in R or using the standard normal table, Note 1 always recommend drasing the distribution. (Roand your answers to four decimal places.) "#+ Ex.mple R cede mw-0; sigm a-1; x-x; # Nobe you will have to change the value of x. pnorm(x.mu,sigma) (๑) p(X s 1.61) (b) P(x a 1-61) (c) P(X s -4.33) Find the following percentiles for the standard normal distribution in R or using the stanéard...

  • Problem #3. X is a random variable with an exponential distribution with rate 1 = 3...

    Problem #3. X is a random variable with an exponential distribution with rate 1 = 3 Thus the pdf of X is f(x) = le-ix for 0 < x where = 3. a) Using the f(x) above and the R integrate function calculate the expected value of X. b) Using the dexp function and the R integrate command calculate the expected value of X. c) Using the pexp function find the probability that .4 SX 5.7 d) Calculate the probability...

  • Suppose Z and X are continuous random variables such that Z has a standard normal distribution...

    Suppose Z and X are continuous random variables such that Z has a standard normal distribution and X = 5% + 10. a. Compute P(7 < X < 17). [6] b. What are the expected value E(X) and variance V(X) of X? [6] c. What kind of distribution does X have? [3]

  • Suppose (X, Y ) has bivariate normal distribution, E(X) = E(Y ) = 0,V ar(X) =...

    Suppose (X, Y ) has bivariate normal distribution, E(X) = E(Y ) = 0,V ar(X) = σX2 , V ar(Y ) = σY2 and Correl(X, Y ) = ρ. Calculate the conditional expectation E(X2|Y ). I. Suppose (X,Y) has bivariate normal distribution, E(X) = E(Y) 0, Var(X)-σ , Var(Y) σ and Correl (X,Y)-p. Calculate the conditional expectation ECKY expectation E(X2Y)

  • Standard Normal distribution. With regards to a standard normal distribution complete the following: (a) Find P(Z...

    Standard Normal distribution. With regards to a standard normal distribution complete the following: (a) Find P(Z > 0), the proportion of the standard normal distribution above the z-score of 0. (b) Find P(Z <-0.75), the proportion of the standard normal distribution below the Z-score of -0.75 (c) Find P(-1.15<z <2.04). (d) Find P(Z > -1.25). (e) Find the Z-score corresponding to Pso, the 90th percentile value.

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT