I have come across the need to quickly perform linear approximations, for example I ran across this simplification provided r << d (I think maybe it should be r >> d).
$2(r + d)^{-2} - r^{-2} - (r + 2d)^{-2} = 2 - \frac{2d}{r} - 1 - 1 + \frac{2d}{r}$. Could someone explain how to do this kind of computation? I don't see where that simplification came from.
What I do know is that $(r + d)^{2} = r^{2}(1 + \frac{d}{r})^{2} \approx r^{2}(1 + \frac{2d}{r})$ provided r >> d. When I use that to simplify the expression above, I do not get the result above.