连续(Continuity) - 有界(Bounded) - 收敛(Convergence)
连续(Continuity)
所有点连续 -> 一致连续 (uniform continuity) -> 绝对连续 -> 李普希兹连续(Lipschitz)
弱 ----> 强
【uniform continutity】
In mathematics, a function f is uniformly continuous if, roughly speaking, it is possible to guarantee that f(x) and f(y) be as close to each other as we please by requiring only that x and y are sufficiently close to each other; unlike ordinary continuity, where the maximum distance between f(x) and f(y) may depend on x and y themselves.
e.g. $1/x$ is not uniformly continous.
https://en.wikipedia.org/wiki/Uniform_continuity
【absolute continutiy】
绝对值也是一致连续的
https://en.wikipedia.org/wiki/Absolute_continuity
【Lipschitz Continuity】
Definition: 函数图像的曲线上任意两点连线的斜率"一致有界",即任意两点的斜率都小于同一个常数,这个常数就是Lipschitz常数。
理解:
从局部看,我们可以取两个充分接近的点,如果这个时候斜率的极限存在的话,这个斜率的极限就是这个点的导数。也就是说函数可导,又是Lipschitz连续,那么导数有界。反过来,如果可导函数,导数有界,可以推出函数Lipschitz连续。
从整体看,Lipschitz连续要求函数在无限的区间上不能有超过线性的增长,所以x2, ex这些函数在无限区间上不是Lipschitz连续的。
Lipschitz连续的函数是比连续函数较更加“光滑”,但不一定是处处光滑的,比如|x|.但不光滑的点不多,放在一起是一个零测集,所以他是几乎处处的光滑的。
简单来说,Lipschitz连续就类似,一块地不仅没有河流什么的玩意儿阻隔,而且这块地上没有特别陡的坡。其中最陡的地方有多陡呢?这就是所谓的李普希兹常数
参考:
https://en.wikipedia.org/wiki/Lipschitz_continuity
有界(Bounded)
bounded -> Uniform boundedness
the sequence of functions $\{ f_n | f_n(x) = sin(nx) \}$ is uniformly bounded
the sequence of functions $\{ g_n | g_n(x) = nsin(x) \}$ is not uniformly bounded
【参考】
https://en.wikipedia.org/wiki/Uniform_boundedness
收敛(Convergence)
逐点收敛(pointwise convergence) -> 一致收敛(uniform convergence)
【pointwise convergence】
The sequence $f_n(x)$ converges pointwise to the function $f$, iff
for every $x$, $\lim_{x \to +\infty} f_n=f(x)$
【uniform convergence】
the sequence functions ${ S_n(x) }$ is uniformly convergent: if for every $\epsilon>0$, there exists a number N, such that for all $n>N$, $|f_n(x)-f(x)|<\epsilon$
https://en.wikipedia.org/wiki/Uniform_convergence
随机变量的收敛
研究一列随机变量是否会收敛到某个极限随机变量
https://en.wikipedia.org/wiki/Convergence_of_random_variables
【convergence in distribution】
- the weakest form of convergence
- related to central limit theorem
Definition:
A sequence $X_1$, $X_2$, ... of random variables is said to converge in distribution to a random variable X if
$\lim\limits_{n \to \infty} F_n(x)=F(x)$ for every $x\in\mathbb{R}$ at which $F$ is continues. (仅仅考虑$F(x)$连续的地方的分布函数值)
$X_n \overset{d}{\to} X$
【Convergence in probability】
- related to the weak law of large numbers
- related to the consistent estimator
meanning:the probability of an “unusual” outcome becomes smaller and smaller as the sequence progresses.
Definition: A sequence $\{X_n\}$ of random variables converges in probability towards the random variable $X$ if for all $\epsilon > 0$, $\lim\limits_{n \to \infty}{Pr(|X_n-X|>\epsilon)}=0$
$X_n \overset{p}{\to} X$
【Almost sure convergence】
类似于函数列收敛中pointwise convergence,
Definition:To say that the sequence Xn converges almost surely or almost everywhere or with probability 1 or strongly towards X means that,
$Pr(\lim\limits_{n \to \infty}{X_n=X})=1$
$X_n \overset{a.s.}{\to} X$
连续(Continuity) - 有界(Bounded) - 收敛(Convergence)的更多相关文章
- Hopfield模型
1982年,J.Hopfield提出了可用作联想存储器的互连网络,这个网络称为Hopfield网络模型,也称Hopfield模型.Hopfield神经网络模型是一种循环神经网络,从输出到输入有反馈连接 ...
- CFD计算
47 求解器为flunet5/6在设置边界条件时,specify boundary types下的types中有三项关于interior,interface,internal设置,在什么情况下设置相应 ...
- [家里蹲大学数学杂志]第056期Tikhonov 泛函的变分
设 $\scrX$, $\scrY$ 是 Hilbert 空间, $T\in \scrL(\scrX,\scrY)$, $y_0\in\scrY$, $\alpha>0$. 则 Tikhonov ...
- Haskell 笔记(三)类型系统
类型 (Type) Haskell的类型系统式静态类型系统,在编译的时候就知道数据类型,所以不同类型的值运算在编译的时候就会报错,比如用布尔值和整数运算,在C语言中这种运算就不会报错. Haskell ...
- [2017.02.21] 《Haskell趣学指南 —— Learning You a Haskell for Great Good!》
{- 2017.02.21 <Haskell趣学指南 -- Learning You a Haskell for Great Good!> [官网](http://learnyouahas ...
- 强化学习读书笔记 - 02 - 多臂老O虎O机问题
# 强化学习读书笔记 - 02 - 多臂老O虎O机问题 学习笔记: [Reinforcement Learning: An Introduction, Richard S. Sutton and An ...
- Learning Structured Representation for Text Classification via Reinforcement Learning 学习笔记
Representation learning : 表征学习,端到端的学习 pre-specified 预先指定的 demonstrate 论证;证明,证实;显示,展示;演示,说明 attempt ...
- 机器学习入门03 - 降低损失 (Reducing Loss)
原文链接:https://developers.google.com/machine-learning/crash-course/reducing-loss/ 为了训练模型,需要一种可降低模型损失的好 ...
- SPP(Spatial Pyramid Pooling)详解
一直对Fast RCNN中ROI Pooling层不解,不同大小的窗口输入怎么样才能得到同样大小的窗口输出呢,今天看到一篇博文讲得挺好的,摘录一下,方便查找. Introduction 在一般的CNN ...
- EM算法(Expectation Maximization Algorithm)
EM算法(Expectation Maximization Algorithm) 1. 前言 这是本人写的第一篇博客(2013年4月5日发在cnblogs上,现在迁移过来),是学习李航老师的< ...
随机推荐
- 深入学习二叉树(07)B树
问题背景 在大型的数据库存储中,实现索引查找,如果采用二叉查找树的查找的话,由于节点的存储数据是有限的,这样如果数据库很大的话,就会导致树的深度过大从而造成磁盘 IO 操作过于频繁,就会造成效率低下 ...
- nikic / PHP-Parser 包的简单实用
解析PHP文件: <?php require 'vendor/autoload.php'; use PhpParser\ParserFactory; $code = file_get_conte ...
- 什么是函数,干嘛啊,怎么干。一个py程序员的视角.md
目录 前言 本质 math definition py definition class 是类,是对象的蓝本 回到函数 一个结论 self 是什么? 以上就是py世界里函数的定义 什么是函数,干嘛啊, ...
- CAN数据格式-BLF
欢迎关注<汽车软件技术>公众号,回复关键字获取资料. Vector工具录制的数据,一般有ASC和BLF两种格式,本文介绍ASC. 1.BLF定义 BLF(binary logging fo ...
- leetCode练题——12. Integer to Roman
1.题目 12. Integer to Roman Roman numerals are represented by seven different symbols: I, V, X, L, C, ...
- 计算机基础,Python - 回调函数,使用装饰器注册回调函数
1. 参考: https://en.wikipedia.org/wiki/Callback_(computer_programming) https://developer.mozilla.org/e ...
- [转]Java监听器的原理与实现
原文链接 监听器是一个专门用于对其他对象身上发生的事件或状态改变进行监听和相应处理的对象,当被监视的对象发生情况时,立即采取相应的行动.监听器其实就是一个实现特定接口的普通java程序,这个程序专门用 ...
- Python基础-2 变量与常量
变量与常量 变量:在程序运行过程中,值会发生变化的量 常量:在程序运行过程中,值不会发生变化的量 无论是变量还是常量,在创建时都会在内存中开辟一块空间,用于保存它的值. 这里有一点需要注意的是,在py ...
- linux 部署java 项目命令
1:服务器部署路径:/home/tomcat/tomcat/webapps (用FTP工具链接服务器把包上传到此目录) 2:进入项目文件夹 cd /home/tomcat/tomcat/webapp ...
- 谈谈spring mvc与struts的区别
1.Struts2是类级别的拦截, 一个类对应一个request上下文,SpringMVC是方法级别的拦截,一个方法对应一个request上下文,而方法同时又跟一个url对应,所以说从架构本身上Spr ...