-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath9_9.html
More file actions
156 lines (131 loc) · 4.61 KB
/
Copy pathmath9_9.html
File metadata and controls
156 lines (131 loc) · 4.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Statistics and Probability</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f8f9fa;
color: #495057;
line-height: 1.6;
padding: 20px;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px;
text-align: center;
border-radius: 8px;
}
header h1 {
font-size: 2.5rem;
}
.content {
background-color: #ffffff;
padding: 30px;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
h2 {
font-size: 2rem;
color: #007bff;
margin-bottom: 15px;
}
h3 {
font-size: 1.6rem;
color: #0056b3;
margin-top: 15px;
}
p, ul {
margin-bottom: 15px;
font-size: 1rem;
}
ul {
list-style-type: square;
padding-left: 20px;
}
.note {
background-color: #e9f5ff;
padding: 10px;
border-left: 5px solid #007bff;
margin: 10px 0;
}
footer {
text-align: center;
padding: 10px;
margin-top: 30px;
background-color: #007bff;
color: #fff;
border-radius: 8px;
}
footer p {
font-size: 0.9rem;
}
</style>
</head>
<body>
<header>
<h1>Statistics and Probability</h1>
</header>
<div class="content">
<h2>1. Statistics</h2>
<p>Statistics is the study of data collection, organization, analysis, interpretation, and presentation.</p>
<h3>1.1 Types of Statistics</h3>
<ul>
<li><strong>Descriptive Statistics</strong> – Summarizes data (e.g., mean, median, mode).</li>
<li><strong>Inferential Statistics</strong> – Makes predictions using samples.</li>
</ul>
<h3>1.2 Measures of Central Tendency</h3>
<ul>
<li><strong>Mean:</strong> (Sum of all values) ÷ (Number of values)</li>
<li><strong>Median:</strong> The middle value when data is arranged in order.</li>
<li><strong>Mode:</strong> The most frequently occurring value.</li>
</ul>
<div class="note">
<strong>Note:</strong> The mean is sensitive to outliers, while the median is more resistant to extreme values.
</div>
<h3>1.3 Measures of Dispersion</h3>
<ul>
<li><strong>Range:</strong> Maximum value - Minimum value</li>
<li><strong>Variance:</strong> Average of squared differences from the mean.</li>
<li><strong>Standard Deviation:</strong> Square root of variance.</li>
</ul>
<h2>2. Probability</h2>
<p>Probability is the measure of how likely an event is to occur, expressed as a number between 0 and 1.</p>
<h3>2.1 Probability Rules</h3>
<ul>
<li><strong>Addition Rule:</strong> P(A or B) = P(A) + P(B) - P(A and B)</li>
<li><strong>Multiplication Rule:</strong> P(A and B) = P(A) × P(B), if A and B are independent</li>
<li><strong>Conditional Probability:</strong> P(A given B) = P(A and B) ÷ P(B)</li>
</ul>
<div class="note">
<strong>Example:</strong> If rolling a die, the probability of getting a 3 is 1/6.
</div>
<h3>2.2 Bayes' Theorem</h3>
<p>P(A given B) = [P(B given A) × P(A)] ÷ P(B)</p>
<h3>2.3 Probability Distributions</h3>
<ul>
<li><strong>Binomial Distribution:</strong> Probability of exactly k successes in n trials.</li>
<li><strong>Poisson Distribution:</strong> Probability of a given number of events in a fixed interval.</li>
<li><strong>Normal Distribution:</strong> Bell-shaped curve describing many natural events.</li>
</ul>
<div class="note">
<strong>Tip:</strong> The normal distribution is used in standardized tests like IQ scores.
</div>
</div>
<footer>
<p>© 2025 Yoseph Feyisa Wegi | All Rights Reserved.</p>
</footer>
</body>
</html>