You can put this solution on YOUR website! How do you solve functions like these?
f(x) = x^3
f(x + Δx) − f(x) = x^3+3x^2*dx+3x*(dx)^2+(dx)^3 - x^3
Δx
----
Divide the difference by dx to get::
= [3x^2*dx + 3x*(dx)^2 + (dx)^3]/dx = 3x^2 + 3x(dx) + (dx)^2)
(Δx ≠ 0)
------
If you now take the limit as x approaches zero you get::
= 3x^2
===========
Cheers,
Stan H.
------------