summaryrefslogtreecommitdiff
path: root/1286/CH15/EX15.4/15_4.sce
blob: bfe1734bebe53f56fc678ed7fc62cfe29ae0605d (plain)
1
2
3
4
5
6
7
8
9
10
11
clc
//initialisation
n=10
a=0.6
h=0
//CALCULATIONS
b=1-a
p=factorial(n)*a^10/(factorial(n-h)*factorial(h))
//results
printf(' \n probability of heads occurence= % 1f ',a*10)
printf(' \n probability of occuring head only in 10 throws= % 1f ',p)