Thursday, November 15, 2018

calculus - Integration operation, and its relation to differentials



I need to get a few things straight about the integration operation (as an intro calc student). I understand that integration is a process that takes a function and returns its antiderivative. We can think of it as an operator, where ...dx is kind of like an opening and a closing bracket for an input function. This is how I interpret integration: the summa and the differential (the closing "bracket") are inseparable, since they are part of the same notation. However, my professor confused me with his derivation of velocity under constant acceleration:



dvdt=a


vdvdt=va

vdvdt=adxdt

Then he "cancels" the dt
vdv=adx


The next part is what confuses me:
v2v1vdv=ax2x1dx

which comes out to be
12v2212v21=a(x2x1)



My primary question is, how did the two summas appear, if there were no corresponding differentials at the time of application? This is disconcerting because the same operation is supposed to be applied to both sides of the equation, and those look like two different operations in terms of two different variables. Shouldn't he have done something like t2t1vdv dt=t2t1adx dt?



If it's no trouble, I have two additional questions. Why does he use v2v1...dv rather than ...dv? Also, what justifies that he "cancels" the dt differentials?


Answer



So you can get to here without trouble:




vdvdt=adxdt



The next step is simply to integrate both sides with respect to t from t1 to t2:



t2t1vdvdtdt=t2t1adxdtdt






Now we just need to show that the dt's "cancel". To do so we just need to use u-substition. Forgetting about the RHS for the moment, we start with




t2t1v(t)dv(t)dtdt



Let u=v(t), then du=dv(t)dtdt. So



t2t1v(t)dv(t)dtdt=u(t2)u(t1)udu

or changing the variable name back to v, we have t2t1v(t)dv(t)dtdt=v(t2)v(t1)vdv



Then do the same thing for the RHS.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...