-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrigonometry.html
More file actions
58 lines (52 loc) · 2.01 KB
/
trigonometry.html
File metadata and controls
58 lines (52 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chapter 3: Trigonometric Functions</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" />
<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>
<link rel="stylesheet" href="style.css" />
</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" style="width:50px; height:40px;" />
</a>
<div class="chapter-header">
<h1>Chapter 3: Trigonometric Functions – Formula Sheet</h1>
</div>
<div class="formula-box">
<strong>Basic Trigonometric Ratios:</strong>
\( \sin x = \frac{\text{Perpendicular}}{\text{Hypotenuse}}, \quad \cos x = \frac{\text{Base}}{\text{Hypotenuse}}, \quad \tan x = \frac{\text{Perpendicular}}{\text{Base}} \)
</div>
<div class="formula-box">
<strong>Reciprocal Identities:</strong>
\( \csc x = \frac{1}{\sin x}, \quad \sec x = \frac{1}{\cos x}, \quad \cot x = \frac{1}{\tan x} \)
</div>
<div class="formula-box">
<strong>Pythagorean Identities:</strong>
\( \sin^2 x + \cos^2 x = 1 \)
<br>\( 1 + \tan^2 x = \sec^2 x \)
<br>\( 1 + \cot^2 x = \csc^2 x \)
</div>
<div class="formula-box">
<strong>Double Angle Formulas:</strong>
<ul>
<li>\( \sin(2x) = 2\sin x \cos x \)</li>
<li>\( \cos(2x) = \cos^2 x - \sin^2 x \)</li>
<li>\( \tan(2x) = \frac{2\tan x}{1 - \tan^2 x} \)</li>
</ul>
</div>
<div class="formula-box">
<strong>Periodic Properties:</strong>
<ul>
<li>\( \sin(x + 2\pi) = \sin x \)</li>
<li>\( \cos(x + 2\pi) = \cos x \)</li>
<li>\( \tan(x + \pi) = \tan x \)</li>
</ul>
</div>
</body>
</html>