I would like to know the interpretation of limit expression which calculates the number of non-zero entries in vector $x$ in the expression below: $\lVert x\rVert_0 = \#\{i \mid x[i] \neq 0\} = \lim_{p\to 0^+} \left(\sum_{i=1}^{m} |x[i]|^p\right),$ where $x[i]$ is the $i$th coordinate of $x$ in $\mathbb{R}^m$ and $p \geq 1$
Meaning of $\lim_{p\to 0^+}$
-
0I think that the restriction $p \geq 1$ can't be right. You need $p$ to get close to zero from the right. – 2011-08-30
2 Answers
$\lim_{p \to 0^{+}}$ indicates that the limit is meant to be taken only from the positive direction; it's a one-sided limit.
As Qiaochu Says $\lim_{x \to 0+}$ means that $x$ approaches to $0$ from the Positive side. It shall be clear once you see an example.
Example so that you can understand better. Consider $f: \mathbb{R} \to \mathbb{R}$ Let $f(x) = \lfloor{x\rfloor}$. We prove that the point at which $f$ is not continuous at $2$. Let us consider the right hand limit $\lim_{h \to 0+} f(2)$ and the left hand limit $\lim_{h \to 0-} f(2)$.
Right hand Limit: $\displaystyle\lim_{h \to 0+} f(2) = \displaystyle\lim_{h \to 0} f(2+h) = \lim_{h \to 0}\lfloor{2+h\rfloor} =2$.
Left Hand Limit: $\displaystyle\lim_{h \to 0-} f(2)= \displaystyle\lim_{h \to 0} f(2-h) =\lim_{h \to 0} \lfloor{2-h\rfloor} = 1$.
Hence $f$ is not continuous at $x =2$.
-
0@GEdgar I thought $x \downarrow 0$ means that $x$ is approaching $0$ from above in a (strictly) decreasing manner, whereas $x \rightarrow 0^+$ does not necessarily imply that the values of $x$ are strictly decreasing as $x$ approaches $0$; depending on the function, it could be that $x$ is generally nonincreasing. I guess what I'm asking is the notation $\downarrow$ restricted to strictly decreasing values of $x$? – 2015-09-15