连续(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上,现在迁移过来),是学习李航老师的< ...
随机推荐
- 【转】教你怎么调用Gitlab API
官方文档: https://docs.gitlab.com/ce/api/ https://docs.gitlab.com/ee/api/branches.html#list-repository-b ...
- CSS的响应式布局
响应式布局是什么 它是相对于固定像素大小的网页而言的,顾名思义,响应式布局就是网页能够响应各种各样不同分辨率大小的设备,能够将网页很好的呈献给用户. 如何实现响应式布局? 1.CSS3@media查询 ...
- 解决RStudio(非conda安装)在使用Anaconda中的R环境时,缺失“ libbz2-1.dll ”而不能正常启动问题
1.问题描述 当非conda安装的RStudio,在调用Anaconda中的R环境时,报如下错误: 2.解决办法 下载同版本的R,对Anaconda中R相应的文件进行替换(图标中标注的部分) R3.5 ...
- uniGUI之通过URL控制参数(25)
通过URL代入参数,在代码中读取,如: http://localhost:8077/?ServerPort=212&&ServerIP=192.168.31.12 procedure ...
- 如鹏网仿QQ侧滑菜单:ResideMenu组件的使用笔记整理+Demo
ResideMenu菜单 课堂笔记: https://github.com/SpecialCyCi/AndroidResideMenu Github:如何使用开源组件1. 下载 下载方式: 1. 项目 ...
- k短路算法
k短路算法 求解k短路用到了A* 算法,A* ( A star )算法,又称启发式搜索算法,与之相对的,dfs与bfs都成为盲目型搜索:即为带有估价函数的优先队列BFS称为A*算法. 该算法的核心思想 ...
- 【PAT甲级】1037 Magic Coupon (25 分)
题意: 输入一个正整数N(<=1e5),接下来输入N个整数.再输入一个正整数M(<=1e5),接下来输入M个整数.每次可以从两组数中各取一个,求最大的两个数的乘积的和. AAAAAccep ...
- thymeleaf 学习笔记(转)
原文:http://blog.csdn.net/pdw2009/article/details/44410659 thymeleaf,我个人认为是个比较好的模板,性能也比一般的,比如freemaker ...
- Linux centosVMware 配置Tomcat监听80端口、配置Tomcat虚拟主机、Tomcat日志
一.配置Tomcat监听80端口 关闭tomcat报错 [root@davery src]# /usr/local/tomcat/bin/shutdown.sh 重装tomcat即可 vim /usr ...
- table左边固定-底部横向滚动条-demo
图: 代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www. ...