Here's a simple example comparison.
Non-implicit ( y = f(x) )
y = x + 1
dy/dx = 1
Implicit ( y = f(x,y) )
y = x*y + 1
dy/dx = y*1 + x*dy/dx
(1 - x)dy/dx = y
dy/dx = y/(1 - x)
But (1 - x)y = 1, or y = 1/(1 - x), so, substituting this in the above, we get dy/dx = 1/(1-x)2
In this case, from y = 1/(1-x) we could have written directly; dy/dx = -(1-x)-2*(-1) or dy/dx = 1/(1-x)2, the same as above.
However, we can't always rearrange y = f(x,y) to get y = f(x) explicitly, so sometimes we are forced to use implicit differentiation.
.