Around a circle write 1000 numbers, such that each three consecutive numbers A, B, C (B is between A and C) satisfy $A^2+C^2 \leq B-(1/8)$ . Find the maximum and the minimum value for the sum of the numbers around the circle. The answer is 250.
2026-03-26 06:10:55.1774505455
Circular arrangement of numbers with constraint on 3 consecutive triples of them gives a unique solution
49 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in COMPUTATIONAL-GEOMETRY
- Least Absolute Deviation (LAD) Line Fitting / Regression
- Why is the determinant test attractive for the Convex Hull algorithm?
- Geometry of the plane in 3D and cross product
- How can I give a polygon with exactly a given number of triangulations?
- How to draw an equilateral triangle inscribed in another triangle?
- An enclosing polygon with minimum area
- Merging overlapping axis-aligned rectangles
- Find algorithm to produce integer points in a polygon
- Closest line to a set of lines in 3D
- Why do we check $n^2 - n$ pairs of points in SlowConvexHull algorithm?
Related Questions in GEOMETRIC-INEQUALITIES
- 2018 January Challenge: Prove inequality in geometry problem
- Is the Incenter always "below" the middle point of an angle bisector segment in a triangle?
- Geometric inequality : In a equilateral , $ 4(PD^2 +PE^2 + PF^2) \ge PA^2 + PB^2 + PC^2 $
- Prove of an inequality between the radius and segments of an incircle
- How can I enumerate sets of inequalities that give a nonempty feasible region?
- What is the infimal norm of a matrix in a conjugacy class?
- An inequality in triangle geometry involving triangle OIH
- Find minimum value of $\sum \frac {\sqrt a}{\sqrt b +\sqrt c-\sqrt a}$
- In a circle $C(O(0,0),1)$ with a polygon inscribed $A_1A_2...A_n$
- Can I expect $|x|^s - |y|^s \leq C|x-y|^s$ for $s>1$?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Let us denote $x_k \ (k=1,2,...1000)$ these numbers ; the constraint being written :
$$\text{for all } \ k, \ \ \ \ \ x_{k-1}^2+x_{k+1}^2 \leq x_{k}-\dfrac18 \tag{1}$$
(conventionally, $x_{1001}=x_1$ and $x_{1002}=x_2$.)
1) If one takes $x_k = \dfrac14$ for all $k$, (1) is fullfilled (with an equal sign), giving indeed $\sum x_k=250$.
2) We are now going to establish that the solution above is the only solution. Let us take it as a "point of departure" and set :
$$x_k=\dfrac14+y_k\tag{2}$$
and show that all the $y_k$ are zero. Constraint (1) becomes :
$$\left(\dfrac14+y_{k-1}\right)^2+\left(\dfrac14+y_{k+1}\right)^2 \leq \dfrac14+y_{k}-\dfrac18$$
i.e., after cancellations :
$$y_{k-1}^2+y_{k+1}^2 + \dfrac12 \left(y_{k-1}+y_{k+1}\right) \leq y_{k}\tag{3}$$
Let $S=\sum y_k$ and $T=\sum y_k^2$.
Adding up the 1000 inequalities (3) gives :
$$2T+\dfrac12 \left(S+S\right)\leq S \tag{4}$$
(4) boils down to $T\le 0$ which is possible if and only if all $y_k$ are zero, our objective !