-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc2.html
More file actions
193 lines (154 loc) · 4.93 KB
/
c2.html
File metadata and controls
193 lines (154 loc) · 4.93 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!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 class="selected"><a href="c2.html">C2</a></li>
<li><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">C2</td>
</tr>
<tr>
<td class = "chapterTitle" >Chapter 7: Sequences & Series</td>
</tr>
<tr>
</tr>
<tr>
<td>Patterns in Sequences</td>
</tr>
<tr>
<td>Arithmetic Sequences & Series</td>
</tr>
<tr>
<td>Geometric Sequences & Series</td>
</tr>
<tr>
<td class = "chapterTitle" >Chapter 8: Differentiation</td>
</tr>
<tr>
<td>Finding the Gradient of a Curve</td>
</tr>
<tr>
<td>Differentiation: Standard Results</td>
</tr>
<tr>
<td>Differentiation Applied</td>
</tr>
<tr>
<td>Tangents & Normals</td>
</tr>
<tr>
<td>Maximum & Minimum Points</td>
</tr>
<tr>
<td>Increasing & Decreasing Functions</td>
</tr>
<tr>
<td>Stationary Points</td>
</tr>
<tr>
<td>Higher Derivatives</td>
</tr>
<td class = "chapterTitle" >Chapter 9: Integration</td>
</tr>
<tr>
<td>Reversing Differentiation</td>
</tr>
<tr>
<td>Integration: Standard Results</td>
</tr>
<tr>
<td>Area Beneath the x-axis</td>
</tr>
<tr>
<td>Area Between Two Curves</td>
</tr>
<tr>
<td>The Area Between the Curve and the y-axis</td>
</tr>
<tr>
<td>The Trapezium Rule</td>
</tr>
<td class="chapterTitle">Chapter 10: Trigonometry</td>
</tr>
<tr>
<td>Trig Ratios and Solving Introduction</td>
</tr>
<tr>
<td>The Sine Rule</td>
</tr>
<tr>
<td>The Cosine Rule</td>
</tr>
<tr>
<td>The Area of a Triangle</td>
</tr>
<tr>
<td>Radians</td>
</tr>
<tr>
<td>Arc Length & Sector Area with Radians</td>
</tr>
<tr>
<td>Trig Translations</td>
<tr>
<td class = "chapterTitle" >Chapter 11: Logarithms & Exponentials</td>
</tr>
<tr>
<td>Log & Exponent Manipulation</td>
</tr>
<tr>
<td>Modelling Curves</td>
</tr>
<td class = "chapterTitle">Chapter 12: Further Differentiation & Integration</td>
</tr>
<tr>
<td>Differentiation: Fractions and Negatives</td>
</tr>
<tr>
<td>Integration: Fractions and Negatives</td>
</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>