Mathematical Analysis

Total Page:16

File Type:pdf, Size:1020Kb

Mathematical Analysis Mathematical Analysis by Tom Lindstrøm Department of Mathematics University of Oslo 2014 i Preface These notes were first written as an emergency measure when the textbook for the course MAT2400 failed to show up in the spring of 2011. The present version is corrected, updated and extended, but still far from perfect. I would like to thank everybody who has pointed out mistakes and weaknesses in the previous versions, in particular Geir Ellingsrud, Erik Løw, Per Størset, and Daniel Aubert. Blindern, January 7th, 2014 Tom Lindstrøm ii Contents 1 Preliminaries: Proofs, Sets, and Functions 3 1.1 Proofs . 3 1.2 Sets and boolean operations . 6 1.3 Families of sets . 9 1.4 Functions . 11 1.5 Relations and partitions . 13 1.6 Countability . 16 2 Metric Spaces 21 2.1 Definitions and examples . 22 2.2 Convergence and continuity . 27 2.3 Open and closed sets . 31 2.4 Complete spaces . 38 2.5 Compact sets . 41 2.6 An alternative description of compactness . 47 2.7 The completion of a metric space . 50 3 Spaces of continuous functions 57 3.1 Modes of continuity . 57 3.2 Modes of convergence . 59 3.3 The spaces C(X; Y ) ....................... 63 3.4 Applications to differential equations . 66 m 3.5 Compact subsets of C(X; R ).................. 70 3.6 Differential equations revisited . 75 3.7 Polynomials are dense in C([a; b]; R) . 80 3.8 Baire's Category Theorem . 86 4 Series of functions 93 4.1 lim sup and lim inf . 93 4.2 Integrating and differentiating sequences . 95 4.3 Power series . 101 4.4 Abel's Theorem . 104 4.5 Normed spaces . 108 iii CONTENTS 1 4.6 Inner product spaces . 113 4.7 Linear operators . 124 5 Measure and integration 129 5.1 Measure spaces . 130 5.2 Complete measures . 139 5.3 Measurable functions . 144 5.4 Integration of simple functions . 150 5.5 Integrals of nonnegative functions . 157 5.6 Integrable functions . 167 5.7 L1(X; A; µ) and L2(X; A; µ) . 173 6 Constructing measures 181 6.1 Outer measure . 182 6.2 Measurable sets . 184 6.3 Carath´eodory's Theorem . 189 6.4 Lebesgue measure on R . 196 6.5 Approximation results . 200 6.6 The coin tossing measure . 204 6.7 Product measures . 207 6.8 Fubini's Theorem . 210 2 CONTENTS Chapter 1 Preliminaries: Proofs, Sets, and Functions Chapters with the word "preliminaries" in the title are never much fun, but they are useful | they provide the reader with the background information necessary to enjoy the main body of the text. This chapter is no exception, but I have tried to keep it short and to the point; everything you find here will be needed at some stage, and most of the material will show up throughout the book. Mathematical analysis is a continuation of calculus, but it is more ab- stract and therefore in need of a larger vocabulary and more precisely defined concepts. You have undoubtedly dealt with proofs, sets, and functions in your previous mathematics courses, but probably in a rather casual way. Now they become the centerpiece of the theory, and there is no way to un- derstand what is going on if you don't have a good grasp of them: The subject matter is so abstract that you can no longer rely on drawings and intuition; you simply have to be able to understand the concepts and to read, create and write proofs. Fortunately, this is not as difficult as it may sound if you have never tried to take proofs and formal definitions seriously before. 1.1 Proofs There is nothing mysterious about mathematical proofs; they are just chains of logically irrefutable arguments that bring you from things you already know to whatever you want to prove. Still there are a few tricks of the trade that are useful to know about. Many mathematical statements are of the form \If A, then B". This simply means that whenever statement A holds, statement B also holds, but not necessarily vice versa. A typical example is: "If n 2 N is divisible by 14, then n is divisible by 7". This is a true statement since any natural 3 4CHAPTER 1. PRELIMINARIES: PROOFS, SETS, AND FUNCTIONS number that is divisible by 14, is also divisible by 7. The opposite statement is not true as there are numbers that are divisible by 7, but not by 14 (e.g. 7 and 21). Instead of \If A, then B", we often say that \A implies B" and write A =) B. As already observed, A =) B and B =) A mean two different things. If they are both true, A and B hold in exactly the same cases, and we say that A and B are equivalent. In words, we say \A if and only if B", and in symbols we write A () B. A typical example is: \A triangle is equilateral if and only if all three angels are 60◦" When we want to prove that A () B, it is often convenient to prove A =) B and B =) A separately. If you think a little, you will realize that \A =) B" and \not-B =) not-A" mean exactly the same thing | they both say that whenever A happens, so does B. This means that instead of proving \A =) B", we might just a well prove \not-B =) not-A". This is called a contrapositive proof, and is convenient when the hypothesis \not-B" gives us more to work on than the hypothesis \A". Here is a typical example. Proposition 1.1.1 If n2 is an even number, so is n. Proof: We prove the contrapositive statement: "If n is odd, so is n2": If n is odd, it can be written as n = 2k + 1 for a nonnegative integer k. But then n2 = (2k + 1)2 = 4k2 + 4k + 1 = 2(2k2 + 2k) + 1 which is clearly odd. 2 It should be clear why a contrapositive proof is best in this case: The hy- pothesis \n is odd" is much easier to work with than the original hypothesis \n2 is even". A related method of proof is proof by contradiction or reductio ad ab- surdum. In these proofs, we assume the opposite of what we want to show, and prove that this leads to a contradiction. Hence our assumption must be false, and the original claim is established. Here is a well-known example. p Proposition 1.1.2 2 is an irrational number. p Proof: We assume for contradiction that 2 is rational. This means that p m 2 = n for natural numbers m and n. By cancelling as much as possible, we may assume that m and n have no common factors. 1.1. PROOFS 5 If we square the equality above and multiply by n2 on both sides, we get 2n2 = m2 This means that m2 is even, and by the previous proposition, so is m. Hence m = 2k for some natural number k, and if we substitute this into the last formula above and cancel a factor 2, we see that n2 = 2k2 This means that n2 is even, and by the previous proposition n is even. Thus we have proved that both m and n are even, which is impossible as we as- sumedp that they have no common factors. This means thatp the assumption that 2 is rational leads to a contradiction, and hence 2 must be irra- tional. 2 Let me end this section by reminding you of a technique you have cer- tainly seen before, proof by induction. We use this technique when we want to prove that a certain statement P (n) holds for all natural num- bers n = 1; 2; 3;:::. A typical statement one may want to prove in this way, is n(n + 1) P (n) : 1 + 2 + 3 + ··· + n = 2 The basic observation behind the technique is: 1.1.3 (Induction Principle) Assume that P (n) is a statement about nat- ural numbers n = 1; 2; 3;:::. Assume that the following two conditions are satisfied: (i) P (1) is true (ii) If P (k) is true for a natural number k, then P (k + 1) is also true. Then P (n) holds for all natural numbers n. Let us see how we can use the principle to prove that n(n + 1) P (n) : 1 + 2 + 3 + ··· + n = 2 holds for all natural numbers n. First we check that the statement holds for n = 1: In this case the formula says 1 · (1 + 1) 1 = 2 which is obviously true. Assume now that P (k) holds for some natural number k, i.e. k(k + 1) 1 + 2 + 3 + ··· + k = 2 6CHAPTER 1. PRELIMINARIES: PROOFS, SETS, AND FUNCTIONS We then have k(k + 1) (k + 1)(k + 2) 1 + 2 + 3 + ··· + k + (k + 1) = + (k + 1) = 2 2 which means that P (k + 1) is true. By the Induction Principle, P (n) holds for all natural numbers n. Exercises for Section 1.1 1. Assume that the product of two integers x and y is even. Show that at least one of the numbers is even. 2. Assume that the sum of two integers x and y is even. Show that x and y are either both even or both odd. 2 3. Show that if n is a natural number suchp that n is divisible by 3, then n is divisible by 3. Use this to show that 3 is irrational. 1.2 Sets and boolean operations In the systematic development of mathematics, set is usually taken as the fundamental notion from which all other concepts are developed.
Recommended publications
  • Metric Geometry in a Tame Setting
    University of California Los Angeles Metric Geometry in a Tame Setting A dissertation submitted in partial satisfaction of the requirements for the degree Doctor of Philosophy in Mathematics by Erik Walsberg 2015 c Copyright by Erik Walsberg 2015 Abstract of the Dissertation Metric Geometry in a Tame Setting by Erik Walsberg Doctor of Philosophy in Mathematics University of California, Los Angeles, 2015 Professor Matthias J. Aschenbrenner, Chair We prove basic results about the topology and metric geometry of metric spaces which are definable in o-minimal expansions of ordered fields. ii The dissertation of Erik Walsberg is approved. Yiannis N. Moschovakis Chandrashekhar Khare David Kaplan Matthias J. Aschenbrenner, Committee Chair University of California, Los Angeles 2015 iii To Sam. iv Table of Contents 1 Introduction :::::::::::::::::::::::::::::::::::::: 1 2 Conventions :::::::::::::::::::::::::::::::::::::: 5 3 Metric Geometry ::::::::::::::::::::::::::::::::::: 7 3.1 Metric Spaces . 7 3.2 Maps Between Metric Spaces . 8 3.3 Covers and Packing Inequalities . 9 3.3.1 The 5r-covering Lemma . 9 3.3.2 Doubling Metrics . 10 3.4 Hausdorff Measures and Dimension . 11 3.4.1 Hausdorff Measures . 11 3.4.2 Hausdorff Dimension . 13 3.5 Topological Dimension . 15 3.6 Left-Invariant Metrics on Groups . 15 3.7 Reductions, Ultralimits and Limits of Metric Spaces . 16 3.7.1 Reductions of Λ-valued Metric Spaces . 16 3.7.2 Ultralimits . 17 3.7.3 GH-Convergence and GH-Ultralimits . 18 3.7.4 Asymptotic Cones . 19 3.7.5 Tangent Cones . 22 3.7.6 Conical Metric Spaces . 22 3.8 Normed Spaces . 23 4 T-Convexity :::::::::::::::::::::::::::::::::::::: 24 4.1 T-convex Structures .
    [Show full text]
  • Analysis in Metric Spaces Mario Bonk, Luca Capogna, Piotr Hajłasz, Nageswari Shanmugalingam, and Jeremy Tyson
    Analysis in Metric Spaces Mario Bonk, Luca Capogna, Piotr Hajłasz, Nageswari Shanmugalingam, and Jeremy Tyson study of quasiconformal maps on such boundaries moti- The authors of this piece are organizers of the AMS vated Heinonen and Koskela [HK98] to axiomatize several 2020 Mathematics Research Communities summer aspects of Euclidean quasiconformal geometry in the set- conference Analysis in Metric Spaces, one of five ting of metric measure spaces and thereby extend Mostow’s topical research conferences offered this year that are work beyond the sub-Riemannian setting. The ground- focused on collaborative research and professional breaking work [HK98] initiated the modern theory of anal- development for early-career mathematicians. ysis on metric spaces. Additional information can be found at https://www Analysis on metric spaces is nowadays an active and in- .ams.org/programs/research-communities dependent field, bringing together researchers from differ- /2020MRC-MetSpace. Applications are open until ent parts of the mathematical spectrum. It has far-reaching February 15, 2020. applications to areas as diverse as geometric group the- ory, nonlinear PDEs, and even theoretical computer sci- The subject of analysis, more specifically, first-order calcu- ence. As a further sign of recognition, analysis on met- lus, in metric measure spaces provides a unifying frame- ric spaces has been included in the 2010 MSC classifica- work for ideas and questions from many different fields tion as a category (30L: Analysis on metric spaces). In this of mathematics. One of the earliest motivations and ap- short survey, we can discuss only a small fraction of areas plications of this theory arose in Mostow’s work [Mos73], into which analysis on metric spaces has expanded.
    [Show full text]
  • Metric Spaces We Have Talked About the Notion of Convergence in R
    Mathematics Department Stanford University Math 61CM – Metric spaces We have talked about the notion of convergence in R: Definition 1 A sequence an 1 of reals converges to ` R if for all " > 0 there exists N N { }n=1 2 2 such that n N, n N implies an ` < ". One writes lim an = `. 2 ≥ | − | With . the standard norm in Rn, one makes the analogous definition: k k n n Definition 2 A sequence xn 1 of points in R converges to x R if for all " > 0 there exists { }n=1 2 N N such that n N, n N implies xn x < ". One writes lim xn = x. 2 2 ≥ k − k One important consequence of the definition in either case is that limits are unique: Lemma 1 Suppose lim xn = x and lim xn = y. Then x = y. Proof: Suppose x = y.Then x y > 0; let " = 1 x y .ThusthereexistsN such that n N 6 k − k 2 k − k 1 ≥ 1 implies x x < ", and N such that n N implies x y < ". Let n = max(N ,N ). Then k n − k 2 ≥ 2 k n − k 1 2 x y x x + x y < 2" = x y , k − kk − nk k n − k k − k which is a contradiction. Thus, x = y. ⇤ Note that the properties of . were not fully used. What we needed is that the function d(x, y)= k k x y was non-negative, equal to 0 only if x = y,symmetric(d(x, y)=d(y, x)) and satisfied the k − k triangle inequality.
    [Show full text]
  • Distance Metric Learning, with Application to Clustering with Side-Information
    Distance metric learning, with application to clustering with side-information Eric P. Xing, Andrew Y. Ng, Michael I. Jordan and Stuart Russell University of California, Berkeley Berkeley, CA 94720 epxing,ang,jordan,russell ¡ @cs.berkeley.edu Abstract Many algorithms rely critically on being given a good metric over their inputs. For instance, data can often be clustered in many “plausible” ways, and if a clustering algorithm such as K-means initially fails to find one that is meaningful to a user, the only recourse may be for the user to manually tweak the metric until sufficiently good clusters are found. For these and other applications requiring good metrics, it is desirable that we provide a more systematic way for users to indicate what they con- sider “similar.” For instance, we may ask them to provide examples. In this paper, we present an algorithm that, given examples of similar (and, if desired, dissimilar) pairs of points in ¢¤£ , learns a distance metric over ¢¥£ that respects these relationships. Our method is based on posing met- ric learning as a convex optimization problem, which allows us to give efficient, local-optima-free algorithms. We also demonstrate empirically that the learned metrics can be used to significantly improve clustering performance. 1 Introduction The performance of many learning and datamining algorithms depend critically on their being given a good metric over the input space. For instance, K-means, nearest-neighbors classifiers and kernel algorithms such as SVMs all need to be given good metrics that
    [Show full text]
  • 5.2. Inner Product Spaces 1 5.2
    5.2. Inner Product Spaces 1 5.2. Inner Product Spaces Note. In this section, we introduce an inner product on a vector space. This will allow us to bring much of the geometry of Rn into the infinite dimensional setting. Definition 5.2.1. A vector space with complex scalars hV, Ci is an inner product space (also called a Euclidean Space or a Pre-Hilbert Space) if there is a function h·, ·i : V × V → C such that for all u, v, w ∈ V and a ∈ C we have: (a) hv, vi ∈ R and hv, vi ≥ 0 with hv, vi = 0 if and only if v = 0, (b) hu, v + wi = hu, vi + hu, wi, (c) hu, avi = ahu, vi, and (d) hu, vi = hv, ui where the overline represents the operation of complex conju- gation. The function h·, ·i is called an inner product. Note. Notice that properties (b), (c), and (d) of Definition 5.2.1 combine to imply that hu, av + bwi = ahu, vi + bhu, wi and hau + bv, wi = ahu, wi + bhu, wi for all relevant vectors and scalars. That is, h·, ·i is linear in the second positions and “conjugate-linear” in the first position. 5.2. Inner Product Spaces 2 Note. We can also define an inner product on a vector space with real scalars by requiring that h·, ·i : V × V → R and by replacing property (d) in Definition 5.2.1 with the requirement that the inner product is symmetric: hu, vi = hv, ui. Then Rn with the usual dot product is an example of a real inner product space.
    [Show full text]
  • Learning a Distance Metric from Relative Comparisons
    Learning a Distance Metric from Relative Comparisons Matthew Schultz and Thorsten Joachims Department of Computer Science Cornell University Ithaca, NY 14853 schultz,tj @cs.cornell.edu Abstract This paper presents a method for learning a distance metric from rel- ative comparison such as “A is closer to B than A is to C”. Taking a Support Vector Machine (SVM) approach, we develop an algorithm that provides a flexible way of describing qualitative training data as a set of constraints. We show that such constraints lead to a convex quadratic programming problem that can be solved by adapting standard meth- ods for SVM training. We empirically evaluate the performance and the modelling flexibility of the algorithm on a collection of text documents. 1 Introduction Distance metrics are an essential component in many applications ranging from supervised learning and clustering to product recommendations and document browsing. Since de- signing such metrics by hand is difficult, we explore the problem of learning a metric from examples. In particular, we consider relative and qualitative examples of the form “A is closer to B than A is to C”. We believe that feedback of this type is more easily available in many application setting than quantitative examples (e.g. “the distance between A and B is 7.35”) as considered in metric Multidimensional Scaling (MDS) (see [4]), or absolute qualitative feedback (e.g. “A and B are similar”, “A and C are not similar”) as considered in [11]. Building on the study in [7], search-engine query logs are one example where feedback of the form “A is closer to B than A is to C” is readily available for learning a (more semantic) similarity metric on documents.
    [Show full text]
  • Section 20. the Metric Topology
    20. The Metric Topology 1 Section 20. The Metric Topology Note. The topological concepts you encounter in Analysis 1 are based on the metric on R which gives the distance between x and y in R which gives the distance between x and y in R as |x − y|. More generally, any space with a metric on it can have a topology defined in terms of the metric (which is ultimately based on an ε definition of pen sets). This is done in our Complex Analysis 1 (MATH 5510) class (see the class notes for Chapter 2 of http://faculty.etsu.edu/gardnerr/5510/notes. htm). In this section we define a metric and use it to create the “metric topology” on a set. Definition. A metric on a set X is a function d : X × X → R having the following properties: (1) d(x, y) ≥ 0 for all x, y ∈ X and d(x, y) = 0 if and only if x = y. (2) d(x, y)= d(y, x) for all x, y ∈ X. (3) (The Triangle Inequality) d(x, y)+ d(y, z) ≥ d(x, z) for all x, y, z ∈ X. The nonnegative real number d(x, y) is the distance between x and y. Set X together with metric d form a metric space. Define the set Bd(x, ε)= {y | d(x, y) < ε}, called the ε-ball centered at x (often simply denoted B(x, ε)). Definition. If d is a metric on X then the collection of all ε-balls Bd(x, ε) for x ∈ X and ε> 0 is a basis for a topology on X, called the metric topology induced by d.
    [Show full text]
  • Contraction Principles in $ M S $-Metric Spaces
    Contraction Principles in Ms-metric Spaces N. Mlaiki1, N. Souayah2, K. Abodayeh3, T. Abdeljawad4 Department of Mathematical Sciences, Prince Sultan University1,3,4 Department of Natural Sciences, Community College, King Saud University2 Riyadh, Saudi Arabia 11586 E-mail: [email protected] [email protected] [email protected] [email protected] Abstract In this paper, we give an interesting extension of the partial S-metric space which was introduced [4] to the Ms-metric space. Also, we prove the existence and uniqueness of a fixed point for a self mapping on an Ms-metric space under different contraction principles. 1 Introduction Many researchers over the years proved many interesting results on the existence of a fixed point for a self mapping on different types of metric spaces for example, see ([2], [3], [5], [6], [7], [8], [9], [10], [12], [17], [18], [19].) The idea behind this paper was inspired by the work of Asadi in [1]. He gave a more general extension of almost any metric space with two dimensions, and that is not just by defining the self ”distance” in a metric as in partial metric spaces [13, 14, 15, 16, 11], but he assumed that is not necessary that the self ”distance” is arXiv:1610.02582v1 [math.GM] 8 Oct 2016 less than the value of the metric between two different elements. In [4], an extension of S-metric spaces to a partial S-metric spaces was introduced. Also, they showed that every S-metric space is a partial S-metric space, but not every partial S- metric space is an S-metric space.
    [Show full text]
  • The Duality of Similarity and Metric Spaces
    applied sciences Article The Duality of Similarity and Metric Spaces OndˇrejRozinek 1,2,* and Jan Mareš 1,3,* 1 Department of Process Control, Faculty of Electrical Engineering and Informatics, University of Pardubice, 530 02 Pardubice, Czech Republic 2 CEO at Rozinet s.r.o., 533 52 Srch, Czech Republic 3 Department of Computing and Control Engineering, Faculty of Chemical Engineering, University of Chemistry and Technology, 166 28 Prague, Czech Republic * Correspondence: [email protected] (O.R.); [email protected] (J.M.) Abstract: We introduce a new mathematical basis for similarity space. For the first time, we describe the relationship between distance and similarity from set theory. Then, we derive generally valid relations for the conversion between similarity and a metric and vice versa. We present a general solution for the normalization of a given similarity space or metric space. The derived solutions lead to many already used similarity and distance functions, and combine them into a unified theory. The Jaccard coefficient, Tanimoto coefficient, Steinhaus distance, Ruzicka similarity, Gaussian similarity, edit distance and edit similarity satisfy this relationship, which verifies our fundamental theory. Keywords: similarity metric; similarity space; distance metric; metric space; normalized similarity metric; normalized distance metric; edit distance; edit similarity; Jaccard coefficient; Gaussian similarity 1. Introduction Mathematical spaces have been studied for centuries and belong to the basic math- ematical theories, which are used in various real-world applications [1]. In general, a mathematical space is a set of mathematical objects with an associated structure. This Citation: Rozinek, O.; Mareš, J. The structure can be specified by a number of operations on the objects of the set.
    [Show full text]
  • Topological Vector Spaces
    An introduction to some aspects of functional analysis, 3: Topological vector spaces Stephen Semmes Rice University Abstract In these notes, we give an overview of some aspects of topological vector spaces, including the use of nets and filters. Contents 1 Basic notions 3 2 Translations and dilations 4 3 Separation conditions 4 4 Bounded sets 6 5 Norms 7 6 Lp Spaces 8 7 Balanced sets 10 8 The absorbing property 11 9 Seminorms 11 10 An example 13 11 Local convexity 13 12 Metrizability 14 13 Continuous linear functionals 16 14 The Hahn–Banach theorem 17 15 Weak topologies 18 1 16 The weak∗ topology 19 17 Weak∗ compactness 21 18 Uniform boundedness 22 19 Totally bounded sets 23 20 Another example 25 21 Variations 27 22 Continuous functions 28 23 Nets 29 24 Cauchy nets 30 25 Completeness 32 26 Filters 34 27 Cauchy filters 35 28 Compactness 37 29 Ultrafilters 38 30 A technical point 40 31 Dual spaces 42 32 Bounded linear mappings 43 33 Bounded linear functionals 44 34 The dual norm 45 35 The second dual 46 36 Bounded sequences 47 37 Continuous extensions 48 38 Sublinear functions 49 39 Hahn–Banach, revisited 50 40 Convex cones 51 2 References 52 1 Basic notions Let V be a vector space over the real or complex numbers, and suppose that V is also equipped with a topological structure. In order for V to be a topological vector space, we ask that the topological and vector spaces structures on V be compatible with each other, in the sense that the vector space operations be continuous mappings.
    [Show full text]
  • Metric Spaces
    Chapter 1. Metric Spaces Definitions. A metric on a set M is a function d : M M R × → such that for all x, y, z M, Metric Spaces ∈ d(x, y) 0; and d(x, y)=0 if and only if x = y (d is positive) MA222 • ≥ d(x, y)=d(y, x) (d is symmetric) • d(x, z) d(x, y)+d(y, z) (d satisfies the triangle inequality) • ≤ David Preiss The pair (M, d) is called a metric space. [email protected] If there is no danger of confusion we speak about the metric space M and, if necessary, denote the distance by, for example, dM . The open ball centred at a M with radius r is the set Warwick University, Spring 2008/2009 ∈ B(a, r)= x M : d(x, a) < r { ∈ } the closed ball centred at a M with radius r is ∈ x M : d(x, a) r . { ∈ ≤ } A subset S of a metric space M is bounded if there are a M and ∈ r (0, ) so that S B(a, r). ∈ ∞ ⊂ MA222 – 2008/2009 – page 1.1 Normed linear spaces Examples Definition. A norm on a linear (vector) space V (over real or Example (Euclidean n spaces). Rn (or Cn) with the norm complex numbers) is a function : V R such that for all · → n n , x y V , x = x 2 so with metric d(x, y)= x y 2 ∈ | i | | i − i | x 0; and x = 0 if and only if x = 0(positive) i=1 i=1 • ≥ cx = c x for every c R (or c C)(homogeneous) • | | ∈ ∈ n n x + y x + y (satisfies the triangle inequality) Example (n spaces with p norm, p 1).
    [Show full text]
  • Chapter 11 Riemannian Metrics, Riemannian Manifolds
    Chapter 11 Riemannian Metrics, Riemannian Manifolds 11.1 Frames Fortunately, the rich theory of vector spaces endowed with aEuclideaninnerproductcan,toagreatextent,belifted to the tangent bundle of a manifold. The idea is to equip the tangent space TpM at p to the manifold M with an inner product , p,insucha way that these inner products vary smoothlyh i as p varies on M. It is then possible to define the length of a curve segment on a M and to define the distance between two points on M. 541 542 CHAPTER 11. RIEMANNIAN METRICS, RIEMANNIAN MANIFOLDS The notion of local (and global) frame plays an important technical role. Definition 11.1. Let M be an n-dimensional smooth manifold. For any open subset, U M,ann-tuple of ✓ vector fields, (X1,...,Xn), over U is called a frame over U i↵(X1(p),...,Xn(p)) is a basis of the tangent space, T M,foreveryp U.IfU = M,thentheX are global p 2 i sections and (X1,...,Xn)iscalledaframe (of M). The notion of a frame is due to Elie´ Cartan who (after Darboux) made extensive use of them under the name of moving frame (and the moving frame method). Cartan’s terminology is intuitively clear: As a point, p, moves in U,theframe,(X1(p),...,Xn(p)), moves from fibre to fibre. Physicists refer to a frame as a choice of local gauge. 11.1. FRAMES 543 If dim(M)=n,thenforeverychart,(U,'), since 1 n d'− : R TpM is a bijection for every p U,the '(p) ! 2 n-tuple of vector fields, (X1,...,Xn), with 1 Xi(p)=d''−(p)(ei), is a frame of TM over U,where n (e1,...,en)isthecanonicalbasisofR .SeeFigure11.1.
    [Show full text]