I'm confused on how to find the difference quotient of a number.
I started out by defining my function.
Clear[f]; f[x_] = (12 x)/(Sqrt[(x^2 - 5)])
Then I found the difference quotient
DifferenceQuotient[f[x], {x, h}]
I figured to find the difference quotient at x=3 I would just do
DifferenceQuotient[f[3], {x, h}]
but that just outputs 0 and I don't believe that is correct.
DifferenceQuotient[f[x], {x, h}] /. x->3– kglr Sep 24 '17 at 17:40DifferenceQuotientwill look in the first argument for the variable that you provide in the second argument. Note thatf[3]is not an expression in the variablex. – Alan Sep 24 '17 at 18:00Limit[DifferenceQuotient[f[x], {x, h}] /. x -> 3, h -> 0] == f'[3]evaluates toTrue– Bob Hanlon Sep 24 '17 at 18:23