Validity of solution using substitution for finding maximum value

117 Views Asked by At

Given a point $(x,y)$ on the curve $2(x^3+y)^4+(x^3+y)^2=2x^3+y$,

Find the maximum value of $y$

Here is my solution of the problem.

enter image description here

I have a doubt as to this solution because two variables, $u$ and $v$ are not independent of each other, but interwound with a relation between $x$ and $y$.
However, it doesn't mean that change of $u$ affects and changes the value of $v$ because there will be an appropriate pair $(x,y)$ for changed $u$ and unchanged $v$. (Also, the domain of $u$ and $v$ is $\mathbb{R}$)

So it's quite confusing whether my solution is valid or not. Is it a valid solution?

3

There are 3 best solutions below

0
On BEST ANSWER

Check:

Below a plot of $v=2u^4+u^2-u$ and $v=u-\frac58$. Tangency proves the optimum.

enter image description here

By the way, this graphical representation hints that you have to find a double root of

$$2u^4+u^2-u=u-a,$$

hence the root of the derivative

$$8u^3+2u-1=1,$$ which lets you compute $a$.

0
On

Your solution is fine, as an alternative using implicit differentiation

$$2(x^3+y)^4+(x^3+y)^2=2x^3+y $$

$$\implies 24x^2(x^3+y)^3dx+8(x^3+y)^3dy+6x^2(x^3+y)dx+2(x^3+y)dy=6x^2dx+dy$$

$$(1-2(x^3+y)-8(x^3+y)^3)dy=(24x^2(x^3+y)^3+6x^2(x^3+y)-6x^2)dx$$

$$\frac{dy}{dx}=\frac{24x^2(x^3+y)^3+6x^2(x^3+y)-6x^2}{1-2(x^3+y)-8(x^3+y)^3}=0$$

that is

  • $x=0 \implies 2y^4+y^2-y=0 \implies y=0 \quad \lor \quad y\approx 0.59$

or

  • $4(x^3+y)^3+(x^3+y)-1=0 \implies x^3+y=\frac12 \implies 2\cdot\frac1{16}+\frac14=1-y \implies y=\frac 5 8$
0
On

In this case, since the restriction reads $v = 2u^4+u^2-u$, we can just maximize the function $f(u)= u - (2u^4+u^2-u) = -2u^4 - u^2 + 2u$. The maximum is attained at $u=\frac 12$ and $f(\frac 12)=\frac 58$.