Finding the extreme values of $NA^2+NB^2+3NC^2$, where $A$, $B$, $C$ are given points in space, and $N$ is a point on a given sphere

72 Views Asked by At

Let be given three points $A(1,4,5)$, $B(3,4,0)$, $C(2,-1,0)$ and the sphere has equation $$(x-1)^2+(y+1)^2 + (z-3)^2=1$$ Let $N$ lies on the sphere. Find the least and the greatest of the value $$P=NA^2 + NB^2 + 3NC^2$$

I tried. Let $N(x,y,z)$ lies on the sphere. We have $$(x-1)^2+(y+1)^2 + (z-3)^2=1$$ and $$NA^2 + NB^2 + 3NC^2=\left(x-1\right)^{2}+2 \left(y-4\right)^{2}+\left(z-5\right)^{2}+\left(x-3\right)^{2}+4 z^{2}+3 \left(x-2\right)^{2}+3 \left(y+1\right)^{2}$$ or $$P=5x^2 + 5y^2 + 5z^2 - 20x - 10y - 10z + 82.$$ From here, I cannot solve the problem.

2

There are 2 best solutions below

2
On BEST ANSWER

Hint: $\;$ the discrete form of the parallel axes theorem for the second moment of area for $\,n\,$ points $\,A_k\,$ with centroid $\,G\,$ and an arbitrary point $\,P\,$ is $\,\sum_{k=1}^n PA_k^2 = n \cdot PG^2 + \sum_{k=1}^n GA_k^2\,$. This can be easily proved using vectors:

$$ \require{cancel} \begin{align} \sum_{k=1}^n \big|PA_k\big|^2 = \sum_{k=1}^n \big|\overrightarrow{PG}+\overrightarrow{GA_k}\big|^2 = n \cdot\big|PG\big|^2 + \sum_{k=1}^n \big|GA_k\big|^2 + \cancel{2 \,\big\langle \overrightarrow{PG}, \,\underbrace{\sum_{k=1}^n \overrightarrow{GA_k}}_{=\,0} \big\rangle}\, \end{align} $$

Using the theorem for $\,P \equiv N\,,\,$ $\,n=5\,,\,$ $\,A_1=A\,,\, A_2=B\,,\, A_3=A_4=A_5 = C\,,$ $\, \overrightarrow G = \frac{1}{5}\big(\overrightarrow{A_1}+\overrightarrow{A_2}+\overrightarrow{A_3}+\overrightarrow{A_4}+\overrightarrow{A_5}\big) = \frac{1}{5}\big(\overrightarrow{A}+\overrightarrow{B}+3\,\overrightarrow{C}\big)$:

$$ NA^2+NB^2+3NC^2 \,=\, 5\, NG^2 + GA^2 + GB^2 + 3\,GC^2 $$

Therefore the sum on the LHS attains the maximum (or minimum) whenever $NG$ attains the maximum (or minimum), and the problem reduces to finding the points $\,N\,$ on the sphere farthest from (or closest to) fixed point $\,G\,(2, 1, 1)\,$.

0
On

First note that $$P = 5x^{2} + 5y^{2} + 5z^{2} - 20x - 10y - 10z + 82$$ $$= 5(x^{2} - 2x) + 5(y^{2} + 2y) + 5(z^{2} - 6z) - 10x - 20y + 20z + 82$$ $$= 5(x - 1)^{2} + 5(y + 1)^{2} + 5(z - 3)^{2} - 10x - 20y + 20z + 27$$ $$=-10x - 20y + 20z + 32$$ This is just by using the constraint given. That was just to clean up a bit. Let $f(x,y,z) = (x-1)^{2} + (y+1)^{2} + (z-3)^{2} - 1$. We can proceed further using Lagrange Multipliers. We have the setup $$\begin{cases} \nabla P = \lambda \nabla f \\ f = 0 \end{cases}$$ And this gives us the simplified system $$\begin{cases} -5 = \lambda (x-1) \\ -10 = \lambda (y+1) \\ 10 = \lambda (z-3) \\ (x-1)^{2} + (y+1)^{2} + (z-3)^{2} = 1\end{cases}$$ We can see that $\frac{225}{\lambda^{2}} = 1$ so $\lambda = \pm 15$. For $\lambda = 15$, we gain the solution $(x,y,z) = (2/3, -5/3, 11/3)$ and for $\lambda = -15$, we gain the solution $(x,y,z) = (4/3, -1/3, 7/3)$. And you can then plug in these values for $P$!