Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 7

NAME-

AYUSH GUPTA

REG NO- 15BME0464


LAB - L11-L12

Experiment Lab-IV
Normal Distribution fitting and

Plotting

AIM:
Computing/plotting and visualising the following
probability distributions
Problem 1:
STANDARD NORMAL DISTRIBUTION.
Find 1. P(0.8<Z<1/5)
> pnorm(1.5)-pnorm(0.8)
[1] 0.1450482
> plot.new()
> curve(dnorm, xlim = c(-3, 3), ylim = c(0, 0.5), xlab = "z", ylab="f(z)")
> zleft = 0.8
> zright = 1.5
> x = c(zleft, seq(zleft, zright, by=.001), zright)
> y = c(0, dnorm(seq(zleft, zright, by=.001)), 0)
>polygon(x, y, col="red")

2.
P(z<2)
> pnorm(2)
[1] 0.9772499
> plot.new()
> z=2 >curve(dnorm, xlim = c(-3, 3), ylim = c(0, 0.5), xlab = "z",
ylab="f(z)")
> x = c(-3,seq(-3,z,by=.001),z)
> y = c(0, dnorm(seq(-3, z, by=.001)), 0)
> polygon(x, y, col="red")

3.P(z>1)
> 1-pnorm(1)
[1] 0.1586553
> plot.new()
> curve(dnorm, xlim = c(-3, 3), ylim = c(0, 0.5), xlab = "z", ylab="f(z)")

>
>
>
>

z=1
x = c(z, seq(z, 3, by=.001), 3)
y = c(0, dnorm(seq(z, 3, by=.001)), 0)
polygon(x, y, col="blue")

PROBLEM 2.
GENERAL NORMAL DISTRIBUTION
IF MEAN = 70 AND SD = 16
1.P(38<X<46)
> pnorm(46, mean=70, sd=16) - pnorm(38, mean=70,
sd=16)
[1] 0.04405707
> x=seq(30,60,length=200)
> y=dnorm(x,mean=70,sd=16)
> plot(x,y,type="l")
> x=seq(38,46,length=50)
> y=dnorm(x,mean=70,sd=16)
> polygon(c(38,x,46),c(0,y,0),col="blue")

2.P(82<X<94)

>

pnorm(94,mean=70,sd=16)-pnorm(82,mean=70,sd=16)
[1] 0.1598202
> x=seq(0,110,length=200)
> y=dnorm(x,mean=70,sd=16)
> plot(x,y,type="l")
> x=seq(82,94,length=100)
> y=dnorm(x,mean=70,sd=16)
> polygon(c(82,x,94),c(0,y,0),col="blue")

3.

P(62<X<86)
> pnorm(86,mean=70,sd=16)-pnorm(62,mean=70,sd=16)
[1] 0.5328072
> x=seq(0,100,length=100)
> y=dnorm(x,mean=70,sd=16)

>
>
>
>

plot(x,y,type="l")
x=seq(62,86,length=100)
y=dnorm(x,mean=70,sd=16)
polygon(c(62,x,86),c(0,y,0),col="blue")

PROBLEM 3.

1000

students
had Written an examination the mean of test is 35 and standard
deviation is 5.Assumning the to be normal find
i) How many students Marks Lie between 25 and 40
ii) How many students get more than 40
iii) How many students get below 20
iv) How many students get 50
(i)

> (pnorm(40,35,5)-pnorm(25,35,5))*1000

[1] 818.5946
That is approx. 819 students scored between 25 and 40

(ii) > (1-pnorm(40,35,5))*1000 [1] 158.6553


That is approx. 159 students scored more than 40
(iii) > pnorm(20,35,5)*1000 [1] 1.349898
That is approx. 1 or 2 students scored less than 20
(iv) > (pnorm(50,35,5)-pnorm(49,35,5))*1000 [1] 1.205232 That
is only 1 students scored exactly 50

You might also like