Notes and selected problem solutions from Real Mathematical Analysis. Supplementing it with Analysis - Mathematics LibreTexts.

1. Real Numbers

Sets and Logic

red

  • Preliminaries:
    • Sets, subsets, singleton set
    • Class, equivalence class ()
  • Language:
    • Quantifiers:
    • Assertions:
    • Rules:
      • quantifiers before assertions
  • Logic:
    • implication:
    • negation:
    • conjunction:

Cuts

Our goal is to define entirely from , and the tool that we use to define real numbers is Dedekind cuts.

  • Why does has gaps?
  • Define what is a cut, A|B.
  • Least upper bound property for ℝ. Why is LUB property needed for ℝ?
  • Why set ℝ is complete?
  • Arithmetic on cuts:
    • Define using positive and negative cuts.
    • Lay out the properties like associativity, distributive over addition of using cuts.
  • what is a Field?
  • Why ℝ is an ordered field?
  • why is an ordered subfield of ℝ?
  • uniqueness of ℝ.
  • supremum and infimum of a nonempty subset S of ℝ.

Sequences

  • Convergent sequence
  • Nested Intervals Theorem: Let be non-empty closed intervals such that for all . Then, and If length of intervals converge to zero, then consists of a single point.
  • Bolzano-Weierstrass Theorem: Every bounded sequence has a convergent subsequence.

Cauchy Sequences

Converging sequences can help us to prove again why ℝ is complete.

  • Define Cauchy sequences
    • another way of writing the above sequence relation:
  • Cauchy condition

What helped to understand the difference between Dedekind completeness and Cauchy completeness, is that they both represent different paths to reach to completeness. Dedekind cuts says that “If I cut a line, and define the order between the cuts, can I get an upper bound of the cut?”, and Cauchy convergence says “If I keep zooming in on a swarm of points, can I get the maximum point?“.

Dedekind cuts defines upper bound using order between the elements of the set while Cauchy measure the distance between the elements. Order is not always defined, but metric is defined for some more spaces.

Why does Cauchy sequences help to prove completeness? Because to prove completeness, we need to prove that no holes exist, and converging sequences always approach a limit. If we prove that limit exists in the set, then there is no hole.

Proof.

  1. The condition that we’re trying to prove is R is complete with respect to cauchy sequence iff it obeys Cauchy condition.
  2. ℝ is complete obeys Cauchy condition is straightforward as if the numbers in sequence are arbitrarily close to the limit b, they must be close to each other as well.
  3. We’ll mainly focus on proving the converse, i.e. if a sequence obeys cauchy condition then it converges to a limit in ℝ.
  4. Prove why the sequence is bounded because if the sequence is unbounded like , it will never converge to a limit.
  5. If the sequence is bounded, there must be a subset X in the sequence with infinitely many elements, and using ℝ’s l.u.b property, it has a bound.
  6. Now, our proof boils down to proving the claim that or
  7. We use cauchy condition to fix a limit for some around the LUB. Now, our goal is to find an element from our subset X such that .
  8. We first figure out that there are infinitely many around the pipe , and take any single .
  9. Then, using triangle inequality, we can prove our relation.
  • Every interval in ℝ has infinitely many rational and irrational numbers.
  • Archimedean property
  • ε-principle

Euclidean Space

  • Cauchy-Schwarz inequality
  • Why unit ball is a Convex set?

Cardinality

  • Cardinality of a set
  • Bijection means equal cardinality
  • Denumerable: and Uncountable
  • Why ℝ is uncountable?
  • Prove the following for denumerable sets:
    • Each infinite set contains a denumerable subset
    • subset of denumerable set is denumerable
    • is denumerable
    • cartesian product of denumerable set is denumerable
    • union of denumerable sets is denumerable
    • is denumerable
  • Prove the following for countable sets:
    • subset and cartesian product and union of countable set is countable
    • countable set that contains a denumerable subset is denumerable

Schroeder-Bernstein Theorem: If A,B are sets and f: AB and g: BA are injections, then there exists a bijection h: AB.

Continuous Functions

  • definition of real-valued continuous function,
