-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmath_notes.html
39 lines (37 loc) · 1.53 KB
/
math_notes.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Math notes that you can copy!</title>
<style>
body {
background:rgb(100, 0, 200)
}
</style>
</head>
<body>
<h1>Math notes that you can copy!</h1>
<p>
Pythagorean theorem : aˆ2 + bˆ2 = cˆ2. Kinda boring, but it's a start. <br>
Quadratic formula : x = (-b +- sqrt(bˆ2 - 4ac)) / 2a. This one is a bit more interesting.<br>
E = mcˆ2 This is very interesting.
Anything more complex than that : I'm not even going to bother.<br>
It's impossible. There is no formula for anything higher than a quartic. <br>
Here are some more math notes. <br>
1 + 1 = 2. <br>
What? That's simple, right!
Fine, here's a harder one. <br>
3x + 5 = 20. <br>
3x = 20 - 5. <br>
3x = 15. <br>
x = 15 / 3. <br>
x = 5. <br>
There. That's better. <br>
That's how you do algebra. <br>
Now onto calculus! <br>
I recommend you go on <a href = "https://khanacademy.org">Khan Academy</a> or <a href = "https://www.mathsisfun.com/calculus/index.html">Mathsisfun</a> for this. They're both great learning websites for maths!<br>
16.9.2023 <br>
I learnt Bayes' Theorem today!
</p>
</body>
</html>