Find the maximum length of a line segment enclosed in a given area

327 Views Asked by At

$A = \{ (x, y) : x = u + v , y = v , (u^2) + (v^2) \le 1 \}$ . Then what is the maximum length of a line segment enclosed in this area?

My friend suggested the answer $\sqrt{5}$, but I think it should be greater.

1

There are 1 best solutions below

7
On BEST ANSWER
  • $x = u+v$
  • $y = v$
  • $u^2+v^2 \le 1$

  • $u^2+v^2 \le 1 \implies u,v$ are inside the unit circle, therefore:

    • $-1 \leq u \leq 1$
    • $-1 \leq v \leq 1$
    • $-\sqrt{2} \leq u+v \leq \sqrt{2}$

enter image description here


  • Therefore:

    • $-\sqrt{2} \leq x \leq \sqrt{2}$
    • $-1 \leq y \leq 1$

enter image description here


The longest line within this rectangle is the diagonal of course, which is equal to:

$$\sqrt{(2\sqrt{2})^2+2^2} = \sqrt{12}$$