杨氏定理

定理叙述

参考百度百科

Young's Theorem: Let \(f\) be a differentiable function of \(n\) variables. If each of the cross-partials \(f_{ij}^{\prime \prime}\) and \(f_{ji}^{\prime \prime}\) exists and is continuous at all points in some open set \(S\) of values of \((x_1, \cdots, x_n)\) then

\(\forall (x_1, \cdots, x_n) \in S, f_{ij}^{\prime \prime}(x_1, \cdots, x_n)=f_{ji}^{\prime \prime}(x_1, \cdots, x_n)\)

定理的证明

Proof for Young's Theorem:

\[\forall (x_1^0, \cdots, x_n^0) \in S
\]
\[f_{ij}^{\prime \prime}(x_1^0, \cdots, x_n^0)=\lim\limits_{x_j\rightarrow x_j^0} \dfrac{ f_{i}^{\prime}(x_1^0, \cdots x_i \cdots x_j \cdots x_n^0)- f_{i}^{\prime}(x_1^0, \cdots x_i \cdots x_j^0 \cdots x_n^0)}{x_j-x_j^0} \\=\lim\limits_{x_j\rightarrow x_j^0} \dfrac{\lim\limits_{x_i\rightarrow x_i^0} \frac{ f(x_1^0, \cdots x_i \cdots x_j \cdots x_n^0)- f(x_1^0, \cdots x_i^0 \cdots x_j \cdots x_n^0)}{x_i-x_i^0} - \lim\limits_{x_i\rightarrow x_i^0} \frac{ f(x_1^0, \cdots x_i \cdots x_j^0 \cdots x_n^0)- f(x_1^0, \cdots x_i^0 \cdots x_j^0 \cdots x_n^0)}{x_i-x_i^0}}{x_j-x_j^0}\\ = \lim\limits_{x_j\rightarrow x_j^0}\lim\limits_{x_i\rightarrow x_i^0} \dfrac{f(x_1^0, \cdots x_i \cdots x_j \cdots x_n^0) + f(x_1^0, \cdots x_i^0 \cdots x_j^0 \cdots x_n^0) - f(x_1^0, \cdots x_i^0 \cdots x_j \cdots x_n^0) - f(x_1^0, \cdots x_i \cdots x_j^0 \cdots x_n^0)}{(x_i-x_i^0)(x_j-x_j^0)}.
\]

similarly,

\[f_{ji}^{\prime \prime}(x_1^0, \cdots, x_n^0)=\lim\limits_{x_j\rightarrow x_j^0}\lim\limits_{x_i\rightarrow x_i^0} \dfrac{f(x_1^0, \cdots x_i \cdots x_j \cdots x_n^0) + f(x_1^0, \cdots x_i^0 \cdots x_j^0 \cdots x_n^0) - f(x_1^0, \cdots x_i^0 \cdots x_j \cdots x_n^0) - f(x_1^0, \cdots x_i \cdots x_j^0 \cdots x_n^0)}{(x_i-x_i^0)(x_j-x_j^0)}.
\]
\[\therefore \forall (x_1, \cdots, x_n) \in S, f_{ij}^{\prime \prime}(x_1, \cdots, x_n)=f_{ji}^{\prime \prime}(x_1, \cdots, x_n).
\]

