Solution to Given W is a uniformly distributed random variable with mean 33 and variance 3. Using … - Sikademy
Author Image

Favour Eke

Given W is a uniformly distributed random variable with mean 33 and variance 3. Using R programming, apply the suitable coding to identify answer in (a) and (b) (a) probability density function for W (b) cumulative distribution function for W

The Answer to the Question
is below this banner.

Can't find a solution anywhere?

NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?

Get the Answers Now!

You will get a detailed answer to your question or assignment in the shortest time possible.

Here's the Solution to this Question

(a) probability density function for W 

we define the function dnorm: which evaluates the normal probability density with a given mean or

standard deviation

The coding is as below

dnorm( x, mean = 33, sd = 31/2, log = FALSE )


(b) cumulative distribution function for W 

we define the function pnorm: which evaluates the cumulative distribution function for a normal

distribution.

The coding is as below

pnorm( q, mean = 33, sd = 31/2, lower.tail =TRUE, log.p = FALSE )

Related Answers

Was this answer helpful?

Join our Community to stay in the know

Get updates for similar and other helpful Answers

Question ID: mtid-4-stid-47-sqid-4739-qpid-458