You can put this solution on YOUR website! 2 positive numbers the sum of whose squares is 16 and whose product is as large as possible
---------------------
Equations:
x^2 + y^2 = 16
Product = xy
------------------------
y = sqrt(16-x^2)
--------
Product = x*sqrt(16-x^2)
----
Take the derivative
dP/dx = x[(1/2)(16-x^2)^(-1/2)(-2x)] + [sqrt(16-x^2)]
----
dP/dx = [-x/sqrt(16-x^2)] + [sqrt(16-x^2)]
----
dP/dx = [-x + 16-x^2]/sqrt(16-x^2)
------
Solve -x+16-x^2 = 0
x^2+x-16 = 0
x = [-1+-sqrt(1+4*16)]/2
---
x = [-1+-sqrt(65)]/2
---
Positive solution:
x = 3.53
-------------
Substitute into x^2 + y^2 = 16
y = sqrt(16-x^2)
y = sqrt(16-12.4689)
y = 1.8791
==============================
Cheers,
Stan H.