Young's theorem杨氏定理的更多相关文章

  1. 【翻译】Brewer's CAP Theorem CAP定理

    Brewer's CAP Theorem 原文地址:http://www.julianbrowne.com/article/brewers-cap-theorem Brewer’s (CAP) The ...

  2. Ramsey's_theorem Friendship Theorem 友谊定理

    w https://en.wikipedia.org/wiki/Ramsey's_theorem https://zh.wikipedia.org/wiki/拉姆齐定理 在组合数学上,拉姆齐(Rams ...

  3. Nyquist–Shannon sampling theorem 采样定理

    Nyquist–Shannon sampling theorem - Wikipedia https://en.wikipedia.org/wiki/Nyquist%E2%80%93Shannon_s ...

  4. (多项式)因式分解定理(Factor theorem)与多项式剩余定理(Polynomial remainder theorem)(多项式长除法)

    (多项式的)因式分解定理(factor theorem)是多项式剩余定理的特殊情况,也就是余项为 0 的情形. 0. 多项式长除法(Polynomial long division) Polynomi ...

  5. Kernel Methods (6) The Representer Theorem

    The Representer Theorem, 表示定理. 给定: 非空样本空间: \(\chi\) \(m\)个样本:\(\{(x_1, y_1), \dots, (x_m, y_m)\}, x_ ...

  6. Theorem、Proposition、Lemma和Corollary等的解释与区别

    Theorem:定理.是文章中重要的数学化的论述,一般有严格的数学证明. Proposition:可以翻译为命题,经过证明且interesting,但没有Theorem重要,比较常用. Lemma:一 ...

  7. Wilson's theorem在RSA题中运用

    引言 最近一段时间在再练习数论相关的密码学题目,自己之前对于数论掌握不是很熟练,借此机会先对数论基本的四大定理进行练习 这次的练习时基于Wilson's theorem(威尔逊定理)在RSA题目中的练 ...

  8. Godunov's 定理

    Godunov's theorem 转自Wiki 目录 Godunov's theorem 简介 定理 定理1. 单调保持性(Monotonicity preserving) 定理2. Godunov ...

  9. AI人工智能专业词汇集

    作为最早关注人工智能技术的媒体,机器之心在编译国外技术博客.论文.专家观点等内容上已经积累了超过两年多的经验.期间,从无到有,机器之心的编译团队一直在积累专业词汇.虽然有很多的文章因为专业性我们没能尽 ...

随机推荐

  1. POJ3585 Accumulation Degree (树形DP-二次扫描与换根)

    本题属于不定根的树形DP,若以每个节点为根求解一次,复杂度太高,所以可以用换根的技巧. d[u]表示以u为根向下可以流的最大流量,这个是比较好求的,直接遍历到叶子节点,由子节点信息更新父节点.然后进行 ...

  2. Springboot集成阿里云短信

    目录 1 前言 2 准备工作 2.1 了解流程 2.2 配置信息 2.3 短信签名和模板 2.3.1 签名 2.3.2 模板 2.3.3 存入数据库 3 SDK 4 集成Springboot 4.1 ...

  3. CentOS 8.2 对k8s基础环境配置

    一.基础环境配置 1 IP 修改 机器克隆后 IP 修改,使Xshell连接上 [root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg- ...

  4. IDEA清空控制台以及Java中运行cmd命令实现清屏操作

    IDEA中清空控制台方法 在网上有看到各种的实现方法,比如: Runtime.getRuntime().exec("cls"); 或者: public static void cl ...

  5. session保存作用域

    session保存作用域,作用范围是一次会话. Session的工作机制 当服务器端调用了request.getSession()方法 检查当前请求中是否携带了JSESSIONID这个Cookie 有 ...

  6. Docker_基础知识

    容器概述 容器本义:盛装物体.隔离物体. 容器意义:解决虚拟化资源浪费的问题. 容器沿革:1979---2013---                     版本:企业版(EE)/社区版(CE)1. ...

  7. GCC 指令详解及动态库、静态库的使用

    GCC 指令详解及动态库.静态库的使用 一.GCC 1.1 GCC 介绍 GCC 是 Linux 下的编译工具集,是「GNU Compiler Collection」的缩写,包含 gcc.g++ 等编 ...

  8. 学习ASP.NET Core Blazor编程系列九——服务器端校验

    学习ASP.NET Core Blazor编程系列一--综述 学习ASP.NET Core Blazor编程系列二--第一个Blazor应用程序(上) 学习ASP.NET Core Blazor编程系 ...

  9. Mysql入门练习题

    1.在students表中,查询年龄大于25岁,且为男性的同学的名字和年龄 mysql> select name,age from students where age>25 and ge ...

  10. Spring Boot 中使用 Swagger

    前后端分离开发,后端需要编写接⼝说明⽂档,会耗费⽐较多的时间. swagger 是⼀个⽤于⽣成服务器接⼝的规范性⽂档,并且能够对接⼝进⾏测试的⼯具. 作用 ⽣成接⼝说明⽂档 对接⼝进⾏测试 使用步骤 ...