SlideShare a Scribd company logo
Introduction to set theory and to methodology and philosophy of
mathematics and computer programming
Function inverse
An overview
by Jan Plaza
c 2017 Jan Plaza
Use under the Creative Commons Attribution 4.0 International License
Version of November 10, 2017
Note
For a binary relation, the inverse relation is always defined. Recall that the inverse
relation to R is the unique binary relation S, such that for all x, y:
xRy iff ySx
(Such a relation S is denoted R−1.)
For a function f, we want its function inverse g to satisfy
f(x) = y iff g(y) = x
which means that:
g is just the inverse relation to f;
g is a function.
This will require that we start from a “good” function f, not just any function.
Informal Example
We cannot take just any function hoping that its inverse relation will be a function.
Consider function motherOf that maps every person in its domain to their mother.
The inverse relation to motherOf exists and could be called mother-child;
it consists of ordered pairs m, c where m is the mother of c.
mother-child is not a function (because a mother may have two children).
Notice that the function motherOf is not an injection
(as two persons may have the same mother).
Fact
1. If f is a function, and the inverse relation to f is a function,
then f is an injection.
2. If f is an injection,
then the inverse relation to f is a function and an injection.
Definition
1. Let f be a function. f is invertible or f is an invertible function
if f is an injection.
2. Let f be an invertible function. The function inverse of f or
the inverse function to f , denoted finv , is the inverse relation to f.
Convention
One writes f−1 instead of finv.
Depending on the context, the phrase the inverse of f and the symbol f−1
mean either the relation inverse or function inverse.
The context should suggest which operation is meant.
If in the context functions are discussed, then the function inverse is meant
and there is an implicit claim or assumption that f is invertible.
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Solve f = 9
5c + 32 for c
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Solve f = 9
5c + 32 for c: c = . . .
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Solve f = 9
5c + 32 for c: c = 5
9(f − 32).
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Solve f = 9
5c + 32 for c: c = 5
9(f − 32). So, what is the inverse function to F?
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Solve f = 9
5c + 32 for c: c = 5
9(f − 32). So, what is the inverse function to F?
C(f) =
5
9
(f − 32)
Example
Conversion from Celsius to Fahrenheit scales of temperature is given by:
f = F(c) =
9
5
c + 32
where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit.
F is an injection from R to R.
How to find the inverse function to F?
Solve f = 9
5c + 32 for c: c = 5
9(f − 32). So, what is the inverse function to F?
C(f) =
5
9
(f − 32)
Exercise. Complete C−1 = . . .
Exercise. Complete C ◦ F = . . .
Exercise. Complete F ◦ C = . . .
Exercise
Let f(x) = 2x + 1.
Find f−1.
Find (f−1)−1.
Find f ◦ f−1.
Find f−1 ◦ f.
Example
Let f : R −→ R 0 be defined as f(x) = ex.
Let g : R 0 −→ R be defined as g(x) = log x.
g is the inverse function to f.
f is the inverse function to g.
Exercise. Complete g ◦ f = . . .
Exercise. Complete f ◦ g = . . .
Example
Let f : R −→ R 0 be defined as f(x) = x2.
Notice that g : R 0 −→ R defined as g(x) =
√
x, is not an inverse to f;
indeed, (−2)2 = 4, but
√
4=−2.
f does not have an inverse function;
indeed, if h were an inverse function to f,
we would have h(4) = 2 because 22 = 4;
also we would have h(4) = −2 because (−2)2 = 4,
so 2 = h(4) = −2;
this is a contradiction.
Example
Let f : R 0 −→ R 0 be defined as f(x) = x2.
Notice that f is not the same as in the previous example
because the domains are different.
Let g : R 0 −→ R 0 defined as g(x) =
√
x.
g is an inverse function to f;
f is an inverse function to g;
indeed, x2 = y iff x =
√
y, for x, y ∈ R 0.
Exercise. Complete g ◦ f = . . . .
Exercise. Complete f ◦ g = . . . .
Exercise
1. domain(f−1) = . . .
Exercise
1. domain(f−1) = range(f).
Exercise
1. domain(f−1) = range(f).
2. range(f−1) = . . .
Exercise
1. domain(f−1) = range(f).
2. range(f−1) = domain(f).
Exercise
1. domain(f−1) = range(f).
2. range(f−1) = domain(f).
3. True or false? If f : X
1-1
−→ Y , then f−1 : Y
1-1, onto
−→ X.
Exercise
1. domain(f−1) = range(f).
2. range(f−1) = domain(f).
3. True or false? If f : X
1-1
−→ Y , then f−1 : Y
1-1, onto
−→ X. False.
Find a counter-example.
Exercise
1. domain(f−1) = range(f).
2. range(f−1) = domain(f).
3. True or false? If f : X
1-1
−→ Y , then f−1 : Y
1-1, onto
−→ X. False.
Find a counter-example.
4. If f : X
1-1
−→ Y , then f−1 :
Exercise
1. domain(f−1) = range(f).
2. range(f−1) = domain(f).
3. True or false? If f : X
1-1
−→ Y , then f−1 : Y
1-1, onto
−→ X. False.
Find a counter-example.
4. If f : X
1-1
−→ Y , then f−1 : range(f)
1-1, onto
−→ X.
Fact
Let f be a function.
If f is invertible, then f−1 is invertible, and
(f−1)−1 = f.
Corollary
Let f, g be invertible functions. Then,
g = f−1 iff f = g−1.
Proposition
If f is invertible, then f and f−1 are suitable for the following function compositions
and the following equalities hold:
1. f−1 ◦ f = iddomain(f)
2. f ◦ f−1 = idrange(f)
Proposition
Let f : X
1-1
−→ Y and g : Y
1-1
−→ Z.
Then, the following function inverses and function compositions are defined,
and the following equality holds:
(f ◦ g)−1 = g−1 ◦ f−1
Note
Using a tacit assumption that we discuss functions and an earlier convention,
the last few results can stated succinctly, as follows.
1. (f−1)−1 = f
2. f−1 ◦ f = iddomain(f)
3. f ◦ f−1 = idrange(f)
4. Let f : X
1-1
−→ Y and g : Y
1-1
−→ Z; then (f ◦ g)−1 = g−1 ◦ f−1.

