Finding Probability by using loop
이전 댓글 표시
I want to find the probability using the following equation:

where n=48, k=7, α=0.995
댓글 수: 6
the cyclist
2023년 6월 1일
Dyuman Joshi
2023년 6월 1일
The question looks simple, what have you attempted yet?
Yaseen
2023년 6월 2일
Yaseen
2023년 6월 2일
답변 (1개)
Febo Cincotti
2023년 6월 1일
1 개 추천
I would proceed to implement the formula step by step.
First, compute the addends of the sum.
Hint: nchoosek(n,m) returns
, (1-alpha)^m returns
and alpha^(n-m) returns 
Then you only need to compute Pr = 1 - sum(addends)
Hope this helped with your homework
카테고리
도움말 센터 및 File Exchange에서 Binomial Distribution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!