-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath_unit1.html
More file actions
38 lines (37 loc) · 938 Bytes
/
math_unit1.html
File metadata and controls
38 lines (37 loc) · 938 Bytes
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
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="math_unit.css">
</head>
<body>
<h1>Unit 1</h1>
<h2><u>Revision on Relation</u></h2>
<h3>1.1Revision on relation </h3>
<p>
A <strong>Relation</strong> is a set of ordered pairs.
Given two sets A and B, a relation from A to B is defined as any subset of A x B.
</p>
<p>
A relation on A is any subset of AX A.
Let R be a relation from A to B. Then,
<br>
<br>
Domain of R= {xe A: (x, y) = R, for some ye B}
<br>
<br>
Range of R = {ye B: (x, y) ER, for some xE A}
<br>
<br>
If R is a relation from A to B, then you may want to know what the inverse of R is.
The following definition explains what we mean by the inverse of a relation.
</p>
<p class="def">
Definition 1.1
<br>
<br>
Let R be a relation from A to B. The inverse of R, denoted by R¹, is a relation from
B to A, given by<br><br>
R¹ = {(b, a): (a, b) εR}.
</p>
</body>
</html>