The following two calculations should give the same result. After all, integration is a linear operation.

I have pasted the code below in case you want to play with it.
Integrate[Integrate[v[x], x] -
Integrate[Integrate[v[x], x] * u'[x], x]/u[x], x]
Integrate[Integrate[v[x], x], x] -
Integrate[Integrate[Integrate[v[x], x] * u'[x], x]/u[x], x]
Comments
Post a Comment