Added the principal logarithm.

This commit is contained in:
Bokuan Li
2026-05-11 16:11:33 -04:00
parent 538a02ba37
commit 4ba2e76b44
11 changed files with 180 additions and 1 deletions

View File

@@ -50,6 +50,12 @@
Let $E, F$ be TVSs over $K \in \RC$ with $F$ being separated, $\sigma \subset \mathfrak{B}(E)$ be a covering ideal, $U \subset E$ be open, and $n \in \natp$, then $D_\sigma^k(U; F)$/$\tilde D_\sigma^k(U; F)$ is the \textbf{space of $n$-fold $\sigma$/$\tilde \sigma$-differentiable functions} from $U$ to $F$.
\end{definition}
\begin{definition}[Space of Continuously Differentiable Functions]
\label{definition:continuously-differentiable-space}
Let $E, F$ be TVSs over $K \in \RC$ with $F$ being separated, $\sigma \subset \mathfrak{B}(E)$ be a covering ideal, $U \subset E$ be open, and $n \in \natp$, then $C_\sigma^k(U; F)$/$\tilde C_\sigma^k(U; F)$ is the \textbf{space of $n$-fold continuously $\sigma$/$\tilde \sigma$-differentiable functions} from $U$ to $F$.
\end{definition}
\begin{theorem}[Symmetry of Higher Derivatives]
\label{theorem:derivative-symmetric-frechet}
Let $E, F$ be Banach spaces, $U \subset E$ be open, $n \in \natp$, and $f: U \to F$ be a function $n$-times Fréchet-differentiable at $x \in U$, then $D^nf(x) \in L^n(E; F)$ is symmetric.

View File

@@ -6,5 +6,6 @@
\input{./mvt.tex}
\input{./higher.tex}
\input{./taylor.tex}
\input{./partial.tex}
\input{./power.tex}
\input{./inverse.tex}

View File

@@ -0,0 +1,61 @@
\section{Partial Derivatives}
\label{section:partial-derivatives}
\begin{definition}[Partial Derivative]
\label{definition:partial-derivative}
Let $E_1, E_2$ be TVSs over $K \in \RC$, $\sigma_1 \subset \mathfrak{B}(E_1)$ and $\sigma_2 \subset \mathfrak{B}(E_2)$ be covering ideals, $F$ be a separated TVS over $K$, $U \subset E_1 \times E_2$ be open, and $f: U \to F$. For each $(x_0, y_0) \in E$, let $f_{x_0}(y) = f(x_0, y)$ and $f_{y_0}(x) = f(x, y_0)$ be the partial maps of $f$. If $f_{x_0}$ is $\tilde \sigma_1$-differentiable for each $x_0$, and $f_{y_0}$ is $\tilde \sigma_2$-differentiable for each $y_0$, then
\[
D_1f: U \to B_{\sigma_1}(E_1; F) \quad (x, y) \mapsto D_{\sigma_1}f_{x}(y)
\]
and
\[
D_2f: U \to B_{\sigma_2}(E_2; F) \quad (x, y) \mapsto D_{\sigma_2}f_{y}(x)
\]
are the \textbf{partial derivatives} of $f$.
\end{definition}
\begin{proposition}
\label{proposition:partial-total-derivative}
Let $E_1, E_2$ be TVSs over $K \in \RC$, $\sigma_1 \subset \mathfrak{B}(E_1)$ and $\sigma_2 \subset \mathfrak{B}(E_2)$ be covering ideals, $F$ be a separated locally convex space over $K$, $U \subset E_1 \times E_2$ be open, $f: U \to F$, and $p \ge 1$, then the following are equivalent:
\begin{enumerate}
\item $f \in \tilde C_{\sigma_1 \otimes \sigma_2}^p(U; F)$.
\item $D_1 f \in \tilde C_{\sigma_1 \otimes \sigma_2}^{p-1}(U; B_{\sigma_1}(E; F))$ and $D_2 f \in \tilde C_{\sigma_1 \otimes \sigma_2}^{p-1}(U; B_{\sigma_2}(E; F))$
\end{enumerate}
If the above holds, then for any $x \in U$ and $(h_1, h_2) \in E_1 \times E_2$,
\[
D_{\sigma_1 \otimes \sigma_2}f(x)(h_1, h_2) = D_1f(x)(h_1) + D_2f(x)(h_2)
\]
\end{proposition}
\begin{proof}
(2) $\Rightarrow$ (1): For each $(x, y) \in U$ and $(h_1, h_2) \in E_1 \times E_2$,
\begin{align*}
f(x + h_1, y + h_2) - f(x, y) &= f(x + h_1, y + h_2) - f(x + h_1, y) \\
&+ f(x + h_1, y) - f(x, y) \\
&= f(x + h_1, y + h_2) - f(x + h_1, y) \\
&+ D_1f(x, y)(h_1) + r_1(h_1)
\end{align*}
where $r_1 \in \mathcal{R}_{\sigma_1}(E_1; F)$. On the other hand, by the \hyperref[Mean Value Theorem]{theorem:mean-value-theorem},
\begin{align*}
&f(x + h_1, y + h_2) - f(x + h_1, y) - Df_2(x, y)(h_2) \\
&\in h_2\ol{\text{Conv}}\bracs{D_2f(x + h_1, y + th_2) - Df_2(x, y)|t \in [0, 1]}
\end{align*}
Since $D_2f$ is continuous and $F$ is locally convex,
\[
f(x + h_1, y + h_2) - f(x + h_1, y) - Df_2(x, y)(h_2) = r_2(h_1, h_2)
\]
where $r_2 \in \mathcal{R}_{\sigma_1 \otimes \sigma_2}(E_1 \times E_2; F)$. Therefore
\begin{align*}
f(x + h_1, y + h_2) - f(x, y) &= D_1f(x, y)(h_1) + D_2f(x, y)(h_2) \\
&+ r_1(h_1) + r_2(h_1, h_2)
\end{align*}
\end{proof}