\usepackage{pgfplots}
\begin{document}
  \begin{tikzpicture}
    \begin{axis}[
        width=12cm,
        height=8cm,
        axis lines=none,
        grid=both,
        grid style={line width=.1pt, draw=gray!20},
        xmin=-0.5, xmax=10.5,
        ymin=-0.5, ymax=5,
        xtick={0,1,...,10},
        ytick={0,1,...,5},
        xticklabels={},
        yticklabels={},
        clip=false,
      ]
 
      % Parameters for the plot
      \def\x{4}
      \def\deltax{0.8}
      \def\a{1.5}
      \def\b{9}
      \def\fx{1.8}
      \def\eps{0.7}
 
      % Horizontal reference lines (dotted)
      \addplot[dotted, thick, domain=-0.5:10.5] {\fx+\eps};
      \addplot[dotted, thick, domain=-0.5:10.5] {\fx};
      \addplot[dotted, thick, domain=-0.5:10.5] {\fx-\eps};
      \addplot[dotted, thick, domain=-0.5:10.5] {0}; % x-axis
 
      % Vertical reference lines (dotted)
      \draw[dotted, thick] (axis cs:0, -0.5) -- (axis cs:0, 4.5); % y-axis at 0
      \draw[dotted, thick] (axis cs:\a, -0.5) -- (axis cs:\a, 3.5);
      \draw[dotted, thick] (axis cs:\x-\deltax, -0.5) -- (axis cs:\x-\deltax, 4.5);
      \draw[dotted, thick] (axis cs:\x, -0.5) -- (axis cs:\x, 4.5);
      \draw[dotted, thick] (axis cs:\x+\deltax, -0.5) -- (axis cs:\x+\deltax, 4.5);
      \draw[dotted, thick] (axis cs:\b, -0.5) -- (axis cs:\b, 3.5);
 
      % Y-axis Labels
      \node[left] at (axis cs:-0.5, \fx+\eps) {$f(x)+\varepsilon$};
      \node[left] at (axis cs:-0.5, \fx) {$f(x)$};
      \node[left] at (axis cs:-0.5, \fx-\eps) {$f(x)-\varepsilon$};
 
      % X-axis Labels
      \node[below left] at (axis cs:0, 0) {$0$};
      \node[below left] at (axis cs:\a, 0) {$a$};
      \node[below] at (axis cs:\x-\deltax, 0) {$x-\delta$};
      \node[below] at (axis cs:\x, 0) {$x$};
      \node[below] at (axis cs:\x+\deltax, 0) {$x+\delta$};
      \node[below right] at (axis cs:\b, 0) {$b$};
 
      % Dots on axes
      \fill (axis cs:0, \fx) circle (2pt);
      \fill (axis cs:0, 0) circle (2pt);
      \fill (axis cs:\a, 0) circle (2pt);
      \fill (axis cs:\x, 0) circle (2pt);
      \fill (axis cs:\b, 0) circle (2pt);
 
      % The curve f (manually styled to match Figure 19)
      \addplot[thick, smooth, tension=0.7] coordinates {
          (\a, 2.0)
          (2.5, 3.8)
          (3.4, 2.2) % enters epsilon band
          (\x, \fx)
          (4.5, 1.3) % stays in band
          (5.5, 3.0) % exits band
          (7.0, 4.5) % high peak
          (8.2, 1.8)
          (\b, 0.8)
        };
 
      % Annotations for 2 delta and 2 epsilon
      \node at (axis cs:\x, 4.8) {$2\delta$};
      \node[right] at (axis cs:9.5, \fx) {$2\varepsilon$};
 
    \end{axis}
  \end{tikzpicture}
\end{document}

Boundedness Theorem: Prove why values of a continuous function form a bounded subset of ℝ.

Intuition: Create a ‘safe space’ around the function. To prove that function is bounded in a domain interval, first create a set in which the function is bounded. Using l.u.b. property of R, the next goal is to expand the set to the whole domain. Use the continuity of the function at lub to first prove that l.u.b. exists inside the safe space and there exists a point beyond lub that’s bounded as well arriving to a contradiction.

Proof.

  1. For , let and . X becomes our safe-space.
  2. X is clearly bounded in R as a x b. Therefore, l.u.b. exists, let c = l.u.b. X b.
  3. Applying continuity of f at c. Let ε = 1, then there exists δ > 0 s.t. for any , |t-c|<δ |f(t) - f(c)| < ε.
  4. For any , is bounded, and then varies in . Since union of bounded sets is bounded, is bounded.
  5. Now, for , f(x) < f(c) + 1, i.e. f(x) is bounded for x > c, contradicting our l.u.b. assumption. Thus c = b.

Extreme Value Theorem: Prove that continuous function defined on an interval takes absolute maximum, minimum values.

Intuition: Using a proof strategy similar as above, Let M be the l.u.b. of all values of f(t) in [a,b]. We know that M exists as f is bounded. Create a safe space in which f attains maximum = M and minimum. Since, space is bounded, lub exists = c. assume f(c) < M. Choose any ε < M - f(c) and apply continuity at c, prove that c exists in the safe space set. Now, find a t > c such that f(t) < M, arriving to contradiction that c is l.u.b, proving c = b. This implies all values of f in [a, b] is less than M, but M exists. This proves that f(c) = M.

Intermediate Value Theorem: A continuous function attains all intermediate values in an interval.

Exercises

    1. Take any irrational cuts such that their sum adds up to a rational number. Let’s take x=A|B=√2 and y=A’|B’=-√2. and . Writing B+B’ with the cases, it won’t have a smallest element. Thus .
    1. Prove for n = 2 by choosing ε appropriately. Proceeding with induction, assume k true, .
    1. g.l.b. of a set X is such that any and any lower bound in R is smaller than g.l.b. Any bounded set in R from below must have g.l.b. We will show that any set that have a l.u.b, another set in R have a g.l.b. equal to l.u.b and vice-versa. So, lub(-A) = glb(A), and lub(A) = glb(-A).
    1. b)
