학습 목표
- 선형성을 이용하여 기댓값을 계산하기
- 기댓값을 이용하여 확률을 추측하기
- 확률 실험에서의 확률 변수 구별하기
- 확률 변수의 기댓값 계산하기
확률 변수와 기댓값
확률 변수 : 무작위 실험의 수치적 특성을 연구하기 위한 수학적 모델
평균
from statistics import mean
print(mean([1, 2, 3, 4, 5, 6]))
print(mean([7, 7, 7]))
print(mean([9.5, 10.5]))
평균은 최댓값보다 작거나 같고 최솟값보다 크거나 같다.
기댓값
기댓값의 선형성
마르코프 부등식
coursera Introduction to Discrete Mathematics for Computer Science 과정 중
Combinatorics and Probability 5주차 내용 정리
'Fundamentals > Discrete mathmatics' 카테고리의 다른 글
[이산수학] Graph Theory 그래프이론 1주차 (0) | 2023.09.21 |
---|---|
[이산수학] Combinatorics and Probability 조합론과 확률 수료증 (0) | 2023.09.19 |
[이산수학] Combinatorics and Probability 조합론과 확률 4주차 (0) | 2023.09.19 |
[이산수학] Combinatorics and Probability 조합론과 확률 3주차 (0) | 2023.09.13 |
[이산수학] Combinatorics and Probability 조합론과 확률 2주차 (0) | 2023.09.13 |