More Related Content

PDF
5.6 Function inverse. A handout.
PDF
5.7 Function powers
PDF
5.5 Injective and surjective functions. A handout.
PPTX
Inverse function
PPT
Inverse Functions
PPT
Calc 5.3
PPTX
One to-one function (MATH 11)
PDF
2.8A Function Operations
5.6 Function inverse. A handout.
5.7 Function powers
5.5 Injective and surjective functions. A handout.
Inverse function
Inverse Functions
Calc 5.3
One to-one function (MATH 11)
2.8A Function Operations

What's hot (20)

DOCX
Notes chapter 1
PPT
7.7 one to_one_functions_-_inverse_functions
PDF
4.1 Inverse Functions
PPTX
4 5 inverse functions
PPTX
53 inverse function (optional)
PDF
Lesson 15: Inverse Functions And Logarithms
PPTX
General Math Lesson 1
PPT
Functions
PDF
5.5 Injective and surjective functions. Dynamic slides.
PPTX
mathematical functions
PPTX
Function in Mathematics
PDF
3_-_Graphs_and_Functions v3
PPTX
1.6 inverse function (optional)
PPT
Inverse functions and relations
PPTX
Alg II 2-1 Relations and Functions
PDF
4.3 Logarithmic Functions
PPTX
Inverse functions
PDF
Algebra 2 Section 5-3
PPT
3.1 Extreme Values of Functions
PDF
Day 4 examples u1f13
Notes chapter 1
7.7 one to_one_functions_-_inverse_functions
4.1 Inverse Functions
4 5 inverse functions
53 inverse function (optional)
Lesson 15: Inverse Functions And Logarithms
General Math Lesson 1
Functions
5.5 Injective and surjective functions. Dynamic slides.
mathematical functions
Function in Mathematics
3_-_Graphs_and_Functions v3
1.6 inverse function (optional)
Inverse functions and relations
Alg II 2-1 Relations and Functions
4.3 Logarithmic Functions
Inverse functions
Algebra 2 Section 5-3
3.1 Extreme Values of Functions
Day 4 examples u1f13
Ad

Similar to 5.6 Function inverse. Dynamic slides. (20)

PDF
5.1 Defining and visualizing functions. A handout.
PDF
5.1 Defining and visualizing functions. Dynamic slides.
PPTX
Functions
PPT
Lar calc10 ch05_sec3
PPTX
CMSC 56 | Lecture 9: Functions Representations
PPTX
Applications of partial differentiation
PDF
4.1 Inverse Functions
PDF
Inverse function
PPT
Inverses & One-to-One
PDF
5.8 Permutations (dynamic slides)
PDF
Derivative rules.docx
PPT
PreCalc Section 1.6.ppt
PDF
publish paper
PDF
03_AJMS_279_20_20210128_V2.pdf
PPTX
Relations and function class xii copy
PDF
5.8 Permutations (handout)
PPT
Topic 3 Inverse of function, steps to find inverse and properties of inverse
PDF
Functions 2
PDF
Ch07
PPTX
Calculus- Basics
5.1 Defining and visualizing functions. A handout.
5.1 Defining and visualizing functions. Dynamic slides.
Functions
Lar calc10 ch05_sec3
CMSC 56 | Lecture 9: Functions Representations
Applications of partial differentiation
4.1 Inverse Functions
Inverse function
Inverses & One-to-One
5.8 Permutations (dynamic slides)
Derivative rules.docx
PreCalc Section 1.6.ppt
publish paper
03_AJMS_279_20_20210128_V2.pdf
Relations and function class xii copy
5.8 Permutations (handout)
Topic 3 Inverse of function, steps to find inverse and properties of inverse
Functions 2
Ch07
Calculus- Basics
Ad

