Coin toss simulation test

18 vues (au cours des 30 derniers jours)
ANKIT  GOSWAMI
ANKIT GOSWAMI le 20 Jan 2022
Modifié(e) : per isakson le 20 Jan 2022
Through the simulation, show that probability of getting HEAD by tossing a fair coin is about 0.5. Write your observation from the simulation run.
if possible please explain the steps as I am new
  1 commentaire
per isakson
per isakson le 20 Jan 2022
Modifié(e) : per isakson le 20 Jan 2022
One way
vec = randi([0,1],1,1000);
number_of_heads = sum( vec );
number_of_tails = 1000 - number_of_heads
number_of_tails = 534

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 20 Jan 2022
Modifié(e) : KSSV le 20 Jan 2022
n = 1000 ; % number of tosses
H = 0 ; % initialize Head count
T = 0 ; % initialize Tails count
% loop of toss
for i = 1:n
if rand > 0.5 % count as heads if random number is > 0.5
H = H+1 ;
else % count as tails if random num,ber is < 0.5
T = T+1 ;
end
end
% getting head
ph = H/n
ph = 0.4890
% Getting Tails
Pt = T/n
Pt = 0.5110
  2 commentaires
ANKIT  GOSWAMI
ANKIT GOSWAMI le 20 Jan 2022
please can u explain steps
KSSV
KSSV le 20 Jan 2022
Edited the code with comments

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by