A particle travels at #2 units per# second along the curve #y=x^3-3x^2+2#. How long does it take to travel from the local maximum to the local minimum?

2 Answers
Dec 21, 2017

about 2.296 seconds

Explanation:

the answer is the curve length divided by the speed

to find curve length, first find the x-values of the local min and max (there's either one of each or neither as y(x) is a cubic).

to find local min/max, first find #y'(x)#:
#=3x^2-6x#

#y'(x)# equals 0 at the local min/max:
#3x^2-6x=0#
#3x(x-2)=0#
#x=0,2#

so the curve length is from #x=0# to #x=2#

curve/arc length using formula = #int_0^2sqrt(1+(f'(x))^2)dx#
#=int_0^2sqrt(1+(3x^2-6x)^2)dx#
#=int_0^2sqrt(1+9x^4-36x^3+36x^2)dx#

i'm not sure how to integrate that, so if you use a calculator,
#int_0^2sqrt(1+9x^4-36x^3+36x^2)dx# is about 4.592 units.

time elapsed: 4.592/2 seconds = about 2.296 seconds

Dec 21, 2017

Approximately #2.3# seconds.

Explanation:

This is an interesting problem. Let's start by finding the local max/min.

#y' = 3x^2 - 6x#

This will have critical values when #y' = 0#.

#0 = 3x^2- 6x#

#0 = 3x(x - 2)#

#x = 0 or 2#

We are guaranteed that one of these will be the local max and the other local min, because those are the only two options considering the nature of the function.

Now we want to find the arc length of the curve from #0# to #2#, because this will be the distance travelled.

The formula for arc length is

#A = int_a^b sqrt(1 +(y')^2) dx#

In our case

#A = int_0^2 sqrt(1 + (3x^2 - 6x)^2) dx#

#A = int_0^2 sqrt(1 +9x^4 - 36x^3 + 36x^2) dx#

Which according to the integral calculator has no elementary solution. But using an approximation calculator, or a computer algebra system, you should get the arc length to be approximately #4.592# units. Since #s = d/t#, where #s# is speed , #d# is distance and #t# is time, #t = d/s#, thus #t = (4.592 u)/(2u/s) ~~ 2.3 s#

Hopefully this helps!