\usepackage{pgfplots}
\begin{document}
  \begin{tikzpicture}
    \begin{axis}[
        axis lines=middle,
        xlabel={$x$},
        ylabel={$y$},
        domain=0:4,
        samples=100,
        ymin=-0.5, ymax=5,
        xmin=-0.5, xmax=4.5,
        width=12cm, height=8cm,
      ]
 
      % Shade the epigraph
      \addplot[fill=blue!20, draw=none, domain=0:4] {(x-2)^2 + 0.5} \closedcycle;
 
      % Draw the convex function
      \addplot[thick, blue, domain=0:4] {(x-2)^2 + 0.5};
 
      % Draw a line segment between two points to show convexity
      \addplot[thick, red, dashed] coordinates {(1, 1.5) (3.5, 2.75)};
 
      % Mark the midpoint on the line
      \addplot[mark=*, green!60!black] coordinates {(2.25, 2.125)};
      \addplot[mark=none, green!60!black, dashed] coordinates {(2.25, 2.125) (2.25, 0.5625)};
 
      % Mark the actual function value at midpoint
      \addplot[mark=*, blue] coordinates {(2.25, 0.5625)};
 
      % Annotation
      \addlegendentry{$f(x) = (x-2)^2 + 0.5$}
      \node at (axis cs:2, 3.5) {Epigraph $S = \{(x,y): f(x) \leq y\}$};
      \node at (axis cs:2.25, 2.5) [green!60!black] {Chord};
      \node at (axis cs:1.2, 1) {$f$ lies below chord};
 
    \end{axis}
  \end{tikzpicture}
\end{document}
    1. First prove that A is non-empty since f is continuous at a, and bounded a A(δ) b. Thus, c = l.u.b. exists. Now, our goal is to extend A from c to a point beyond it, and prove that b = c. Apply continuity of f at c, let ε/2 > 0, then for any x in [a, c], there exists δ₀ > 0, |x - c| < δ₀ |f(x) - f(c)| < ε/2. Fix a . This point is < c, thus u₀ is in A. Apply A(δ₁) at u₀, if x,t in [a,u₀] and |x-t|<δ₁/2 |f(x) - f(t)| < ε.
    • Choose δ = min{δ₀/2,δ₁}. Extending our interval beyond c, let u = c + δ₀/2. Then, our goal is to prove A(δ) exists at u.
    • Take two cases: 1. x, t u₀. Proven trivially by using that u₀ in A.
    • second case: one of x, t > u₀. let x > u₀, x - c < δ₀/2 < δ |f(x) - f(c)| < ε/2. similarly for f(t). Then, |f(x) - f(t)| |f(x) - f(c)| + |f(c) - f(t)| < ε/2 + ε/2 < ε.
    • Hence, u in A as well. contradicting our lub assumption. Thus, c = b.
    1. a) limsup exists because the sequence s_n = sup {a_k: k>=n} is decreasing and bounded. b) if , then sequence is not bounded above, hence equal to infinity. c) . d) for unequal, take sequences that oscillate on opposite ends. (-1)^n and (-1)^n+1. for equality, 1/n and 1/n+1. f)

Takeaways

  • 9: learned how to define irrational cuts. I was just making wrong assumptions with the definition.
  • Problem 30 taught me about squeeze theorem argument, and how there’s multiple different solutions possible for a single problem. I can also solve the problem using ε-δ argument.
  • Important approximations
    • Triangle inequality:
    • Reverse triangle inequality:
    • Cauchy-Schwarz:
    • geometric series sum
    • taylor series approximation

Shifted focus from Pugh's analysis to Libretext's Introduction to Mathematical Analysis by Laffariere et. al. and Principles of Mathematical Analysis a.k.a. Baby Rudin.

Pugh’s textbook is not for someone who’s taking a first course in Real analysis, and if this is the first time they’re introduced to concepts of ε−δ, convergent sequences, cantor sets, function spaces, etc. This was all really new to me, and Pugh expects you to derive major results as exercises, and It was beyond my current problem solving ability. So decided to take a different route, and first learn elementary analysis. Using Rudin exercises notes from George M. Bergman to find good exercises to solve.

Principles of Mathematical Analysis

Ch2: Basic Topology

  • Metric space. Properties of metric space.
  • For a set A, definition:
    • limit point :
    • isolated point
    • closed set: Every limit point of subset is in the set.
    • interior point :
    • open set: Every point is an interior point.
    • perfect set: Set is closed, and every point is a limit point.
    • bounded set
    • dense set:
  • E’ is the set of all limit points of E. Closure of set E is the set
  • compact subset of metric space is closed.
  • closed subset of compact set is compact.
  • Intersection of finite collection of compact subsets of a metric space is non-empty, i.e. .
  • every k-cell is compact.
  • for a set E in ℝᵏ, Prove why following is equivalent.
    • E is closed and bounded.
    • E is compact.
    • Every infinite subset of E contains a limit point in E.
  • Proving why non-empty perfect set is uncountable.
  • Proving why Cantor set is perfect.
  • Separated set, connected set.
  • Prove why subset of real line is connected iff the interval (x, y) has z in the subset when x < z < y.

