-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paths1.html
More file actions
164 lines (133 loc) · 4.35 KB
/
s1.html
File metadata and controls
164 lines (133 loc) · 4.35 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
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="minimaths_favicon.png">
<link rel="stylesheet" href="css.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:700" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://use.fontawesome.com/3cddd5c683.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83201270-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<title>mini Maths - Maths ideas in less than 3 minutes</title>
<body>
<div class="header">
<h1 class="title"><a href="index.html"><span>mini</span>Maths.org</a></h1>
</div>
<div class="wrap">
<div class="box clearfix">
<ul>
<li class="mod_header"><a href="#">Modules</a></li>
<li><a href="c1.html">C1</a></li>
<li><a href="c2.html">C2</a></li>
<li class="selected"><a href="s1.html">S1</a></li>
</ul>
</div>
<br><div class="header">
<h1 class="title">Coming Soon</h1>
</div>
<!-- box_wrap -->
<table><br />
<tr>
<td class="moduleTitle">S1</td>
</tr>
<tr>
<td class = "chapterTitle" >Chapter 1: Exploring Data</td>
</tr>
<tr>
<td>Using Stem & Leaf Diagrams</td>
</tr>
<tr>
<td>Types of Averages</td>
</tr>
<tr>
<td>Averages from Frequency Tables</td>
</tr>
<tr>
<td>Grouped Data</td>
</tr>
<tr>
<td>Measures of Spread</td>
</tr>
<tr>
<td>Linear Coding</td>
</tr>
<tr>
<td class = "chapterTitle" >Chapter 2: Data Presentation</td>
</tr>
<tr>
<td>Histograms</td>
</tr>
<tr>
<td>Quartiles, CF Graphs and Box & Whisker Diagrams</td>
</tr>
<td class = "chapterTitle" >Chapter 3: Probability</td>
</tr>
<tr>
<td>Basic Probability & Notation</td>
</tr>
<tr>
<td>Probability of Events from Two Trials</td>
</tr>
<tr>
<td>Conditional Probability</td>
</tr>
</tr>
<td class="chapterTitle">Chapter 4: Discrete Random Variables</td>
</tr>
<tr>
<td>Discrete Random Variables</td>
</tr>
<tr>
<td>Expectation & Variance</td>
</tr>
<tr>
<td class = "chapterTitle" >Chapter 5: Further Probability</td>
</tr>
<tr>
<td>Factorials</td>
</tr>
<tr>
<td>Permutations & Combinations</td>
</tr>
<td class = "chapterTitle">Chapter 6: Binomial Distribution</td>
</tr>
<tr>
<td>The Binomial Distribution</td>
</tr>
<tr>
<td>Expectation & Using the Binomial</td>
</tr>
<td class = "chapterTitle">Chapter 7: Hypothesis Testing: Binomial Distribution</td>
</tr>
<tr>
<td>Performing Hypothesis Tests</td>
</tr>
<tr>
<td>Critical Regions</td>
</tr>
<tr>
<td>1 & 2 Tailed Tests</td>
</tr>
</table>
</div>
<!-- wrapper -->
<div class="footer">
<ul>
<li><i class="fa fa-university" aria-hidden="true"></i>
<a href="http://www.mei.org.uk/index.php">MEI</a></li>
<li><i class="fa fa-youtube" aria-hidden="true"></i>
<a href="https://www.youtube.com/channel/UCSWZMMeFFNchAF3DSbxIEQQ">TeachTooting</a></li>
</ul>
</div>
<!-- footer -->
</body>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="js.js" type="text/javascript"></script>
</html>