Processing math: 100%

2014-07-02

Back to the old way

Leibniz' way of expressing the derivative of one implicit function with respect to another was to write dydx – intuitively the infinitesimal change in y divided by the infinitesimal change in x, giving a gradient. Of course, when division is flipped, this becomes dxdy, putting the variables in the familiar (x,y) order.

So, now imagine that x isn't the independent variable, and we instead have an unnamed independent variable that can be used via ι. The derivative of x is just known as Dx, and the derivative of y, with respect to the independent variable, is Dy.

Let's do something easy. Let y=x+sinx. Notice that sinx becomes sinx when we evaluate the expression, since x is an RR function (or CC or whatever). Also, the whole thing is forked over +. We can rewrite the equation as y=(ι+sin) x. Then we can differentiate, using the chain rule: Dy=(1+cos) xDx. Magically, we're left with:
DxDy=1+cosxWhereas it's a sin in normal mathematics to throw around solitary dxs, Dxs are just ordinary functions. You can do whatever you want with them.

Let's try something a little more interesting. Consider:
2x+2y=12xDx+2yDy=0applied D to both sidesyx+DxDy=0applied (2yDx/) to both sidesDxDy=yx0applied (yx) to both sidesSee that curried functions are useful for documentation. They give us the option to be more symbolic, rather than using verbose phrases like “divide through by ...” which have to be translated before we can see them interacting with the equation at hand.

No comments:

Post a Comment