Remarks

  • A finite set has no limit point.
    • A finite set in R is always closed.
  • Q: If a set is infinitely long, does it always have a limit point?
    • No. It doesn’t have a limit point.
    • Every bounded set has a limit point.
  • Q: set of rational or irrational numbers: Is it open or closed?
    • Both are neither closed nor open.
  • Closed and boundedness implies compactness is only true for , and not true for all metric spaces.

Exercises

    1. Consider a three limit points: 0, 1, 2. Consider sequence A = (1 + 1/n), B = (2 + 1/n), C = (3 + 1/n), and union of A, B, C is bounded and with three limit points.
    1. Yes, every point of an open set is an interior point, and every interior point is a limit point of the set. For closed sets, it’s not true. Consider a finite set {x, y}, it’s closed, but is not a limit point.
    1. f) Consider the set . Write out .
  • 12, 13. Form a finite subcover of the sequence and 0. From the definition, K is compact. For 13, form a similar subcover for some countable set of limit points.
    1. E is clearly bounded between and . To show that E is closed, every limit point in E is in E. and E is not compact because there is no finite subcover for the set. E is also open, because intersection of open intervals is open.
    • a) If A, B are closed sets, then and . Since both are disjoint, .
    • b) We’ll prove why . Suppose, it’s not an empty set, then some implies x is a limit point, and some neighborhood of x has . Since, , that means, , and there exists a neighborhood N that is entirely in B. Then and q must be in N. Which leads to contradiction.
    • c) Approach is similar to b). Prove both sets are open, and use b).
    • d) Our goal is to prove that any connected metric space between two points p, r is uncountable using c). Create two sets similar to c) A, B. We know that A, B are separated. Assume X is countable, then if we can prove , then that we will arrive at contradiction. Let X = x1, x2, …, then is countable. But is a real number, then there must be a the set of distances. Hence, . But X is connected, this is a contradiction.
    1. Use the hint to create a set of rational coordinations: . First prove, the set is countable. Then, prove that it’s dense subset of . Since , it’s separable.
    1. Use the hint to create a neighborhood of rational radii on every point of the countable dense subset . First prove that set of neighborhoods are countable. This means, they can form a base. Now, take any open set G, and any point , By the definition of dense subset, x is either in S or a limit point of S. If x is a limit point, then by the definition of limit points, a point in S is in every neighborhood of x, thus taking any rational neighborhood on s, must be inside the neighborhood.
    1. Use the hint to create a neighborhood of radius 1/n: for every integer n, on all points of K. Every neighborhood is an open set, and union of neighborhood is an open set. . Since K is compact, for any open cover, there exists a finite subcover for K. Thus, there is a finite subcover for the neighborhoods.

Ch3: Sequences and Series

Sequences

  • Convergent sequences
    • Limit is unique
    • are bounded
    • has a limit point
  • arithmetic on convergent sequences (): , , ,
  • Comparison between sequences
  • Subsequences
    • Bolzano-Weirestrass theorem: Every bounded sequence has a convergent subsequence.
  • Cauchy sequences
    • Nested Intervals Theorem: Sequence of nested compact sets , then , and if , then consists of single point.
    • Convergent sequences are cauchy.
    • For a compact metric space, cauchy sequence converges.
    • Cauchy sequence of real numbers converges.
  • Monotonic sequences
    • Bounded monotonic sequences converges.
  • limit of unbounded sequences, i.e. , then for every real M, there exists such that for every n >= N implies . Similarly for case.
  • Limit superior: and limit inferior: .
    • Let be a sequence, and , then for any , . and there exists a subsequence that converge to the limit.

Series

  • Series: . Series converges implies .
    • Convergence: For every ε > 0, there exists N ∈ ℕ such that for all n >= N, .
  • Comparison theorem: . converges implies converges. Similarly for divergence.
    • Subsequence comparison: and .
  • Root and ratio tests
    • Given and . then a < 1, series converge. a > 1, series diverge.
    • Given and . then a < 1, series converge. a > 1, series diverge.
  • Power series:
  • Summation by parts: Given two sequences : .
  • Absolute convergence is when converges.
    • Addition and multiplication of series
    • Suppose converges absolutely, and and , then .

Remarks

  • . Prove

Exercises

Ch4: Continuity

  • limits of Functions
    • Sequential limit of functions
    • Limit theorems (f+g, fg, f/g)
  • Continuous functions
    • If D is compact and f is continuous, then f(D) is compact.
    • Extreme Value Theorem
    • Intermediate Value Theorem
    • D is compact, and f is one-to-one mapping, then is a continuous mapping.
  • Continuity and Compactness implies Uniform continuity
    • f is uniformly continuous on open interval, iff it can be extended to continuous function on closure of the interval.
  • Continuity and Connectedness implies f(X) is connected.
  • Left and right limit of f. Discontinuities f(x-) != f(x+)
  • Monotonic functions
  • Limit superior and Limit inferior
    • limsup f(x) = l implies
      • for every ε>0, f(x) < l+ε in the neighborhood
      • for every ε>0, and for every δ>0, there exists s.t.
  • Lower and Upper Semicontinuity: definition
    • If f is l.s.c, then f has an absolute minima.
    • Let . f is l.s.c. in X iff is closed in X for every a ∈ ℝ.

