Documentation

Books.Analysis2_Tao_2022.Chapters.Chap02.section03

theorem continuous_maps_preserve_compactness {X : Type u_1} {Y : Type u_2} [MetricSpace X] [MetricSpace Y] {f : XY} (hf : Continuous f) {K : Set X} (hK : IsCompact K) :

Theorem 2.5: [Continuous maps preserve compactness] If f : X → Y is continuous between metric spaces and K ⊆ X is compact, then the image f '' K is compact.

theorem helperForProposition_2_15_abs_bound {X : Type u_1} [MetricSpace X] [CompactSpace X] {f : X} (hf : Continuous f) :
∃ (M : ), ∀ (x : X), |f x| M

Helper for Proposition 2.15: a continuous real-valued function on a compact metric space is bounded in absolute value.

theorem helperForProposition_2_15_exists_argmax_argmin {X : Type u_1} [MetricSpace X] [CompactSpace X] {f : X} (hf : Continuous f) (hne : Nonempty X) :
∃ (x_max : X) (x_min : X), (∀ (x : X), f x f x_max) ∀ (x : X), f x_min f x

Helper for Proposition 2.15: existence of points attaining the maximum and minimum on a compact metric space.

theorem maximum_principle {X : Type u_1} [MetricSpace X] [CompactSpace X] {f : X} (hf : Continuous f) :
(∃ (M : ), ∀ (x : X), |f x| M) (Nonempty X∃ (x_max : X) (x_min : X), (∀ (x : X), f x f x_max) ∀ (x : X), f x_min f x)

Proposition 2.15: [Maximum principle] Let (X, d) be a compact metric space and f : X → ℝ continuous. (i) The function f is bounded on X. (ii) If X ≠ ∅, then there exist x_max, x_min : X such that f x_max is a maximum and f x_min is a minimum of f on X.

@[reducible, inline]
abbrev IsUniformlyContinuous {X : Type u_1} {Y : Type u_2} [MetricSpace X] [MetricSpace Y] (f : XY) :

Definition 2.6: [Uniform continuity] Let (X, d_X) and (Y, d_Y) be metric spaces and f : X → Y. The function f is uniformly continuous on X if for every ε > 0 there exists δ > 0 such that for all x, x' ∈ X, d_X x x' < δ → d_Y (f x) (f x') < ε.

Equations
Instances For

    Theorem 2.7: Let (X, d_X) and (Y, d_Y) be metric spaces and assume X is compact. For a function f : X → Y, f is continuous on X if and only if f is uniformly continuous on X.

    theorem uniformlyContinuous_comp {X : Type u_1} {Y : Type u_2} {Z : Type u_3} [MetricSpace X] [MetricSpace Y] [MetricSpace Z] {f : XY} {g : YZ} (hf : IsUniformlyContinuous f) (hg : IsUniformlyContinuous g) :

    Proposition 2.16: If f : X → Y and g : Y → Z are uniformly continuous between metric spaces, then g ∘ f : X → Z is uniformly continuous.

    theorem helperForProposition_2_17_dist_finTwo_pair_le_add (a b c d : ) :
    dist ![a, b] ![c, d] dist a c + dist b d

    Helper for Proposition 2.17: Euclidean distance in ℝ² is bounded by the sum of coordinate distances.

    theorem helperForProposition_2_17_dist_pair_le_add_coords {X : Type u_1} [MetricSpace X] {f g : X} (x y : X) :
    dist ![f x, g x] ![f y, g y] dist (f x) (f y) + dist (g x) (g y)

    Helper for Proposition 2.17: coordinate-wise bound for paired maps.

    theorem uniformlyContinuous_pair {X : Type u_1} [MetricSpace X] {f g : X} (hf : IsUniformlyContinuous f) (hg : IsUniformlyContinuous g) :
    IsUniformlyContinuous fun (x : X) => ![f x, g x]

    Proposition 2.17: Let (X, d_X) be a metric space, and let f, g : X → ℝ be uniformly continuous. Equip ℝ² with the standard metric d((a, b), (c, d)) = √((a - c)^2 + (b - d)^2). Define (f, g) : X → ℝ² by (f, g)(x) = (f x, g x). Then (f, g) is uniformly continuous.

    The map a(x,y)=x+y on ℝ², viewed as EuclideanSpace ℝ (Fin 2).

    Equations
    Instances For

      The map s(x,y)=x-y on ℝ², viewed as EuclideanSpace ℝ (Fin 2).

      Equations
      Instances For

        The map m(x,y)=x*y on ℝ², viewed as EuclideanSpace ℝ (Fin 2).

        Equations
        Instances For

          Helper for Proposition 2.18: each coordinate distance is bounded by the Euclidean distance.

          Helper for Proposition 2.18: coordMul fails uniform continuity on ℝ².

          Proposition 2.18: On ℝ² with the Euclidean metric and with the usual metric, the maps a(x,y)=x+y and s(x,y)=x-y are uniformly continuous, whereas m(x,y)=x*y is not uniformly continuous.

          Proposition 2.19: Let (X, d) be a metric space and let f, g : X → ℝ be uniformly continuous. Then the functions f + g and f - g are uniformly continuous on X.