Homotopy Type Theory pointwise continuous function > history (Rev #6)

Contents

Definition

In rational numbers

Let \mathbb{Q} be the rational numbers, and let II be a closed interval in \mathbb{Q}. An function f:If:I \to \mathbb{Q} is continuous at a point c:Ic:I if the limit of ff approaching cc exists and is equal to f(c)f(c)

isContinuousAt(f,c)lim xcf(x)=f(c)isContinuousAt(f, c) \coloneqq \lim_{x \to c} f(x) = f(c)

ff is pointwise continuous in II if it is continuous at all points cc:

isPointwiseContinuous(f) c:IisContinuousAt(f,c)isPointwiseContinuous(f) \coloneqq \prod_{c:I} isContinuousAt(f, c)

In premetric spaces

Let TT and VV be types, SS be a TT-premetric space and UU be a VV-premetric space. An function f:SUf:S \to U is continuous at a point c:Sc:S if the limit of ff approaching cc exists and is equal to f(c)f(c)

isContinuousAt(f,c)isContr(lim xcf(x)=f(c))isContinuousAt(f, c) \coloneqq isContr(\lim_{x \to c} f(x) = f(c))

ff is pointwise continuous if it is continuous at all points cc:

isPointwiseContinuous(f) c:SisContinuousAt(f,c)isPointwiseContinuous(f) \coloneqq \prod_{c:S} isContinuousAt(f, c)

ff is uniformly continuous if

isUniformlyContinuous(f) ϵ:V δ:T x:S y:S(x δy)(f(x) ϵf(y))isUniformlyContinuous(f) \coloneqq \prod_{\epsilon:V} \Vert \sum_{\delta:T} \prod_{x:S} \prod_{y:S} (x \sim_\delta y) \to (f(x) \sim_\epsilon f(y)) \Vert

See also

Revision on March 22, 2022 at 16:01:04 by Anonymous?. See the history of this page for a list of all contributions to it.