Remarks

  • Let E be noncompact set in R:
    • find a unbounded continuous function on E.
    • find bounded and continuous function with no maxima.
    • let E be bounded, find a continuous function but not uniformly continuous.
  • let f be monotonic function in (a,b). Then f is discontinuous at atmost countable points.
  • let f be uniformly continuous on I and g be continuous on f(I), then give example why g(f) is not uniformly continuous.

Exercises

    • a) implies inf d(x,z) = 0, which implies d(z, z) = 0 or x is a limit point of E. This means x is in closure of E. Now, let x in closure, that means x is in E or a limit point of E. In both cases, inf d(x, z) = 0.
    • b) Using the hint, let ε > 0, consider x,y in X such that d(x,y) < ε, and choose δ such that |x-y| < δ.
      • Now, consider .
      • Similarly .
      • Using triangle inequality, .
      • , because for any z, we can consider z such that is infimum.
      • . Hence, is UC.
    • a) Using the hint, first prove that is continuous and positive function. Take any ε > 0, choose x,y such that d(x,y) < δ < ε, then using triangle inequality and infimum definition of . Thus, f is continuous. Since F, and K are disjoint, d(x, f) where x in X, and f in F is always positive and attains a minimum δ. Hence, for any p in K, and q in F, d(p,q) > δ.
    • b) Counterexample for closed disjoint sets is unbounded sets in such that they have same limit point, i.e. and . Both are closed, and disjoint. But when x ∞, there exists no δ such that d(x,y) > δ.
    1. Using 20, we know that is UC, then is continuous in X. and . Hence, . Since A, B are disjoint closed sets, and from 20, on , and on . We can show that V is open by using thereom 4, i.e. is open in , and f is continuous implies is open. Similarly for W. To show that V,W is disjoint, assume , then . Using this, we can show that f is not continuous.
    1. First let’s prove the inequality, by taking , then for x in [a,b]. implies . Taking , and proceeding similarly, we get the right inequality.
    • Using this inequality, we can prove that f is bounded on closed intervals [c,d] ⊂ (a,b). Assume f(c), f(d) is bounded and let . Thus, f(x) - f(c) (x-c)(f(d)-f(c)/(d-c)). Thus, f(x) f(c) + (x-c)k. Hence, lower bound of f = f(c). Similarly, upper bound = f(d).
    • a) Continuity: Using this, we can prove left and right limit at any point in (a,b).
    • b) f is increasing convex on the interval containing g(x), and g is convex, prove is convex. Trivially proven using the definition of increasing and convex function.

Ch5: Differentiation

  • f differentiable at point p. f+g, cf, fg, f/g differentiable at point p.
  • Prove chain rule, f is differentiable at point p and g is differentiable at f(p). Prove .
  • Fermat’s rule: let I be an open interval in R, and f attains local minimum or maximum at p in I, then .
  • Rolle’s theorem, Mean value theorem
  • Cauchy’s theorem: f, g is continuous on , and differentiable at . Then there exists a c in such that .
  • Right and left derivative.
  • IVT for derivatives: , then there exists a such that .
  • Inverse Function Theorem: Let f be differentiable on open interval, and f’(x) != 0 for all x in (a,b).
    • Then f is 1-1 on open interval I, and f(I) is open, and the inverse function is differentiable, such that , where f(x)=y.
  • L-Hopital rule: Let f,g be continuous on [a,b] and differentiable at (a,b). Prove that for following conditions:
    • Suppose, for some . Suppose, further such that g’(x) != 0 for all x in .
    • Suppose, are differentiable on the domain, and . Suppose, further such that g’(x) != 0 for all x in .
  • If f is rth order differentiable, then f can be approximated using taylor series as .
    • P approximates f to the order r in the sense that Taylor Remainder R(h)=f(x+h)-P(h) is rth order flat at h=0, i.e. .
    • Taylor polynomial is the only polynomial of degree r with this approximation property.
    • Taylor’s theorem: If f is r+1th order differentiable, then there exists a t in such that , where P is the taylor polynomial, and last term is the taylor remainder.
  • Differentiation of Complex valued function: All theorems for real-valued function (limit, arithmetic of differentiation applies).
  • Differentiation of Vector valued function

Remarks

  • complex valued function for which mean-value theorem doesn’t apply.
  • vector valued function for which mean-value theorem doesn’t apply.

