Kato's inequality and subharmonic function
If $\Delta u=0$ in $\Omega\subset\mathbb{R}^n (n\geq2)$, then for $p>\frac{n-2}{n-1}$, $|Du|^p$ is subharmonic.
Proof:
For $|Du|(x_0)\neq 0$, we have
\begin{align}
\Delta |Du|^p&=p(p-2)|Du|^{p-4}D_kuD_{kj}uD_iuD_{ij}u+p|Du|^{p-2}|D^2u|^2\nonumber\\
&=p|Du|^{p-2}\Big((p-2)\sum_j(\frac{D_iu}{|Du|}D_{ij}u)^2+|D^2u|^2\Big).
\end{align}
Note that
\begin{align}
\sum_j(\frac{D_iu}{|Du|}D_{ij}u)^2=\Big(\frac{Du}{|Du|}\Big)^T(D^2u)^2\frac{Du}{|Du|}
\end{align}
is a quadratic form, and $\Delta u=0$, then we can assume that $D^2u$ is diagonal and $D^2u(x_0)=diag(\lambda_1,\lambda_2,...,\lambda_n)$. It follows that
\begin{align}
\sum_i\lambda_i=0.
\end{align}
Without loss of generality, we assume $|\lambda_n|=\max_i|\lambda_i|$, then
\begin{align}
|D^2u|^2=\sum_{i=1}^n\lambda_i^2\geq\lambda_n^2+ \frac{1}{n-1}(\sum_{i=1}^{n-1}\lambda_i)^2=\frac{n}{n-1}\lambda_n^2
\end{align}
We will show that if $p>\frac{n-2}{n-1}$( In fact, if $n>2$, we may choose $p\geq \frac{n-2}{n-1}$; if $n=2$, $p=\frac{n-2}{n-1}=0$ is a trivial case), then $\Delta|Du|^p\geq 0$. In fact, let $\xi=\frac{Du}{|Du|}$, then
\begin{align}
\Delta |Du|^p&\geq p|Du|^{p-2}\left(\sum_i\lambda_i^2-\frac{n}{n-1}\sum_i\lambda_i^2\xi_i^2\right)\nonumber\\
&\geq p|Du|^{p-2}\left(\frac{n}{n-1}\lambda_n^2-\frac{n}{n-1}\sum_i\lambda_i^2\xi_i^2\right)\nonumber\\
&\geq \frac{np}{n-1}|Du|^{p-2}\left(\lambda_n^2-\sum_i\lambda_n^2\xi_i^2\right)=0.
\end{align}
This completes the proof in the case $|Du(x_0)|\neq 0$. In general case, for any $0<\epsilon\leq 1$, following the argument as above, we can prove that $\Delta (|Du|^2+\epsilon)^{\frac{p}{2}}\geq0$ if $p>\frac{n-2}{n-1}$. Then $(|Du|^2+\epsilon)^{\frac{p}{2}}$ satisfies the mean value inequality. Note that $(|Du|^2+\epsilon)^{\frac{p}{2}}$ is locally uniformly bounded and pointwise converge to $\rightarrow |Du|^p$. By Lebesgue CCT, then $|Du|^p$ is a continuous weakly subharmonic function (in viscosity sense or generalized sense) .
If $p=1$, we have that if $\nabla u(x_0)\neq 0$, then we get the Kato's inequality (this inequality can be generalized to Riemannian manifold, and applied in proof of gradient estimate by S.T.Yau.)
\begin{align}
|D^2u|^2\geq |\nabla|\nabla u||^2.
\end{align}
It follows that $|\nabla u|$ is subharmonic (which has been used in Alt and Caffarelli's paper).
Kato's inequality and subharmonic function的更多相关文章
- 转:详细解说 STL 排序(Sort)
详细解说 STL 排序(Sort) 详细解说 STL 排序(Sort) 作者Winter 详细解说 STL 排序(Sort) 0 前言: STL,为什么你必须掌握 1 STL提供的Sort 算法 1. ...
- cvpr2015papers
@http://www-cs-faculty.stanford.edu/people/karpathy/cvpr2015papers/ CVPR 2015 papers (in nicer forma ...
- 通过百度echarts实现数据图表展示功能
现在我们在工作中,在开发中都会或多或少的用到图表统计数据显示给用户.通过图表可以很直观的,直接的将数据呈现出来.这里我就介绍说一下利用百度开源的echarts图表技术实现的具体功能. 1.对于不太理解 ...
- Every norm is a convex function
https://ipfs.io/ipfs/QmXoypizjW3WknFiJnKLwHCnL72vedxjQkDDP1mXWo6uco/wiki/Convex_function.html Every ...
- jsp中出现onclick函数提示Cannot return from outside a function or method
在使用Myeclipse10部署完项目后,原先不出错的项目,会有红色的叉叉,JSP页面会提示onclick函数错误 Cannot return from outside a function or m ...
- JavaScript function函数种类
本篇主要介绍普通函数.匿名函数.闭包函数 目录 1. 普通函数:介绍普通函数的特性:同名覆盖.arguments对象.默认返回值等. 2. 匿名函数:介绍匿名函数的特性:变量匿名函数.无名称匿名函数. ...
- 在ubuntu16.10 PHP测试连接MySQL中出现Call to undefined function: mysql_connect()
1.问题: 测试php7.0 链接mysql数据库的时候发生错误: Fatal error: Uncaught Error: Call to undefined function mysqli_con ...
- jquery中的$(document).ready(function() {});
当文档载入时执行function函数里的代码, 这部分代码主要声明,页面加载后 "监听事件" 的方法.例如: $(document).ready( $("a") ...
- Function.prototype.toString 的使用技巧
Function.prototype.toString这个原型方法可以帮助你获得函数的源代码, 比如: function hello ( msg ){ console.log("hello& ...
- 转:ORA-15186: ASMLIB error function = [asm_open], error = [1], 2009-05-24 13:57:38
转:ORA-15186: ASMLIB error function = [asm_open], error = [1], 2009-05-24 13:57:38http://space.itpub. ...
随机推荐
- Django-drf-序列化器高级用法之SerializerMethodField
在Drf框架中的serializers.py序列化中, SerializerMethodField字段是一个只读字段.它通过调用附加到的序列化程序类上的方法来获取其值.它可用于将任何类型的数据添加到对 ...
- 解决用flex布局时内容溢出的问题
1,2正常现象如下: 2,点击折叠图标 再点折叠 无图标了 解决:flex:1,width:0 就可以了
- CF1404D 题解
题意 传送门 给定 \(2n\) 个数 \(1,2,\dots,2n\),A 和 B 进行交互,如下规则: A 需要将元素分成 \(n\) 组 \(\texttt{pair}\): B 从每组 \(\ ...
- antd切换主题
{ "name": "my-react-app", "version": "0.1.0", "private& ...
- Svn Linux 启动
svnserve -r -d /svn 后面是svn 安装目录
- Tiup离线安装TIDB集群4.0.16版本
环境:centos7.6 中控机:8.213.8.25(内网) 可用服务器8.213.8.25-8.213.8.29 一.准备 TiUP 离线组件包 方法1:外网下载离线安装包拷贝进内网服务器 在Ti ...
- windows文件夹被占用的解除办法
1.第一步,按下快捷键组合 ctrl alt del,打开任务管理器窗口,点击上方菜单栏中的性能选项. 2. 第二步,在性能页面下找到打开资源监视器按钮并点击. 3. 第三步,进入资源监视器页面,点击 ...
- postman-增加全局环境变量
var jsonData = pm.response.json(); var accessTokenForMip = jsonData.data.access_token; //tests[acces ...
- version libcrypto.so.10 not defined in file libcrypto.so.10 with link time reference
I have installed IC618 latest version. But, after installation when I fire virtuoso I see following ...
- 【杂项】利用CUDA实现tensorflow的gpu加速——以NXP的eIQ Portal Command line环境为例
这是一个针对于eIQ的解决方案,笔者所用显卡是GTX1650 step1:下载CUDA和CuDnn 2022年3月,eIQ所使用tensorflow版本为2.5.0,因此对应CUDA 11.2.0,C ...