-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistics.html
More file actions
68 lines (61 loc) · 2.44 KB
/
statistics.html
File metadata and controls
68 lines (61 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chapter 13: Statistics</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
</script>
</head>
<body>
<a href="index.html" class="back-button">
<img src="https://copilot.microsoft.com/th/id/BCO.c46b5c8d-b20e-4d0d-bb65-8523ec478036.png" alt="Back" />
</a>
<div class="chapter-header" style="background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/5/5b/Histogram.svg/512px-Histogram.svg.png');">
<h1>Chapter 13: Statistics – Formula Sheet</h1>
</div>
<div class="formula-box">
<strong>Mean (Average):</strong>
\( \bar{x} = \frac{\sum x_i}{n} \), where \( x_i \) are observations and \( n \) is the number of observations
</div>
<div class="formula-box">
<strong>Mean of Grouped Data:</strong>
\( \bar{x} = \frac{\sum f_i x_i}{\sum f_i} \), where \( f_i \) is frequency and \( x_i \) is mid-point
</div>
<div class="formula-box">
<strong>Median (Grouped Data):</strong>
\( \text{Median} = l + \left( \frac{\frac{n}{2} - F}{f} \right) \cdot h \)
<br>Where:
<ul>
<li>\( l \) = lower boundary of median class</li>
<li>\( F \) = cumulative frequency before median class</li>
<li>\( f \) = frequency of median class</li>
<li>\( h \) = class width</li>
</ul>
</div>
<div class="formula-box">
<strong>Mode (Grouped Data):</strong>
\( \text{Mode} = l + \left( \frac{f_1 - f_0}{2f_1 - f_0 - f_2} \right) \cdot h \)
<br>Where:
<ul>
<li>\( l \) = lower boundary of modal class</li>
<li>\( f_1 \) = frequency of modal class</li>
<li>\( f_0 \) = frequency before modal class</li>
<li>\( f_2 \) = frequency after modal class</li>
<li>\( h \) = class width</li>
</ul>
</div>
<div class="formula-box">
<strong>Variance:</strong>
\( \sigma^2 = \frac{\sum (x_i - \bar{x})^2}{n} \)
</div>
<div class="formula-box">
<strong>Standard Deviation:</strong>
\( \sigma = \sqrt{\frac{\sum (x_i - \bar{x})^2}{n}} \)
</div>
</body>
</html>