Exercises

    • a) Applying MVT to difference quotient, then there exists cn between an, bn where . Since and . there must exists (using squeeze theorem). so, . Use the definition of differentiation to get the limit.
    • b) If is bounded, then find the bound to . Apply definition of diff to Dn, and find the answer.
    • c) again use MVT and squeeze theorem to find when . then f’ is continuous, that means when .
    1. First see that is not differentiable on even finite closed sets like {0}. So, I need to add either more or take powers. What if i create a function that’s 0 on E, and constant everywhere? In that way, f’(x) will be 0 everywhere, but still defined.
    • or something that smooths out the whole interval like ?
    1. a) Use IVT for differentiation to infer that either f’(x) > 1 or f’(x) < 1. This means, f(x) grows either slowly than g(x) = x or faster. Suppose there is a fixed point at p, after that, f(x) either > x or < x, but never same.
    • b) , find out . For a limit point, this has to equal 0 at some point, but it’s always negative. and f(t)-t != 0.
    • c) Since f’(t) is differentiable, it must be continuous for all real t, we can apply mean value theorem such that . Using this we can prove that sequence is a cauchy sequence by choosing m such that . Then, let be the limit point of the sequence, since f is continuous, . This proves that f has a fixed point.
    1. b) . We can prove that the sequence is bounded below by as applying implies , thus . let limit be l, then for , since f is continuous. Hence, f(l) = 0, since is unique, .
    • c) Applying taylor’s theorem directly yields the inequality.
    • d) Put , and apply the inequality recursively as .
    • e) Fixed point of g implies g(x) = x = x - f(x)/f’(x) f(x) = 0. . Substituting , , i.e. g’(x)0 for x near fixed point.
    1. First see that you can derive the hint, i.e. . Then, use compactness of the interval [a,b] to conclude that finitely open subcovers exist, such that closed set , then we can cover the whole interval using finite closed subsets, and f=0 in each of that interval.
    1. Assume, the function has two solutions: . Applying the inequality . Take h(x) = f1(x)-f2(x). From the problem 26, h(x) is differentiable on [a,b], h(a) = 0, and |h’(x)| = |f1’(x)-f2’(x)|A|h(x)|. Thus, h(x) = 0 for all x in [a,b]. Thus, f1 = f2.

Ch6: Riemann-Stieltjes Integral

  • Riemann Integral definition
  • Riemann-Stieltjes integram definition
    • Q: Why there’s a need for monotone increasing function? What does it represent?
    • .
  • Refinement .
    • .
  • Criteria for Integratability:
  • f is continuous implies f is Riemann integrable.
  • f has finitely many discontinuities, and is continuous at those points, and f is continuous everywhere else. f is Riemann integrable.
    • What if is discontinuous there?
    • What if is discontinuous at infinitely many points?
  • is integrable in [a,b] and bounded by [M,m], and is uniformly continuous in . Then is integrable.
  • Properties of Integral:
    • on [a,b], then f1+f2 is integrable, and .
    • f is integrable on [a,b] and a < c < b, then
  • Unit step function
  • Let be sequence of distinct points in (a,b). , and let f be continuous in [a,b], then .
    • One detail not mentioned is the proof works only for partition like , because is we want each sequence to be used as partition point, so that jumps are discrete, and easier to analyse when doing .
  • Let be monotonically increasing, and on [a,b]. Let f be bounded on the interval, then f is integrable iff is integrable, and .
  • Properties of in Stieltjes Integral
    • When is pure step function, Integral reduces to finite or infinite series.
    • When has integrable derivative, integral reduces to ordinary Riemann Integral.
  • Integration and differentiation: , then F is continuous on [a,b], and if f is continuous at x0, then F’(x0)=f(x0).
  • Fundamental theorem of calculus:
    • What are the required conditions for this?
  • Rectifiable curves
    • Curve:
    • Polygonal length: for a partition P = {x0,…,xn}.
    • Length of the curve: over all partitions.
    • Curve is rectifiable when .
    • Examples: Line segment, circle: for .
    • if is continuous on [a,b], then is rectifiable, and
      • Non-rectifiable curve: sin(1/x). is not continuous on (0,1]
      • TODO: come back to this proof later.

Exercises

    1. a) Let f be integrable, there for every ε > 0, there exists a partition P such that . Then two cases appear, 0 is a point on partition, or 0 is an interior point. For both, U = M = sup f(0+), L = m = inf f(0+). Thus, |f(0+)-f(0)| < e. All other subproblems are done similarly.
    1. Hint gives away the solution entirely :). P is constructed using finitely many intervals , and the total length of the intervals is , so now we can take n to arbitrarily large and reduce the total length < ε. There are finitely many intervals covering C, f is continuous in complement of C, and the set is compact, so f is uniformly continuous. Proceeding as the theorem mentioned, creating the partition as x1,…,xn such that each boundary point of the interval is in it, but no interior point of the interval from Cantor set is part of the partition.
    1. f(x) >= 0, and f decreases monotonically. in the interval for x in [n,n+1], f(n+1) < f(x) < f(n) implies . Summing over all interval, . Using the convergence for both one by one, we can prove the other converges.
    1. Theorem: “Suppose F and G are differentiable functions on , and , and . Suppose exists. Suppose exists, and is finite. Then exists and equals .”
    • To prove this, just put H(x) = F(x)G(x), and apply fundamental theorem of calculus to H’(x). Use the limit existence assumption.
    • For instance part: take F(x) = sinx and G(x) = 1/(1+x).
    1. a) write F(u) = u^p/p + v^q/q - uv. We want to prove F(u) >= 0. Find F’(u), and prove that the point where minima occurs should be greater than 0. b) Applying a) to b) gives the inequality. c) Take RHS by LHS of the inequality, and assume F = f/f_p, where f_p is the right hand side inequality. . Use b).
    1. Using the hint, define the continuous function g(t). g(t) is bounded , where are the supremum and infimum of the interval . Then, to show , i’ll first find the bound on , which should be . This implies , where M = sup|f(x)|. Then applying this to the riemann integral, . Since f is integrable, we can choose partition such that .
    1. a) Solving the integral, and putting m = n+1, gives out the inequality. b) Also solving the integral, cancels out the first s/s-1 term, and the remaining term is equal to integral in (a).

