Documentation
Analysis
.
Section_9_2
Search
return to top
source
Imports
Init
Mathlib.Tactic
Imported by
Chapter9
.
function_example
Chapter9
.
add_func_eval
Chapter9
.
sub_func_eval
Chapter9
.
max_func_eval
Chapter9
.
min_func_eval
Chapter9
.
mul_func_eval
Chapter9
.
div_func_eval
Chapter9
.
smul_func_eval
Chapter9
.
f_9_2_2
Chapter9
.
g_9_2_2
Chapter9
.
Exercise_9_2_1a
Chapter9
.
Exercise_9_2_1b
Chapter9
.
Exercise_9_2_1c
Chapter9
.
Exercise_9_2_1d
source
@[reducible, inline]
noncomputable abbrev
Chapter9
.
function_example
:
ℝ
→
ℝ
Equations
Chapter9.function_example
x
=
if
x
∈
(fun (
y
:
ℚ
) =>
↑
y
)
''
Set.univ
then
1
else
0
Instances For
source
theorem
Chapter9
.
add_func_eval
(
f
g
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
f
+
g
)
x
=
f
x
+
g
x
Definition 9.2.1 (Arithmetic operations on functions)
source
theorem
Chapter9
.
sub_func_eval
(
f
g
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
f
-
g
)
x
=
f
x
-
g
x
source
theorem
Chapter9
.
max_func_eval
(
f
g
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
f
⊔
g
)
x
=
max
(
f
x
)
(
g
x
)
source
theorem
Chapter9
.
min_func_eval
(
f
g
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
f
⊓
g
)
x
=
min
(
f
x
)
(
g
x
)
source
theorem
Chapter9
.
mul_func_eval
(
f
g
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
f
*
g
)
x
=
f
x
*
g
x
source
theorem
Chapter9
.
div_func_eval
(
f
g
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
f
/
g
)
x
=
f
x
/
g
x
source
theorem
Chapter9
.
smul_func_eval
(
c
:
ℝ
)
(
f
:
ℝ
→
ℝ
)
(
x
:
ℝ
)
:
(
c
•
f
)
x
=
c
*
f
x
source
@[reducible, inline]
abbrev
Chapter9
.
f_9_2_2
:
ℝ
→
ℝ
Equations
Chapter9.f_9_2_2
x
=
x
^
2
Instances For
source
@[reducible, inline]
abbrev
Chapter9
.
g_9_2_2
:
ℝ
→
ℝ
Equations
Chapter9.g_9_2_2
x
=
2
*
x
Instances For
source
def
Chapter9
.
Exercise_9_2_1a
:
Decidable
(∀ (
f
g
h
:
ℝ
→
ℝ
), (
f
+
g
)
∘
h
=
f
∘
h
+
g
∘
h
)
Equations
Chapter9.Exercise_9_2_1a
=
sorry
Instances For
source
def
Chapter9
.
Exercise_9_2_1b
:
Decidable
(∀ (
f
g
h
:
ℝ
→
ℝ
),
f
∘
(
g
+
h
)
=
f
∘
g
+
f
∘
h
)
Equations
Chapter9.Exercise_9_2_1b
=
sorry
Instances For
source
def
Chapter9
.
Exercise_9_2_1c
:
Decidable
(∀ (
f
g
h
:
ℝ
→
ℝ
), (
f
+
g
)
*
h
=
f
*
h
+
g
*
h
)
Equations
Chapter9.Exercise_9_2_1c
=
sorry
Instances For
source
def
Chapter9
.
Exercise_9_2_1d
:
Decidable
(∀ (
f
g
h
:
ℝ
→
ℝ
),
f
*
(
g
+
h
)
=
f
*
g
+
f
*
h
)
Equations
Chapter9.Exercise_9_2_1d
=
sorry
Instances For