1
$\begingroup$

I was working on a model for both drag and gravity acting on an object dropped from a certain height, as given by the ODE below: $$mv'(t)=mg-kv^2(t)$$ Where $m$ is the item's weight, $v(t)$ is its velocity (positive is downward), $g$ is gravity, and $k$ is the item's drag.

I got this fairly nasty integral: $$\frac1m \int \frac{dv}{mg-kv^2(t)}=\int dt=t+c$$

Any idea on how to proceed?

EDIT: I can factor out $\left (\sqrt{mg}+\sqrt kv(t) \right)\left (\sqrt{mg}-\sqrt kv(t) \right)$, so the integral becomes a question of partial fractions. My question has been resolved.

  • 5
    Partial fractions?2017-01-02
  • 0
    What would I factor? I don't see any factors that come to mind. EDIT: (x-y)(x+y) = x^2 + y^22017-01-02
  • 1
    Difference of squares: $(\sqrt{mg}-\sqrt{k}v)(\sqrt{mg}+\sqrt{k}v)$. (Assuming $k$ is positive. If $k$ were negative, then you'd have to look up the antiderivative of $1/(1+v^2)$ in a table - something to do with tangent.)2017-01-02
  • 0
    Yep. However, an item's drag will never be less than 1. ;)2017-01-02
  • 1
    Correct me if i'm wrong, but i'm confident you've either made a mistake when separating the variables or made a typo, it should be $m \int\frac{dv}{mg-kv^2}=\int dt$.2017-01-02

2 Answers 2

2

Another way to evaluate $\int \frac{dv}{mg-kv^2}$ is via substitution:

$$\begin{align} \int \frac{dv}{mg-kv^2} &= \frac{1}{mg} \int \frac{dv}{1-\frac{k}{mg}v^2} \\ &=\frac{1}{\sqrt{mgk}}\int \frac{du}{1-u^2} \\&=\frac{1}{\sqrt{mgk}} \tanh^{-1}(u)=\frac{1}{\sqrt{mgk}} \tanh^{-1} \left(v\sqrt{\frac{k}{mg}}\right)\end{align} $$

where we have done the substitution $u=v\sqrt{\frac{k}{mg}}$ in the second line.

0

By a suitable rescaling of time, you can rewrite as

$$v'=a^2-v^2,\\ \frac{v'}{a^2-v^2}=1.$$

You should recognize the derivative of the inverse of the hyperbolic tangent, and

$$\frac1a\text{artanh}\left(\frac va\right)=t$$

(as the object is dropped, the integration constant is $0$).

Then

$$v=a\tanh(at)$$ and by another integration

$$y-y_0=\log(\cosh(at)).$$