Ch7: Sequences and Series of Functions

  • Sequences of function
  • Pointwise convergence of function: .
  • Sum of the series of function:
  • Uniform convergence:
    • Cauchy’s convergence criterion

uniform-convergence

  • Uniform convergence and Continuity
    • Suppose uniformly on a set E in a metric space. Let x be the limit point, and suppose that . Then, converges, and .
    • Series of continuous function that converges uniformly to f implies f is continuous.
    • To prove converse: i.e. is a sequence of continuous function on set K and converges pointwise to continuous function f. Then uniformly on K.
      • We need two assumption: set K is compact, and .
    • Let be set of all complex-valued, continuous, and bounded functions on domain X, then is a metric space.
      • Define the metric on a function f as supremum of norm:
      • Define .
      • Prove .
      • Prove is a complete metric space.
  • Uniform convergence and Integration
    • on [a,b] and uniformly. Then and .
  • Uniform convergence and differentiation
    • is sequence of continuous and differentiable functions on [a,b] and converges for some point . If converges uniformly, then converges uniformly to function f, and .
  • Equicontinuity
    • Pointwise boundedness
    • Uniform boundedness
    • Does every convergent sequence contains a uniformly convergent subsequence?
    • Definition: Family of function is equicontinuous on set E, whenever d(x,y)<δ, x∈E,y∈E,.
    • What’s the difference between family of function being equicontinuous, and each individual function being uniformly continuous?
    • If is a pointwise bounded sequence of complex functions on a countable set E, then has a subsequence such that converges for every x in E.
    • K is compact, if and converges uniformly in K, then is equicontinuous on K.
    • K compact, is pointwise bounded and equicontinuous on K.
      • a) is uniformly bounded on K
      • b) contains a uniformly convergent subsequence.
      • Q: Why are all three compactness, pointwise boundedness, and equicontinuity needed?
        • If non-compact set is used, then there are no finite open subcovers of the set.
        • if function isn’t pointwise-bounded like , then there’s the function sequence can grow arbitrarily large.
        • without equicontinuity, function is not horizontally bounded.
  • Function approximation by Stone-Weierstrass
  • If f is continuous complex function on [a,b], then there exists a sequence of polynomials Pn such that uniformly on [a,b].
    • Approximating the identity function: Sequence of function such that , and such that uniformly in .
    • Let , where .
    • Above condition implies
    • for . Thus uniformly converges to 0 as
    • We perform convolution of Qn and f, i.e. , to get an approximation, since Qn is an approximation of the identity.
    • We need to prove two things: Pn is a polynomial, and .

Convolution

To take weighted average of a function f in neighborhood of x, we can use a kernel Q(x) such that . Properties of the kernel are: Q takes supremum around t = 0, as t1, Q(x)0.

It helps to visualise the graph for different values of n: Desmos | Graphing Calculator

Proof:

  • Reduce interval from [a,b] to [0,1]. and assume f(0) = f(1) = 0, and f=0 for x outside [0,1]. Then f is uniformly continuous.
  • Consider kernel polynomial sequence , where is chosen so that for n = (1,2,…).
    • This kernel polynomial is used to perform a convolution with f, to obtain a polynomial such that f(x) = Pn(x).
    • As explained earlier, the properties of Qn are: concentrated near 0, and positive, decreases sharply as n increases.
  • Calculate to find the magnitude of normalization factor .
    • This implies that for any δ>0 and , .
  • Now, we perform the convolution on f, .
    • Since f is non-zero in [0,1], then 0 x+t 1 -x t 1-x. Substitute x+t = s.
    • turns out to be a polynomial since is a polynomial in x, and we sum f over all of t.
  • f is also uniformly continuous, then calculate the limit .
  • Divide the interval in three parts: .

Function spaces algebra

  • Family of functions:
  • f,g in A then f+g,fg,cf in A, where c is real.
  • A is Uniformly closed if limit f of all uniformly convergent sequences (fn) in A: fnf.
  • uniform closure B of A: set of all limit functions of all uniformly convergent sequences in A.
  • A is said to be separate points if for every pair of distinct points x1,x2 in A, there exists a function f in A such that .
  • If A separates points on set E, and A vanishes at no point of E. then A contains a function f such that for distinct points x1,x2 and constants c1,c2, f(x1)=c1 and f(x2)=c2.
  • Let A be an algebra of real continuous functions on compact set K. If A separates points on K, and vanishes at no point, then the uniform closure B consists of all real continuous functions on K.
    • Proof is done in four sub-parts:
      1. if
      1. if then and .
      1. Given real continuous function f, and x in K, and ε > 0, there exists a function such that , and .

