Quote (Azrad @ Feb 6 2014 09:21pm)
Here is your setup:
http://s27.postimg.org/j98ij975v/limit.png
does that agree with what you were doing? If so I'll go further.
Yes it does, could you finish with that program because
Quote (feanur @ Feb 6 2014 09:25pm)
f ' (x) = limit (as h -> 0) [ f(x+h) - f(x) ] / h
Let D = [ f(x+h) - f(x) ] / h
D = [ 3(x+h) / sqrt(x+h+4) - 3x / sqrt(x+4) ] / h
form one fraction :
D = [ 3(x+h).sqrt(x+4) -3x.sqrt(x+h+4) ] / [ h.sqrt(x+h+4).sqrt(x+4) ]
Expand a little in the numerator, then factorize by 3x :
D = [ 3x.(sqrt(x+4) - sqrt(x+h+4)) + 3h.sqrt(x+4) ] / [ h.sqrt(x+h+4).sqrt(x+4) ]
Separate into 2 fractions :
D = [ 3x.(sqrt(x+4) - sqrt(x+h+4)) ] / [ h.sqrt(x+h+4).sqrt(x+4) ] + 3 / sqrt(x+h+4)
Only the limit of the first fraction is not obvious. Like most of square roots issues, the trick is to use the conjugate :
sqrt(a) - sqrt(b) = ( a - b ) / ( sqrt(a) + sqrt(b) )
Hence :
D = - 3x / [ ( sqrt(x+4) + sqrt(x+h+4) ).sqrt(x+h+4).sqrt(x+4) ] + 3 / sqrt(x+h+4)
and now it's easy to find the limit as h -> zero :
f ' (x) = - 3x / [ 2.sqrt(x+4) ^3] + 3 / sqrt(x+4)
f ' (x) = ( -3x + 6(x+4) ) / [ 2.sqrt(x+4) ^3]
f ' (x) = (3x+24) / [ 2.sqrt(x+4) ^3]
this is pretty hard to follow