1

Let $f:I\rightarrow R$ be a monotonically increasing function on an open interval.If the image of this interval is an interval then would $f$ be continuous? For the case when $f(I)$ is open then I can deduct continuity of $f$.But What if $f(I)$ closed?

Rankeya
  • 8,826
  • 1
    When you say monotonically increasing, do you mean that $x<y$ implies that $f(x)<f(y)$ ($f$ is strictly increasing), or do you mean that $x\le y$ implies that $f(x)\le f(y)$ ($f$ is non-decreasing)? – Brian M. Scott Nov 29 '12 at 02:25
  • The latter case. – Nasibabuba Nov 29 '12 at 02:32
  • I thought that that was probably the case, since $f[I]$ couldn’t be a closed interval otherwise, but I wanted to make sure, even though it doesn’t actually affect the argument. – Brian M. Scott Nov 29 '12 at 02:35

1 Answers1

3

Suppose that $f$ is not continuous. Since $f$ is monotone increasing, every discontinuity of $f$ must be a jump discontinuity, so there is an $a\in I$ such that $\lim\limits_{x\to a^-}f(x)<\lim\limits_{x\to a^+}f(x)$. But then $f[I]$ clearly cannot be an interval, since it contains at most one point, $f(a)$, in the interval

$$\left(\lim_{x\to a^-}f(x),\lim_{x\to a^+}f(x)\right)$$

but contains points on both sides of it. Thus, if $f[I]$ is an interval, $f$ must be continuous.

Added after comments: Here’s a bit more detail. Let $u=\lim\limits_{x\to a^-}f(x)$ and $v=\lim\limits_{x\to a^+}f(x)$; since $f$ is monotone non-decreasing, $u\le f(a)\le v$, and therefore at least one of the open intervals $\big(u,f(a)\big)$ and $\big(f(a),v\big)$ is non-empty. If $\big(u,f(a)\big)\ne\varnothing$, let $J=\big(u,f(a)\big)$, and otherwise let $J=\big(f(a),v\big)$; in either case $J$ is a non-empty open interval, and $J\subseteq(u,v)$. If $x<a$, then $f(x)\le u$, and if $x>a$, then $f(x)\ge v$, so if $x\ne a$, then $f(x)\notin(u,v)$. It follows that $f[I]\cap J=\varnothing$.

$I$ is an open interval, so there are $c,d\in I$ such that $c<a<d$, and therefore $f(c)\le u<v\le f(d)$. Thus, $f(c)$ and $f(d)$ belong to $f[I]$, but $J\subseteq[f(c),f(d)]\setminus f[I]$, so $[f(c),f(d)]\nsubseteq f[I]$, and $f[I]$ therefore cannot be an interval.

Brian M. Scott
  • 616,228
  • Brian M.Scott What do you mean it contains at most one point,do you mean f(I)?If so, why? Can you clarify your statement? – Nasibabuba Nov 29 '12 at 02:41
  • @Pilot: I mean that $$f[I]\cap\left(\lim_{x\to a^-}f(x),\lim_{x\to a^+}f(x)\right)\subseteq{f(a)};.$$ Thus, either $$\left(\lim_{x\to a^-}f(x),f(a)\right)$$ or $$\left(f(a),\lim_{x\to a^+}f(x)\right)$$ must be a non-empty interval disjoint from $f[I]$. But if $u<a$ and $v>a$, then $f(u)\le\lim_{x\to a^-}f(x)$ and $\lim_{x\to a^+}f(x)\le f(v)$, so $f[I]$ contains points on both sides of this omitted open interval and therefore cannot be an interval. – Brian M. Scott Nov 29 '12 at 02:47