-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelations.html
More file actions
53 lines (47 loc) · 1.77 KB
/
relations.html
File metadata and controls
53 lines (47 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chapter 2: Relations & 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 2: Relations & Functions – Formula Sheet</h1>
</div>
<div class="formula-box">
<strong>Cartesian Product:</strong>
\( A \times B = \{(a, b) \mid a \in A, b \in B\} \)
</div>
<div class="formula-box">
<strong>Relation:</strong>
A relation \( R \) from set \( A \) to \( B \) is a subset of \( A \times B \)
</div>
<div class="formula-box">
<strong>Domain & Range:</strong>
- Domain: Set of first elements in relation
- Range: Set of second elements
</div>
<div class="formula-box">
<strong>Function:</strong>
A relation in which every element of \( A \) maps to exactly one element in \( B \)
</div>
<div class="formula-box">
<strong>Types of Functions:</strong>
<ul>
<li>One-one (Injective): Different inputs map to different outputs</li>
<li>Onto (Surjective): Every element in codomain is mapped</li>
<li>Bijective: Both one-one and onto</li>
</ul>
</div>
</body>
</html>