7

Let $z\in \mathbb{C}$ and$|z|=2$.Show that $$4\leq |z+3|+|z^2-z+4|\leq 11$$ Is there a non-calculus way to do this

My Attempt:

I used method which involved calculus.

Let $z=2(\cos t+i\sin t)$

$\Rightarrow|z+3|=\sqrt{13+12\cos t}$

$\Rightarrow|z^2-z+4|=2|4\cos t-1|$

Let $f(x)=\sqrt{13+12x}+2|4x-1|$ where $x\in [-1,1]$

Now here $f(-1)=f(1)=11$

$f'(x)=\frac{6}{\sqrt{13+12x}}-8<0$ for $x\in [-1,\frac{1}{4})$

and $f'(x)=\frac{6}{\sqrt{13+12x}}+8>0$ for $x\in (\frac{1}{4},1]$

So, clearly $x=\frac{1}{4}$ is a critical point as $f(x)$ is not differentiable at $x=\frac{1}{4}$.

$f(\frac{1}{4})=4$

So, $4\leq f(x)\leq 11$

Maverick
  • 9,172
  • 2
  • 30
  • 61
  • 2
    What is your question? – lhf Apr 04 '22 at 23:48
  • Is there a way to do this without using calculus – Maverick Apr 04 '22 at 23:51
  • Hi @Maverick, I've edited the answer once again (for the last time) with more correct steps and detailed arguement. Please go through it and tell me if everything is clear – tryst with freedom Apr 06 '22 at 07:47
  • A tag edit isn't worth bumping the question, but if there's occasion to edit could you please delete the complex-geometry tag? (The geometry tag might be appropriate to add, but this isn't complex geometry.) – Andrew D. Hwang Apr 07 '22 at 02:10
  • So geometry+ complex numbers $\neq$ complex geometry..? O_o @AndrewD.Hwang – tryst with freedom Apr 07 '22 at 02:49
  • @Buraian Yes that's right. Same for analytic-geometry, algebraic-geometry, and others that don't come to mind offhand. <> Hovering over a tag pops up a description in a tooltip. The descriptions generally state explicitly when they should not be used (e.g., "For elementary questions about geometry in the complex plane, use the tags (complex-numbers) and (geometry) instead."), but that's usually at the bottom and isn't always visible. – Andrew D. Hwang Apr 07 '22 at 12:29

2 Answers2

5

Geometric answer for maximum:

enter image description here

I interpret the expression $|z+3|+ |z^2 -z+4|$ as the "the distance from $-3$ to a point on a circle of radius $2$ (red) plus the length of line segment connecting the point on circle of radius $2$ centered at origin to a point on circle of radius $4$ but with twice the angle centered at (4,0) (blue)". Hopefully that made sense. If it did not, I have kept a Geogebra link at the end.

For the expression $|z+3|+|z^2-z+4|$, we can consider the set of geometric configuration parameterized to it as a function of $\theta$, one can easily check that both $\theta=0$ is a maximum by noticing that the distance function doesn't change to first order in $\theta$ [ the distance function evaluate at $d(\theta+ \Delta \theta)=d(\theta-\Delta \theta)$ for small enough $\Delta \theta$]. Taking higher values of $\Delta \theta$ , we notice the function is decreasing, therefore, $\theta=\pi$ is a maximum.

Here is a picture to specify what I mean:

enter image description here The above is when $\theta=\pi$, increasing a bit:

enter image description here

Decreasing a bit:

enter image description here

A more detailed way one could convince themself could be through Taylor:

$$ d(\theta + \Delta \theta) = d(\theta) + \Delta \theta d'(\theta)$$

$$ d(\theta- \Delta \theta) = d(\theta) - \Delta \theta d'(\theta)$$

Using the fact that $d(\theta-\Delta \theta)= d(\theta+\Delta \theta)$ , we have that $d'(\theta)=0$

Geometric answer for minimum

We have by triangle inequality ,

$$ |z+3 + z^2 - z+4| \leq |z+3| + |z^2 - z+4|$$

Rewriting:

$$ | z^2 +4 + 3 | \leq |z+3| + |z^2 - z+4|$$

The left most term is the distance from the fixed point three to a varying point on the blue circle. Geometric observation tells us that the least value it can take is $4$ (See FA). Done!

GeoGebra link

2

From the OP's proof by calculus:

Let $f(x )= \sqrt{13 + 12x} + 2|4x - 1|$ where $x \in [-1, 1].$

The expression $u = \sqrt{13 + 12x}$ is an increasing function of $x$ in $[-1, 1],$ and $12x = u^2 - 13,$ therefore: $$ f(x) = \begin{cases} u + 2 - \tfrac23(u^2 - 13) = 11 - \tfrac13(u - 1)(2u - 1) & (-1 \leqslant x \leqslant \tfrac14, \ 1 \leqslant u \leqslant 4), \\ u - 2 + \tfrac23(u^2 - 13) = \tfrac13(u + 1)(2u + 1) - 11 & (\tfrac14 \leqslant x \leqslant 1, \ 4 \leqslant u \leqslant 5). \end{cases} $$ No calculus is needed to deduce that $f(x)$ decreases from $11$ to $4$ for $x \in [-1, \tfrac14]$ and increases from $4$ to $11$ for $x \in [\tfrac14, 1].$

  • 2
    To get the expression for $f(x),$ we can use: $$ |z^2 - z + 4| = |z^2 - z + z\bar{z}| = |z|\cdot|z + \bar{z} - 1| = 2|2\Re{z} - 1|. $$ – Calum Gilhooley Apr 06 '22 at 01:27