More from Jan Plaza (20)

PDF
6.3 Equivalences versus partitions
PDF
6.1 Partitions
PDF
6.2 Reflexivity, symmetry and transitivity (dynamic slides)
PDF
6.2 Reflexivity, symmetry and transitivity (handout)
PDF
5.3 Basic functions. A handout.
PDF
5.3 Basic functions. Dynamic slides.
PDF
1.8 Separation schema
PDF
1.4 Abstract objects and expressions
PDF
1.2 Axiom of pair
PDF
1.11 Mathematical induction
PDF
1.7 The sets of numbers
PDF
1.6 Subsets
PDF
1.1 Notions of set and membership
PDF
5.2. Function composition
PDF
4.7 Powers of binary relations
PDF
4.6 Relative product and composition
PDF
4.5 Inverse relation
PDF
4.4 Set operations on relations
PDF
4.1 Defining and visualizing binary relations
PDF
3.7 Indexed families of sets
6.3 Equivalences versus partitions
6.1 Partitions
6.2 Reflexivity, symmetry and transitivity (dynamic slides)
6.2 Reflexivity, symmetry and transitivity (handout)
5.3 Basic functions. A handout.
5.3 Basic functions. Dynamic slides.
1.8 Separation schema
1.4 Abstract objects and expressions
1.2 Axiom of pair
1.11 Mathematical induction
1.7 The sets of numbers
1.6 Subsets
1.1 Notions of set and membership
5.2. Function composition
4.7 Powers of binary relations
4.6 Relative product and composition
4.5 Inverse relation
4.4 Set operations on relations
4.1 Defining and visualizing binary relations
3.7 Indexed families of sets

Recently uploaded (20)

PDF
Classroom Observation Tools for Teachers
PDF
Complications of Minimal Access Surgery at WLH
PDF
Computing-Curriculum for Schools in Ghana
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PDF
VCE English Exam - Section C Student Revision Booklet
PDF
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
Institutional Correction lecture only . . .
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
Lesson notes of climatology university.
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
Classroom Observation Tools for Teachers
Complications of Minimal Access Surgery at WLH
Computing-Curriculum for Schools in Ghana
Microbial disease of the cardiovascular and lymphatic systems
Abdominal Access Techniques with Prof. Dr. R K Mishra
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
GENETICS IN BIOLOGY IN SECONDARY LEVEL FORM 3
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Pharmacology of Heart Failure /Pharmacotherapy of CHF
202450812 BayCHI UCSC-SV 20250812 v17.pptx
VCE English Exam - Section C Student Revision Booklet
Saundersa Comprehensive Review for the NCLEX-RN Examination.pdf
GDM (1) (1).pptx small presentation for students
Institutional Correction lecture only . . .
Final Presentation General Medicine 03-08-2024.pptx
Lesson notes of climatology university.
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
STATICS OF THE RIGID BODIES Hibbelers.pdf

