连续(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上,现在迁移过来),是学习李航老师的< ...
随机推荐
- XCOJ 1205 A.First Blood
1205: A.First Blood 时间限制: 1 Sec 内存限制: 64 MB提交: 152 解决: 44 标签提交统计讨论版 题目描述 盖伦是个小学一年级的学生,在一次数学课的时候,老师 ...
- 很重要的C++的位运算bitset
本文摘录于柳神笔记: bitset ⽤来处理⼆进制位⾮常⽅便.头⽂件是 #include , bitset 可能在PAT.蓝桥OJ中不常 ⽤,但是在LeetCode OJ中经常⽤到-⽽且知道 bits ...
- 5G新时代开启,你会选择哪家运营商?
牌照正式发放后,5G新时代正式来临.而5G时代显然开了个好头,B站UP主"老师好我叫何同学"发布的<有多快?5G在日常使用中的真实体验>视频,引爆全网.除了仅在B站就获 ...
- cocoapods diff: /../Podfile.lock: No such file or directory 解决方案
在运行之前的使用 CocoaPods 工程时,有时会报错:diff: /../Podfile.lock: No such file or directory diff: /Manifest.lock: ...
- Dart语言学习(十五) Dart函数方法
Dart函数方法可分为两类: 一.内置方法/函数: print(); 二.自定义方法: 自定义方法的基本格式: 返回类型 方法名称(参数1,参数2,...){ 方法体 return 返回值; } vo ...
- Python 基础之文件操作与文件的相关函数
一.文件操作 fp =open("文件名",mode="采用的模式",encoding="使用什么编码集")fp 这个变量接受到open的返 ...
- js学习:基本数据类型
数据类型在 js 里面分为两个大类: 基本数据类型 引用数据类型 基本数据类型: 数值 number 各种意义上的数字:整数.小数.浮点数等 正数:100 负数:-100 浮点数,小数:1.234 进 ...
- 5-2 使用antDesign的Table 及 modal(对话情景框) 功能
1,进入antDesign官网,粘贴table代码 2,看代码各个部分实现什么功能,根据需求改代码 表格类似如下: 代码如下: const columns = [ { title: 'Name', d ...
- JAVA中final关键字的作用
一.final关键字的功能概述 final关键字可以用来修饰引用.方法和类. 1.用来修饰一个引用 如果引用为基本数据类型,则该引用为常量,该值无法修改: 如果引用为引用数据类型,比如对象.数组,则该 ...
- 4 htmlCSS&图像&表格&列表&表单&框架&颜色
CSS: Cascading Style Sheeet 层叠样式表 cascadig:瀑布 html:网页的结构 css:网页的外观 JavaScript:网页的动作 CSS的使用方式: 内联样 ...