Class 12 Mathematics โ Original Educational Content
Chapter 1: Relations and Functions ๐
Master the foundations of abstract mathematics โ relations, equivalence classes, function types, composition, inverses, and binary operations.
๐ Relations & Equivalence | ๐ฏ Injective, Surjective, Bijective | ๐งฉ 20 Practice Problems | ๐ฏ 10-Question Quiz
๐ Introduction to Relations
๐ From Pairs to Patterns โ The Language of Relationships
In everyday life, we constantly describe how things are connected: "Priya is taller than Ravi," "7 is greater than 3," "Mumbai is the capital of Maharashtra." Mathematics formalizes these connections using the powerful idea of a relation.
Before we can define a relation, we need to understand how to pair elements from two sets โ enter the Cartesian Product! ๐
Cartesian Product: Building All Possible Pairs
Given two non-empty sets A and B, the Cartesian product A ร B is the set of all ordered pairs (a, b) where a โ A and b โ B.
A ร B = {(a, b) : a โ A and b โ B}
Let A = {red, blue} and B = {1, 2, 3}. Then:
A ร B = {(red,1), (red,2), (red,3), (blue,1), (blue,2), (blue,3)}
Notice: |A ร B| = |A| ร |B| = 2 ร 3 = 6 ordered pairs.
Order matters! (red, 1) โ (1, red). The Cartesian product A ร B is generally not the same as B ร A.
What is a Relation?
A relation R from set A to set B is any subset of A ร B. That is, R โ A ร B.
If (a, b) โ R, we write a R b and say "a is related to b under R."
A relation in a set A (or "on" A) means a relation from A to itself, i.e., R โ A ร A.
Let A = {1, 2, 3} and define a relation R by the rule "a is less than b." Then:
R = {(1,2), (1,3), (2,3)}
Here 1 R 2, 1 R 3, and 2 R 3 โ but 3 R 1 is false (3 is not less than 1).
Domain, Codomain, and Range
For a relation R from A to B:
- Domain of R = set of all first elements of the ordered pairs in R = {a : (a, b) โ R for some b โ B}
- Codomain = the entire set B
- Range of R = set of all second elements of the ordered pairs in R = {b : (a, b) โ R for some a โ A}
Range โ Codomain, always. The range includes only those elements of B that are actually "hit" by R, while the codomain is the entire set B regardless of whether every element is used.
Two Extreme Relations
๐ณ๏ธ Empty Relation (R = โ )
๐ Universal Relation (R = A ร A)
Both the empty relation โ and the universal relation A ร A are trivially valid relations on A โ they are subsets of A ร A. Every other relation lies somewhere between these two extremes.
๐ Types of Relations
Not all relations behave the same way. We classify relations by three fundamental properties โ each asking a simple question about the ordered pairs in R.
1. Reflexive Relations
A relation R on set A is reflexive if every element is related to itself:
โ a โ A, (a, a) โ R
โ Reflexive: R on โค defined by "a divides a." Since every integer divides itself (a = 1 ร a), the pair (a, a) is always in R.
โ Not Reflexive: R on โ defined by "a is strictly greater than b." We'd need a > a, which is impossible.
2. Symmetric Relations
A relation R on set A is symmetric if whenever a is related to b, then b is also related to a:
โ a, b โ A, (a, b) โ R โ (b, a) โ R
โ Symmetric: R on a set of people defined by "a is a sibling of b." If Priya is Ravi's sibling, then Ravi is Priya's sibling.
โ Not Symmetric: R on people defined by "a is the father of b." If Ramesh is the father of Suresh, Suresh is certainly not the father of Ramesh!
3. Transitive Relations
A relation R on set A is transitive if whenever a is related to b and b is related to c, then a is related to c:
โ a, b, c โ A, (a, b) โ R and (b, c) โ R โ (a, c) โ R
โ Transitive: "is less than" on โ. If a < b and b < c, then a < c.
โ Not Transitive: "is perpendicular to" on lines in a plane. Line โโ โฅ โโ and โโ โฅ โโ does not imply โโ โฅ โโ (in fact, โโ โฅ โโ).
Quick Comparison Table
| Relation (on appropriate set) | Reflexive | Symmetric | Transitive |
|---|---|---|---|
| "a = b" on โค | โ | โ | โ |
| "a < b" on โ | โ | โ | โ |
| "a โค b" on โ | โ | โ | โ |
| "a divides b" on โค+ | โ | โ | โ |
| "a is sibling of b" | โ | โ | โ |
| "a โฅ b" (lines) | โ | โ | โ |
Consider the relation "is a friend of" on a social media platform (where you can be your own friend). Is it reflexive? If the platform auto-adds you as your own friend, yes. Symmetric? On Facebook, friendships are mutual โ yes. Transitive? If A is friends with B and B is friends with C, is A necessarily friends with C? Not at all! So it's reflexive and symmetric, but not transitive.
A common error: "If R has no pairs of the form (a, b) and (b, c) where a โ c, then R is transitive." This is actually true โ transitivity is satisfied vacuously! The condition "(a,b) โ R and (b,c) โ R" is never met, so the implication holds by default.
โ๏ธ Equivalence Relations & Equivalence Classes
A relation R on a set A is called an equivalence relation if it is simultaneously:
- Reflexive โ every element is related to itself
- Symmetric โ if a is related to b, then b is related to a
- Transitive โ if a is related to b and b is related to c, then a is related to c
Worked Example: Even Difference
Define R on โค by: R = {(a, b) : 2 divides (a โ b)}
In other words, a R b if and only if a โ b is even (i.e., a and b have the same parity).
Checking all three properties:
โ Reflexive
โ Symmetric
โ Transitive
Since R is reflexive, symmetric, and transitive, R is an equivalence relation. โจ
Equivalence Classes
Given an equivalence relation R on A, the equivalence class of an element a โ A is:
[a] = {x โ A : (a, x) โ R}
It is the collection of all elements related to a.
For our even-difference relation on โค:
Equivalence Class [0] โ The Even Integers
Equivalence Class [1] โ The Odd Integers
Notice: [0] โช [1] = โค (the full set) and [0] โฉ [1] = โ (no overlap). The equivalence classes form a partition of โค โ they split the entire set into non-overlapping groups that together cover everything!
Example: Modular Arithmetic (mod 3)
Define R on โค by: a R b โบ 3 | (a โ b) (i.e., a and b leave the same remainder when divided by 3).
This gives us three equivalence classes:
| Class | Remainder | Elements |
|---|---|---|
| [0] | 0 | {โฆ, โ6, โ3, 0, 3, 6, 9, โฆ} |
| [1] | 1 | {โฆ, โ5, โ2, 1, 4, 7, 10, โฆ} |
| [2] | 2 | {โฆ, โ4, โ1, 2, 5, 8, 11, โฆ} |
Equivalence relations are everywhere in daily life! "Born in the same month" partitions all people into 12 classes. "Living in the same city" partitions the population by city. "Having the same blood type" gives 8 classes (A+, Aโ, B+, Bโ, AB+, ABโ, O+, Oโ). Any time you group things by a shared property, you're using an equivalence relation!
Key theorem: Every equivalence relation on A gives a partition of A, and conversely, every partition of A defines an equivalence relation (where two elements are related iff they belong to the same block of the partition).
๐ฏ Types of Functions
A function f : X โ Y assigns to each element x โ X exactly one element f(x) โ Y. While all functions share this basic property, they differ in how thoroughly they "cover" the codomain and whether they reuse outputs.
One-One (Injective) Functions
A function f : X โ Y is one-one (or injective) if distinct inputs always produce distinct outputs:
f(xโ) = f(xโ) โ xโ = xโ
Equivalently: xโ โ xโ โ f(xโ) โ f(xโ). No two different elements map to the same value.
โ One-one: each element of X maps to a unique element of Y. Element 9 in Y is not hit.
Onto (Surjective) Functions
A function f : X โ Y is onto (or surjective) if every element of Y is the image of at least one element in X:
โ y โ Y, โ x โ X such that f(x) = y
In other words, the range of f equals the codomain Y.
โ Onto: f : โ โ โ defined by f(x) = xยณ. For any real number y, the cube root x = y1/3 exists in โ, and f(y1/3) = y.
โ Not Onto: f : โค โ โค defined by f(x) = 2x. The output is always even, so odd integers (like 3) have no pre-image. Range = even integers โ โค.
Bijective Functions (One-One AND Onto)
A function f : X โ Y is bijective if it is both one-one and onto. Every element of Y is mapped to by exactly one element of X โ a perfect pairing!
โ Bijective: f : โ โ โ defined by f(x) = 3x + 5.
One-one: 3xโ + 5 = 3xโ + 5 โ 3xโ = 3xโ โ xโ = xโ. โ
Onto: For any y โ โ, choose x = (y โ 5)/3 โ โ. Then f(x) = 3 ยท (yโ5)/3 + 5 = y. โ
Counter-Examples to Watch For
| Function | One-One? | Onto? | Why? |
|---|---|---|---|
| f(x) = xยฒ on โ โ โ | โ | โ | f(โ2) = f(2) = 4; negative numbers not in range |
| f(x) = xยฒ on โโบ โ โโบ | โ | โ | Restricted domain/codomain makes it bijective |
| f(x) = |x| on โ โ โ | โ | โ | f(โ3) = f(3); negatives not in range |
| f(x) = xยณ on โ โ โ | โ | โ | Strictly increasing, hits all reals |
For finite sets, there is a beautiful result: if f : A โ A (same finite set as domain and codomain), then f is one-one if and only if f is onto. So for finite sets, you only need to check one property! This fails for infinite sets โ consider f : โค โ โค, f(n) = 2n (one-one but not onto).
The number of bijections from a set with n elements to itself is n! (n factorial). So from {1, 2, 3} to itself, there are 3! = 6 bijections. These bijections are exactly the permutations of the set โ a concept that connects algebra, combinatorics, and group theory!
๐ Composition of Functions
When two functions are applied one after the other, the result is a new function called their composition.
Let f : A โ B and g : B โ C. The composition of f and g, written g โ f (read "g composed with f" or "g of f"), is the function from A to C defined by:
(g โ f)(x) = g(f(x)) for all x โ A
First apply f, then apply g to the result.
The notation g โ f means "apply f first, then g." The function written on the right acts first! This is a very common source of errors.
Worked Example
Let f : โ โ โ, f(x) = xยฒ and g : โ โ โ, g(x) = 2x + 1.
(g โ f)(x) = g(f(x)) = g(xยฒ) = 2xยฒ + 1
(f โ g)(x) = f(g(x)) = f(2x + 1) = (2x + 1)ยฒ = 4xยฒ + 4x + 1
๐จ g โ f โ f โ g in general!
Properties of Composition
โ Composition preserves Injectivity
โ Composition preserves Surjectivity
Combining the above: if both f and g are bijective, then g โ f is also bijective.
If g โ f is one-one, can we conclude that f is one-one? What about g? Hint: g โ f one-one guarantees f is one-one, but says nothing about g by itself.
โฉ๏ธ Invertible Functions
An invertible function is one whose action can be completely "undone." Just as subtraction undoes addition, an inverse function reverses the mapping.
A function f : X โ Y is invertible if there exists a function g : Y โ X such that:
g โ f = IX and f โ g = IY
where IX(x) = x and IY(y) = y are the identity functions. We write g = fโ1.
A function is invertible if and only if it is bijective. This is the central theorem connecting inverses to the one-one/onto classification. If f is not one-one, two inputs go to the same output, and the inverse can't decide which to pick. If f is not onto, some outputs have no source, leaving the inverse undefined there.
Finding the Inverse
To find fโ1, follow these steps:
- Write y = f(x)
- Solve for x in terms of y
- Replace y with x in the final expression to get fโ1(x)
Find the inverse of f : โ โ โ, f(x) = 3x + 7.
Step 1: y = 3x + 7
Step 2: y โ 7 = 3x, so x = (y โ 7)/3
Step 3: fโ1(x) = (x โ 7)/3
Verification: f(fโ1(x)) = 3 ยท (xโ7)/3 + 7 = x โ 7 + 7 = x โ
Inverse of a Composition
๐ Shoe-Sock Principle
Let f(x) = 2x and g(x) = x + 5. Then g โ f(x) = 2x + 5.
Direct inverse: (g โ f)โ1(x) = (x โ 5)/2
Via formula: fโ1(x) = x/2 and gโ1(x) = x โ 5.
fโ1 โ gโ1(x) = fโ1(x โ 5) = (x โ 5)/2 โ They match!
For any bijective f, we have (fโ1)โ1 = f. The inverse of the inverse takes you right back to the original function.
โ Binary Operations
A binary operation combines two elements of a set to produce another element of the same set. This is the foundation of algebraic structures like groups, rings, and fields.
A binary operation โ on a set A is a function โ : A ร A โ A. That is, for every pair (a, b) โ A ร A, the result a โ b must also be in A.
The crucial requirement is closure: the operation must not take you outside the set.
โ Binary operations on โค:
- Addition (+): a + b โ โค for all a, b โ โค โ
- Multiplication (ร): a ร b โ โค for all a, b โ โค โ
- Subtraction (โ): a โ b โ โค for all a, b โ โค โ
โ Not a binary operation on โค:
- Division (รท): 1 รท 2 = 0.5 โ โค. Fails closure!
Properties of Binary Operations
| Property | Definition | Example |
|---|---|---|
| Commutative | a โ b = b โ a for all a, b | + on โค: a + b = b + a โ |
| Associative | (a โ b) โ c = a โ (b โ c) for all a, b, c | ร on โค: (ab)c = a(bc) โ |
Subtraction on โค is not commutative (5 โ 3 โ 3 โ 5) and not associative ((8 โ 3) โ 2 = 3 but 8 โ (3 โ 2) = 7).
Identity Element
An element e โ A is called the identity element for โ if:
a โ e = e โ a = a for all a โ A
The identity element, if it exists, is unique.
| Operation | Set | Identity |
|---|---|---|
| + (addition) | โค | 0 (since a + 0 = 0 + a = a) |
| ร (multiplication) | โ* | 1 (since a ร 1 = 1 ร a = a) |
| โช (union) | Power set ๐ซ(S) | โ (since A โช โ = A) |
| โฉ (intersection) | Power set ๐ซ(S) | S (since A โฉ S = A) |
Inverse Element
Given a binary operation โ on A with identity e, an element b โ A is called the inverse of a โ A if:
a โ b = b โ a = e
Addition on โค (identity = 0): The inverse of a is โa, since a + (โa) = (โa) + a = 0.
Multiplication on โ* (identity = 1): The inverse of a (โ 0) is 1/a, since a ร (1/a) = (1/a) ร a = 1.
Does every element of โค have a multiplicative inverse within โค? Consider: what integer b satisfies 3 ร b = 1? Since b = 1/3 โ โค, the answer is no โ most integers lack multiplicative inverses in โค. (Only 1 and โ1 have multiplicative inverses in โค.)
๐งฉ Practice Problems โ Set 1
Test your understanding with these problems. Try solving each one before revealing the answer!
Let A = {1, 2, 3} and R = {(1,1), (2,2), (3,3), (1,2), (2,3)}. Determine whether R is reflexive, symmetric, and/or transitive.
Symmetric: โ No โ (1,2) โ R but (2,1) โ R.
Transitive: โ No โ (1,2) โ R and (2,3) โ R, but (1,3) โ R.
Show that the relation R = {(a, b) : a โค b} on โ is reflexive and transitive, but not symmetric.
Transitive: If a โค b and b โค c, then a โค c. So (a,b) โ R and (b,c) โ R โ (a,c) โ R. โ
Symmetric: Consider a = 1, b = 2. We have 1 โค 2, so (1,2) โ R. But 2 โค 1 is false, so (2,1) โ R. โ
Is the function f : โ โ โ defined by f(x) = xยณ one-one? Justify your answer.
Suppose f(xโ) = f(xโ), i.e., xโยณ = xโยณ.
Taking cube roots (which is well-defined and order-preserving on โ): xโ = xโ.
Since equal outputs force equal inputs, f is injective. โ
Let f(x) = |x| and g(x) = 2x โ 3. Find (g โ f)(x).
For example: (g โ f)(โ4) = 2|โ4| โ 3 = 2(4) โ 3 = 5.
And: (g โ f)(3) = 2|3| โ 3 = 6 โ 3 = 3.
A binary operation โ on โค is defined by a โ b = a + b โ ab. Is โ commutative?
a โ b = a + b โ ab
b โ a = b + a โ ba = a + b โ ab (since addition and multiplication of integers are commutative)
Therefore a โ b = b โ a for all a, b โ โค. โ
Find the inverse of the function f : โ โ โ defined by f(x) = 5x + 2.
Solving for x: y โ 2 = 5x, so x = (y โ 2)/5.
Therefore fโ1(x) = (x โ 2)/5.
Verification: f(fโ1(x)) = 5 ยท (x โ 2)/5 + 2 = (x โ 2) + 2 = x โ
Let R be a relation on โค defined by R = {(a, b) : a โ b is even}. Show that R is an equivalence relation.
Symmetric: If (a, b) โ R, then a โ b is even, say a โ b = 2k. Then b โ a = โ2k = 2(โk), which is also even. So (b, a) โ R. โ
Transitive: If (a, b) โ R and (b, c) โ R, then a โ b = 2m and b โ c = 2n for some integers m, n. Adding: a โ c = (a โ b) + (b โ c) = 2m + 2n = 2(m + n), which is even. So (a, c) โ R. โ
Since R is reflexive, symmetric, and transitive, R is an equivalence relation.
How many bijections exist from the set {a, b, c, d} to itself?
For a set with 4 elements, the number of permutations is 4! = 4 ร 3 ร 2 ร 1 = 24.
Reasoning: The first element has 4 choices for its image, the second has 3 remaining choices, the third has 2, and the last has 1.
Is division (รท) a binary operation on โ* (non-zero rationals)?
For any a, b โ โ* (both non-zero rationals), a รท b = a/b.
Since a โ 0 and b โ 0, the result a/b is a non-zero rational number, i.e., a/b โ โ*.
Therefore, closure is satisfied. โ
Note: Division is NOT a binary operation on โค (1 รท 2 = 0.5 โ โค) or on โ (0 รท 0 is undefined).
Find all equivalence classes of the relation R = {(a, b) : 3 | (a โ b)} on โค.
[0] = {โฆ, โ6, โ3, 0, 3, 6, 9, โฆ} โ multiples of 3 (remainder 0)
[1] = {โฆ, โ5, โ2, 1, 4, 7, 10, โฆ} โ remainder 1 when divided by 3
[2] = {โฆ, โ4, โ1, 2, 5, 8, 11, โฆ} โ remainder 2 when divided by 3
These three classes are disjoint and their union is all of โค, forming a partition.
๐งฉ Practice Problems โ Set 2 (Challenging)
These problems are more involved and test deeper understanding. Work through each carefully!
Show that the relation R on โ defined by R = {(a, b) : a โค bยฒ} is neither reflexive, nor symmetric, nor transitive.
Not Symmetric: Take a = 1, b = 2. We have 1 โค 2ยฒ = 4 โ, so (1, 2) โ R. But 2 โค 1ยฒ = 1? No, 2 > 1. So (2, 1) โ R. โ
Not Transitive: Take a = 2, b = โ2, c = 1/2. We have 2 โค (โ2)ยฒ = 4 โ and โ2 โค (1/2)ยฒ = 1/4? Hmm, โ2 โค 1/4 โ. But 2 โค (1/2)ยฒ = 1/4? No. So (a,b) โ R and (b,c) โ R but (a,c) โ R. โ
Let f(x) = xยฒ and g(x) = x + 1 (both โ โ โ). Find f โ g and g โ f. Are they equal?
g โ f(x) = g(f(x)) = g(xยฒ) = xยฒ + 1
Are they equal? No! For example, at x = 1:
f โ g(1) = (1+1)ยฒ = 4, but g โ f(1) = 1ยฒ + 1 = 2.
This confirms composition is not commutative in general.
Show that f : โ โ โ defined by f(x) = 2x is one-one but not onto.
Not onto: Consider 3 โ โ (codomain). Is there any x โ โ with f(x) = 3? We'd need 2x = 3, giving x = 3/2, which is not a natural number. So 3 has no pre-image, and f is not onto. โ
The range of f is {2, 4, 6, 8, โฆ} โ only even natural numbers, which is a proper subset of โ.
Let A = {1, 2, 3}. How many equivalence relations on A contain both (1, 2) and (2, 1)?
Now, should 3 be in the same class as 1 and 2?
Option 1: No โ classes are {1, 2} and {3}. Relation = {(1,1), (2,2), (3,3), (1,2), (2,1)}. โ (Check: transitive since no chain leads to new pairs.)
Option 2: Yes โ all in one class {1, 2, 3}. Relation = A ร A (universal). โ
Answer: 2 equivalence relations.
Define โ on โ by a โ b = (a + b)/2. Is โ associative?
(a โ b) โ c = ((a + b)/2) โ c = ((a + b)/2 + c) / 2 = (a + b + 2c) / 4
a โ (b โ c) = a โ ((b + c)/2) = (a + (b + c)/2) / 2 = (2a + b + c) / 4
Since (a + b + 2c)/4 โ (2a + b + c)/4 in general (e.g., a = 0, b = 0, c = 4 gives 2 vs 1), โ is NOT associative. โ
Show that f : โ \ {โ1} โ โ defined by f(x) = (x โ 1)/(x + 1) is one-one but not onto (codomain โ).
(xโ โ 1)/(xโ + 1) = (xโ โ 1)/(xโ + 1)
Cross-multiply: (xโ โ 1)(xโ + 1) = (xโ โ 1)(xโ + 1)
Expand: xโxโ + xโ โ xโ โ 1 = xโxโ + xโ โ xโ โ 1
Simplify: 2xโ = 2xโ, so xโ = xโ. โ
Not onto: Is there x such that f(x) = 1?
(x โ 1)/(x + 1) = 1 โ x โ 1 = x + 1 โ โ1 = 1, which is impossible.
So 1 is not in the range of f, hence f is not onto. โ
If f is bijective, show that (fโ1)โ1 = f.
f โ fโ1 = IY and fโ1 โ f = IX
The inverse of fโ1 is the function g such that g โ fโ1 = IY and fโ1 โ g = IX.
From the equations above, g = f satisfies both conditions! Therefore (fโ1)โ1 = f. โ
Intuition: Undoing an undo brings you back to where you started.
Let A = {1, 2, 3, 4, 5, 6, 7} and R = {(a, b) : both a and b are odd, or both are even}. Find the equivalence classes.
Equivalence class of odd numbers:
[1] = [3] = [5] = [7] = {1, 3, 5, 7}
Equivalence class of even numbers:
[2] = [4] = [6] = {2, 4, 6}
There are exactly 2 equivalence classes: {1, 3, 5, 7} and {2, 4, 6}. They are disjoint and their union is A.
For the operation โ on โคโบ defined by a โ b = LCM(a, b), find the identity element.
Recall that LCM(a, 1) = a for every positive integer a (since 1 divides every integer, the LCM is just a).
Also, LCM(1, a) = a. โ
Therefore, the identity element is e = 1.
If f : A โ B is bijective and g : B โ C is bijective, show that g โ f : A โ C is bijective.
Since g is one-one: f(xโ) = f(xโ).
Since f is one-one: xโ = xโ.
Therefore g โ f is one-one. โ
Onto: Let c โ C (arbitrary).
Since g is onto: โ b โ B such that g(b) = c.
Since f is onto: โ a โ A such that f(a) = b.
Then (g โ f)(a) = g(f(a)) = g(b) = c.
Therefore g โ f is onto. โ
Since g โ f is both one-one and onto, it is bijective.
๐ฏ Quick Quiz โ Test Yourself! (10 MCQs)
Select the correct answer for each question. You can't change your answer once selected!
A relation that is reflexive, symmetric, and transitive is called:
The function f : โ โ โ defined by f(x) = xยฒ is:
The number of bijections from {1, 2, 3} to itself is:
If f(x) = 2x + 3, then fโ1(x) equals:
The notation g โ f means:
Which of the following is a binary operation on โค?
The identity element for addition (+) on โค is:
The relation R = {(1,1), (2,2)} on A = {1, 2, 3} is:
If a function is both one-one and onto, it is called:
The number of equivalence classes of the relation "congruent modulo 5" on โค is:
Your Quiz Results
๐ Chapter Summary
๐ Key Definitions at a Glance
Relations
- A relation R from A to B is a subset of A ร B. A relation on A means R โ A ร A.
- Reflexive: (a, a) โ R for all a โ A.
- Symmetric: (a, b) โ R โ (b, a) โ R.
- Transitive: (a, b) โ R and (b, c) โ R โ (a, c) โ R.
- Equivalence relation: Reflexive + Symmetric + Transitive.
- Equivalence class of a: [a] = {x โ A : (a, x) โ R}. Equivalence classes form a partition of A.
Functions
- One-one (Injective): f(xโ) = f(xโ) โ xโ = xโ.
- Onto (Surjective): For every y in codomain, โ x with f(x) = y.
- Bijective: One-one AND onto.
- For finite sets: f : A โ A is one-one โบ f is onto.
- Number of bijections from an n-element set to itself = n!
Composition
- (g โ f)(x) = g(f(x)) โ apply f first, then g.
- Composition is associative but not commutative.
- Composition preserves injectivity, surjectivity, and bijectivity.
Invertible Functions
- f is invertible โบ f is bijective.
- fโ1(y) = x where f(x) = y.
- (g โ f)โ1 = fโ1 โ gโ1 (reverse order).
- (fโ1)โ1 = f.
Binary Operations
- A binary operation โ on A is a function โ : A ร A โ A (closure is essential).
- Commutative: a โ b = b โ a.
- Associative: (a โ b) โ c = a โ (b โ c).
- Identity element e: a โ e = e โ a = a for all a.
- Inverse of a: a โ b = b โ a = e.
This chapter forms the gateway to abstract algebra โ one of the most beautiful branches of mathematics. The concepts of equivalence relations, bijections, and binary operations are the building blocks of groups, rings, fields, and beyond. What you've learned here will serve you throughout higher mathematics! ๐
๐ Congratulations on completing Chapter 1!
Relations and Functions โ Class 12 Mathematics | EduArtha
100% Original Educational Content โ Not sourced from any textbook