
An L.
asked 02/04/18Differential Calculus
1 Expert Answer
Michael K. answered 02/27/21
PhD professional for Math, Physics, and CS Tutoring and Martial Arts
Given the function x2* sqrt(x) = f(x), we can simplify this using exponents to a single expression involving x...
Sqrt(x) = x1/2
So, f(x) can be represented as x2 * x1/2 = x5/2
Now using furst principles, we use Newton's method...
f'(x) = lim x->0 [ f(x + h) - f(x) ]/ h
f(x+h) = (x+h)5/2 = (x+h)2 * sqrt(x+h)
f(x+h) = (x2 + 2xh + h2) * sqrt(x+h)
The sqrt function complicates the issue so we will attempt to rewrite Netwon's method to mitigate the effect if the sqrt function...
Multiplying by the number 1 doesnt change the function...
f'(x) = lim x->0 [ (f(x+h) - f(x)) * ( f(x+h) + f(x) )/( f(x+h) + f(x) )]/ h
f'(x) = lim x->0 [ (f(x+h)2 - f(x)2) ]/ (h * (f(x+h) + f(x))
Looking at the numerator gives...
(x+h)5 - x5 = x5 + 5x4h + 10x3h2 + 10x2h3 + 5xh4 + h5 - x5
= 5x4h + 10x3h2 + 10x2h3 + 5xh4 + h5
Looking at the denominator gives...
f(x+h) + f(x) = (x+h)2sqrt(x+h) + x2sqrt(x)
Now dividing by h from the denominator into the numerator leaves..
f'(x) = lim x->0 [5x4 + 10x3h + 10x2h2 + 5xh3 + h4]/(x+h)2sqrt(x+h) + x2sqrt(x)
f'(x) = 5x4 / 2x2sqrt(x) = 5/2 * x2 / sqrt(x) = 5/2 * x3/2

Michael K.
02/27/21
Still looking for help? Get the right answer, fast.
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Bobosharif S.
02/04/18