0

Apologies if this question has been asked beforehand, the use of different norms in different (but similar) questions makes it really hard to filter out the relevant ones. Anyway:

Let $C(I)^n$ denote the set of functions $y:\mathbb{R} \rightarrow \mathbb{R}^n$ that are continuous in every coordinate in the open interval $I$ (which is what I take it to be, guessing from the lecture notes). Define the norm

$$||y|| := \max\limits_{i = \{1, \ldots, n\}} \max\limits_{x \in I} |y_i(x)|$$

on this space. To show this is a Banach space, we can rewrite the Cauchy condition as follows:

$$\forall \varepsilon > 0, k,l \geq N(\varepsilon): ||y^{k}-y^{l}|| < \varepsilon \iff \forall i \in \{1,\ldots,n\}, x \in I: |y^{(k)}_i(x)-y^{(l)}_i(x)| < \varepsilon$$

and because $\mathbb{R}$ is a complete space with respect to the norm $|\cdot|$, we know that the sequence $\{y^{(n)}_i(x)\}_{n \in \mathbb{N}}$ converges and we can define the limit functions $y_i$ for each $i \in \{1,\ldots,n\}$ and $y = (y_1,\ldots,y_n)^T$. My goal was to show that $\{y^{(n)}\}_{n \in \mathbb{N}}$ must necessarily converge to $y$ in $C(I)^n$ under this definition, but at the moment it is only pulling the knots in my brain even tighter.

Any help is appreciated!

TheOutZ
  • 1,489
  • 11
  • 22
  • Since you're writing "max" instead of "sup", I guess $I$ is the closed unit interval and not the open one? – Just dropped in Dec 04 '21 at 21:44
  • Yes, that makes sense. However, I took this assertion from an ODE-course where the interval $I$ is apparently the region where a differential equation $y'(x) = f(x,y(x))$ with $x \in I$ is fulfilled, which is why I hastily assumed it must be open. I'm sorry for not mentioning this context in the question. Do you think the notes just assume that we can always restrict the solvable region (which must be open I think) to a closed interval to apply the suggested solution? – TheOutZ Dec 06 '21 at 11:35

1 Answers1

2

Let me start from scratch. Let $I=[0,1]$. We have $C(I)^n:=C(I,\mathbb{R}^n)$, the continuous functions from $I$ to $\mathbb{R}^n$. Each continuous function $I\to\mathbb{R}^n$ can be identified with a $n$-tuple of functions $I\to\mathbb{R}$, namely the coordinate functions; i.e. if $f\in C(I,\mathbb{R}^n)$, then there exist unique continous functions $f_1,\dots,f_n\in C(I,\mathbb{R})$ such that $f(t)=(f_1(t),\dots,f_n(t))$ for all $t\in I$. Conversely, given any $n$-tuple of continous functions $f_1,\dots,f_n\in C(I,\mathbb{R}))$, the function defined by $f(t):=(f_1(t),\dots,f_n(t))$ is a function of $C(I,\mathbb{R}^n)$. We thus have an identification of $C(I,\mathbb{R}^n)$ with $C(I)\times\dots\times C(I)$ ($n$-times) as sets and this identification is easily seen to be linear, so this is an isomorphism of vector spaces.

The norm defined on on $C(I,\mathbb{R}^n)$ is given by $\|f\|=\max_{i=1,\dots,n}\|f_i\|_\infty$, where $f=(f_1,\dots,f_n)$ and for $g\in C(I)$, $\|g\|_\infty:=\max_{x\in I}|g(x)|$. So let's break the problem in 2 easier problems:

  1. Assuming that $(X_1,\|\cdot\|_1),\dots, (X_n,\|\cdot\|_n)$ are Banach spaces, consider their cartesian product $Y:=X_1\times \dots\times X_n$. This is trivially a vector space. Define the norm $\|(x_1,\dots,x_n)\|:=\max_{i=1,\dots,n}\|x_i\|_i$ for all $(x_1,\dots,x_n)\in Y$. Show that $(Y,\|\cdot\|)$ is also a Banach space (i.e. complete). I leave this as an exercise to you, I am pretty sure you can do it (do it for $n=2$ for simplicity, then induction proves it for a general $n$ as well)

  2. Prove that $(C(I),\|\cdot\|_\infty)$ is a Banach space, i.e. complete. But this is standard and well-covered fact, see for example the accepted answer on this post Space of bounded continuous functions is complete (and use the fact that continous functions over a compact set are automatically bounded to apply it to your case).

Combining (1) and (2), what you are trying to prove follows immediately.

  • Thank you, I think I managed to write up a solid proof. Am I right that in (1) I can define the coordinate-wise limit of the Cauchy sequence (that must exist by completeness of the Banach space $X_i$) and then define a function vector with said limits that converges by definition (of the norm)? And is the uniform limit theorem used in (2) to argue that the limit function must be continuous? If so, I am pretty certain my way of thinking is correct. – TheOutZ Dec 06 '21 at 11:44