zoukankan      html  css  js  c++  java
  • 连续(Continuity)- 有界(Bounded)

    连续(Continuity)

                     弱                    ---->               强

    -------------------------------------------------------------------------------------------------------------

    continuity     ->    uniform continuity  -> absolute continutiy -> Lipschitz Continuity

    连续函数                  一致连续                    绝对连续                   李普希兹连续

       $1/x$                     $sqrt x$

    【uniform continutity】

    a function f is uniformly continuous if 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.

    https://en.wikipedia.org/wiki/Uniform_continuity

    【absolute continutiy】

    | f(x) | is uniformly continuous

    https://en.wikipedia.org/wiki/Absolute_continuity

    【Lipschitz continuity】

    函数的变化率是有限的(如果函数可导,则导数有界)

    简单来说,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 o +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

    $limlimits_{n o infty} F_n(x)=F(x)$ for every $xinmathbb{R}$ at which $F$ is continues. (仅仅考虑$F(x)$连续的地方的分布函数值)

    $X_n overset{d}{ o} 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$,  $limlimits_{n o infty}{Pr(|X_n-X|>epsilon)}=0$

     $X_n overset{p}{ o} 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(limlimits_{n o infty}{X_n=X})=1$

     $X_n overset{a.s.}{ o} X$

  • 相关阅读:
    ReactNative 打包 APK
    ReactNative常用命令
    ReactNative之坑:停在gradle一直出点
    Python搭建Web服务器,与Ajax交互,接收处理Get和Post请求的简易结构
    tensorflow 安装升级
    sqlserver 全库查询 带架构
    气象数据资料整理
    poj2841
    cf1430e
    cf1436d
  • 原文地址:https://www.cnblogs.com/chest/p/11803529.html
Copyright © 2011-2022 走看看