🧮 Brain Teaser

Problem: An Entire Function with Non-Negative Real Part

Problem Statement

Suppose f:CCf : \mathbb{C} \to \mathbb{C} is entire (holomorphic on all of C\mathbb{C}) and satisfies

Re(f(z))0for all zC.\operatorname{Re}(f(z)) \geq 0 \quad \text{for all } z \in \mathbb{C}.

Prove that ff must be constant.


Metadata

| Field | Details | |---|---| | Field | Complex Analysis | | Tags | Entire functions, Liouville's theorem, Möbius transformation, Bounded functions | | Difficulty | 2 / 5 | | Date | 2026-04-23 |

Why It's Interesting

At first glance, having non-negative real part seems like a very mild geometric constraint — it just says the image of ff lands in the closed right half-plane. Yet this alone forces ff to be constant. The surprising punch comes from a one-line composition trick that converts a geometric condition on the image into boundedness, then Liouville does the rest.

The key technique — composing with a Möbius transformation to "compress" an unbounded region into the unit disk — is a genuinely powerful and reusable idea in complex analysis.

Key Idea / Hint

Consider composing ff with a carefully chosen Möbius transformation that maps the right half-plane {Re(w)0}\{\operatorname{Re}(w) \geq 0\} into the closed unit disk {w1}\{|w| \leq 1\}. What happens to the composition?

Answer

See answer.md

Entire functionsLiouvilleMobius transformationBounded functions

Answer: An Entire Function with Non-Negative Real Part

Geometric Intuition

Think about what the condition says about the image of ff: the entire output of ff is confined to the right half-plane — a closed, convex half of C\mathbb{C}.

Now recall Liouville's theorem needs boundedness. The right half-plane is not bounded, so we can't apply Liouville directly. But here's the key geometric picture:

The right half-plane and the unit disk are conformally equivalent — one is just a "bent" version of the other.

The Möbius map g(w)=(w1)/(w+1)g(w) = (w-1)/(w+1) literally folds the right half-plane into the unit disk: points near the origin map near 1-1, points far out toward ++\infty map near +1+1, and the imaginary axis (boundary of the half-plane) wraps onto the unit circle.

So if f(C)f(\mathbb{C}) is trapped in the right half-plane, then gfg \circ f is trapped in the unit disk — and that is bounded. Liouville then says gfg \circ f is constant, and unwrapping gives ff is constant.

The insight: you don't need the image to be bounded, just conformal-equivalent to something bounded.


Solution

Define the Möbius transformation (https://www.youtube.com/watch?v=0z1fIsUNhO4&t=7s)

g(w)=w1w+1.g(w) = \frac{w - 1}{w + 1}.

This map sends the right half-plane {wC:Re(w)0}\{w \in \mathbb{C} : \operatorname{Re}(w) \geq 0\} into the closed unit disk {g1}\{|g| \leq 1\}. Indeed, for Re(w)0\operatorname{Re}(w) \geq 0:

w12=(Re(w)1)2+Im(w)2,|w - 1|^2 = (\operatorname{Re}(w) - 1)^2 + \operatorname{Im}(w)^2, w+12=(Re(w)+1)2+Im(w)2.|w + 1|^2 = (\operatorname{Re}(w) + 1)^2 + \operatorname{Im}(w)^2.

Their difference is w12w+12=4Re(w)0|w-1|^2 - |w+1|^2 = -4\operatorname{Re}(w) \leq 0, so g(w)1|g(w)| \leq 1.

Now consider the composition

h(z)=g(f(z))=f(z)1f(z)+1.h(z) = g(f(z)) = \frac{f(z) - 1}{f(z) + 1}.

  • hh is entire: ff is entire, and gg is holomorphic away from w=1w = -1. Since Re(f(z))0\operatorname{Re}(f(z)) \geq 0, we have f(z)1f(z) \neq -1 for all zz, so hh is holomorphic everywhere.
  • hh is bounded: h(z)=g(f(z))1|h(z)| = |g(f(z))| \leq 1 for all zCz \in \mathbb{C}.

By Liouville's theorem, a bounded entire function is constant. So hch \equiv c for some c1|c| \leq 1.

Inverting, f(z)=g1(c)=1+c1cf(z) = g^{-1}(c) = \frac{1+c}{1-c}, which is a constant (assuming c1c \neq 1; but c=1c = 1 would require f(z)f(z) \to \infty, impossible for an entire function).

Therefore ff is constant. \blacksquare


Why the Trick Works

The Möbius map g(w)=(w1)/(w+1)g(w) = (w-1)/(w+1) is the unique (up to rotation) conformal map of the right half-plane to the unit disk fixing the real axis. Composing it with ff converts a geometric constraint on the image (image ⊂ right half-plane) into analytic boundedness, which is exactly what Liouville needs.

This composition trick is a template: whenever you know the image of an entire function avoids or is contained in some region, try to compose with a conformal map that compresses that region into a disk.

Generalization

The same argument shows: if ff is entire and its image omits any open half-plane (or any disk, or any simply-connected proper open subset of C\mathbb{C}), then ff is constant. This is essentially one direction of Picard's little theorem — an entire function that omits even two points must be constant.

Type: Complex AnalysisEdit on GitHub ↗