5.6 Function inverse. Dynamic slides.

  • 1. Introduction to set theory and to methodology and philosophy of mathematics and computer programming Function inverse An overview by Jan Plaza c 2017 Jan Plaza Use under the Creative Commons Attribution 4.0 International License Version of November 10, 2017
  • 2. Note For a binary relation, the inverse relation is always defined. Recall that the inverse relation to R is the unique binary relation S, such that for all x, y: xRy iff ySx (Such a relation S is denoted R−1.) For a function f, we want its function inverse g to satisfy f(x) = y iff g(y) = x which means that: g is just the inverse relation to f; g is a function. This will require that we start from a “good” function f, not just any function.
  • 3. Informal Example We cannot take just any function hoping that its inverse relation will be a function. Consider function motherOf that maps every person in its domain to their mother. The inverse relation to motherOf exists and could be called mother-child; it consists of ordered pairs m, c where m is the mother of c. mother-child is not a function (because a mother may have two children). Notice that the function motherOf is not an injection (as two persons may have the same mother).
  • 4. Fact 1. If f is a function, and the inverse relation to f is a function, then f is an injection. 2. If f is an injection, then the inverse relation to f is a function and an injection. Definition 1. Let f be a function. f is invertible or f is an invertible function if f is an injection. 2. Let f be an invertible function. The function inverse of f or the inverse function to f , denoted finv , is the inverse relation to f.
  • 5. Convention One writes f−1 instead of finv. Depending on the context, the phrase the inverse of f and the symbol f−1 mean either the relation inverse or function inverse. The context should suggest which operation is meant. If in the context functions are discussed, then the function inverse is meant and there is an implicit claim or assumption that f is invertible.
  • 6. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F?
  • 7. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F? Solve f = 9 5c + 32 for c
  • 8. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F? Solve f = 9 5c + 32 for c: c = . . .
  • 9. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F? Solve f = 9 5c + 32 for c: c = 5 9(f − 32).
  • 10. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F? Solve f = 9 5c + 32 for c: c = 5 9(f − 32). So, what is the inverse function to F?
  • 11. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F? Solve f = 9 5c + 32 for c: c = 5 9(f − 32). So, what is the inverse function to F? C(f) = 5 9 (f − 32)
  • 12. Example Conversion from Celsius to Fahrenheit scales of temperature is given by: f = F(c) = 9 5 c + 32 where c is the temperature in degrees Celsius, and f – in degrees Fahrenheit. F is an injection from R to R. How to find the inverse function to F? Solve f = 9 5c + 32 for c: c = 5 9(f − 32). So, what is the inverse function to F? C(f) = 5 9 (f − 32) Exercise. Complete C−1 = . . . Exercise. Complete C ◦ F = . . . Exercise. Complete F ◦ C = . . .
  • 13. Exercise Let f(x) = 2x + 1. Find f−1. Find (f−1)−1. Find f ◦ f−1. Find f−1 ◦ f.
  • 14. Example Let f : R −→ R 0 be defined as f(x) = ex. Let g : R 0 −→ R be defined as g(x) = log x. g is the inverse function to f. f is the inverse function to g. Exercise. Complete g ◦ f = . . . Exercise. Complete f ◦ g = . . .
  • 15. Example Let f : R −→ R 0 be defined as f(x) = x2. Notice that g : R 0 −→ R defined as g(x) = √ x, is not an inverse to f; indeed, (−2)2 = 4, but √ 4=−2. f does not have an inverse function; indeed, if h were an inverse function to f, we would have h(4) = 2 because 22 = 4; also we would have h(4) = −2 because (−2)2 = 4, so 2 = h(4) = −2; this is a contradiction.
  • 16. Example Let f : R 0 −→ R 0 be defined as f(x) = x2. Notice that f is not the same as in the previous example because the domains are different. Let g : R 0 −→ R 0 defined as g(x) = √ x. g is an inverse function to f; f is an inverse function to g; indeed, x2 = y iff x = √ y, for x, y ∈ R 0. Exercise. Complete g ◦ f = . . . . Exercise. Complete f ◦ g = . . . .
  • 19. Exercise 1. domain(f−1) = range(f). 2. range(f−1) = . . .
  • 20. Exercise 1. domain(f−1) = range(f). 2. range(f−1) = domain(f).
  • 21. Exercise 1. domain(f−1) = range(f). 2. range(f−1) = domain(f). 3. True or false? If f : X 1-1 −→ Y , then f−1 : Y 1-1, onto −→ X.
  • 22. Exercise 1. domain(f−1) = range(f). 2. range(f−1) = domain(f). 3. True or false? If f : X 1-1 −→ Y , then f−1 : Y 1-1, onto −→ X. False. Find a counter-example.
  • 23. Exercise 1. domain(f−1) = range(f). 2. range(f−1) = domain(f). 3. True or false? If f : X 1-1 −→ Y , then f−1 : Y 1-1, onto −→ X. False. Find a counter-example. 4. If f : X 1-1 −→ Y , then f−1 :
  • 24. Exercise 1. domain(f−1) = range(f). 2. range(f−1) = domain(f). 3. True or false? If f : X 1-1 −→ Y , then f−1 : Y 1-1, onto −→ X. False. Find a counter-example. 4. If f : X 1-1 −→ Y , then f−1 : range(f) 1-1, onto −→ X.
  • 25. Fact Let f be a function. If f is invertible, then f−1 is invertible, and (f−1)−1 = f. Corollary Let f, g be invertible functions. Then, g = f−1 iff f = g−1.
  • 26. Proposition If f is invertible, then f and f−1 are suitable for the following function compositions and the following equalities hold: 1. f−1 ◦ f = iddomain(f) 2. f ◦ f−1 = idrange(f) Proposition Let f : X 1-1 −→ Y and g : Y 1-1 −→ Z. Then, the following function inverses and function compositions are defined, and the following equality holds: (f ◦ g)−1 = g−1 ◦ f−1
  • 27. Note Using a tacit assumption that we discuss functions and an earlier convention, the last few results can stated succinctly, as follows. 1. (f−1)−1 = f 2. f−1 ◦ f = iddomain(f) 3. f ◦ f−1 = idrange(f) 4. Let f : X 1-1 −→ Y and g : Y 1-1 −→ Z; then (f ◦ g)−1 = g−1 ◦ f−1.