Remarks

  • Examples of converging sequence of differentiable function whose limit function is not differentiable:
  • Sequence of continuous function converging to a limit that is not continuous: .
  • Nowhere differentiable continuous function: Sawtooth function:
    • and .
    • Prove this function is continuous.
    • Create a uniformly converging series f(x) consisting of . Show that f is continuous.
    • Choose a such that f is not differentiable, i.e.
  • Most continuous functions are nowhere differentiable.

Exercises

    1. In 2, we proved that for fg to converge uniformly, we need both fn,gn to be sequence of bounded functions. So, taking fn to be sequence of unbounded functions like (x+1/n) such that fngn does not converge uniformly.
    1. This function is not defined for x when , i.e. forms a countable set for which f(x) does not converge absolutely. For large values of n, and x > 0 or x < 0, and avoiding countable points, . For x = 0, series diverges.
    • b) for any , , function can be compared with which converges absolutely.
    • c) fails to converge at interval . . Choosing such that , then series fails to converge.
    • d) Yes, f is continuous, by showing that each fn converges uniformly to f, then f is continuous.
    1. which doesn’t converge. Hence, series doesn’t converge absolutely. For uniform convergence in a bounded interval (a,b), . Both 1/n and 1/n2 converges, so the partial sum .
    1. Partial sum of the series converges due to . And for any x != xn, f is continuous because partial sum is continuous is the interval , and partial sum converges uniformly to f, thus f is continuous.
    1. . Converse is false because taking any continuous function but not uniformly continuous function, we can prove that converse does not hold. Like take on set [0,1]. To show that this function converges uniformly to f=0, we need to find n such that is true for all x in [0,1]. but, for x > ne, this doesn’t converge.
    1. This function is discontinuous at all x of form p/q, i.e. when x is rational. and the total jump that occur for f(x) at x = p/q is on n = kq, i.e. . Since Q form a countable dense set, f is Riemann integrable on every bounded interval using theorem 6.10.
    1. a) Using hints, first let’s prove that f is continuous. Take any x between two rationals, r < x < s. Since . Using pointwise convergence at rationals for subsequence, boundedness of subsequence, and continuity of f, . Since subsequence is bounded, we can equate each jump of discontuity with a rational, and thus, there are finitely many discontinuities of f. We can use diagonal argument to find a subsequence that’s pointwise convergent at f for points of discontinuities.
    • b) K is compact, f is uniformly continuous in K. For some , |f(x)-f(y)| < ε. Then, using this , we can find open finite cover of K, and use the same argument as a) to prove that subsequence converges to f in that interval. Then taking maximum of all in all intervals, uniformly.
    1. Using similar approach as 13, Fix ε. Use equicontinuity to find δ such that for all n when |x-y| < δ. Cover K with finitely many neighborhood such that (using compactness). For each , use pointwise convergence to find such that for . choose an N1 such that , and (due to pointwise convergence) and (due to equicontinuity). Set N to be the maximum of all these values, then for any x in K, I can find a nearby center and use the triangle inequality to bound the difference between and by 3ε. This establishes the uniform Cauchy criterion.
    1. Use stone-weirestrass to approximate f with a polynomial. Then .
    1. i can use 6.12 to define a continuous function g such that . And since g is continuous in a compact set, i can use stone-weierstrass to approximate the polynomial g by finding a sequence of polynomials such that , for all x in E. i.e. . Then use triangle inequality to get the desired inequality.
    1. Let’s go through the hint, . Now, using induction, we’ll prove the first identity. Take base case as n=1, 0P1|x|. For n+1, assume n is true, then, . To prove the last identity, we’ll apply the identity for recursively, i.e. . We’ll get the first inequality. To get the last inequality, we’ll need to find the maximum of the expression. Differentiating it, and putting the derivation equal to 0, we get x = 2/n+1. Putting the value in the expression, . Applying the limit, we prove our result.

Ch8: Special Functions

  • Analytic functions are expressed as .
    • Interval of convergence:
    • Smooth functions: Inifinitely differentiable functions.
    • Example of smooth non-analytic function
    • Taylor series of an analytic function, is only possible when the function is smooth.
    • If f converges for |x-a| < R, then we say f is expanded as power series at point x=a.
  • Suppose series converges for |x|< R, and f(x) is defined as the series. Then series converges uniformly in for all ε>0, and f is continuous and differentiable in (-R,R) and .
  • Suppose power series converges, and and , then .
    • Let .
    • Prove: ====. Taking , this equals .
    • ====, when .
      • Ques: Can I do it for another point in the interval? Why is |x| < 1?
  • given double sequence , suppose , and converges, then .
  • Taylor’s theorem: If f(x) = power series and converges in |x| < R. if a < |R|, then f can be expanded at point x=a which converges in |x-a| < R - |a|, and for (|x-a|<R-|a|).
  • Suppose two power series converges to same f in (-R,R), then prove uniqueness of power series. Next result, shows that we can use even weaker assumption.
  • Suppose series converge in segment S = (-R,R). Let E be the set of all x in S such that . If E has a limit point in S, then an=bn for n=0,1,2…

Progress after Rudin