The effect of changing the standard deviation. (a) Sketch a Normal curve that has mean 10 and standard deviation 3. (b) On the same x axis, sketch a Normal curve that has mean 10 and standard deviation 1. (c) How does the Normal curve change when the standard deviation is varied but the mean stays the same?

Respuesta :

Answer:

See explanation below.

Step-by-step explanation:

Part a

We can use the following R code:

> x <- seq(0, 20, length=1000)  # Generate 1000 sample between 0 and 20

> y <- dnorm(x, mean=10, sd=3)   # Generate the probability density values for each value in the vector x defined with mean = 10 and sd= 3

Part b

> y1<-dnorm(x, mean=10,sd=1)  # Generate the probability density values for the normal distribution with mean 10 and sd =1

> plot(x, y1, type="l", lwd=1, col="green")   # Plot the density function for the normal distribution with mean =10 and sd =1

We can see on the figure attached that the green line represent [tex] X \sim N(\mu = 10, \sigma=1)[/tex]

> lines(x,y, col="red")

And the red line would represent the [tex] Y \sim N (\mu = 10, \sigma=3)[/tex]

Part c

As we can see when we reduce the deviation the spread of the distribution is lower, and we have most of the values near to the mean, and in the other case when the deviation increases we have more spread on the distribution with the values more dispersed in the x axis.

Ver imagen dfbustos