I am a molecular biologist and reading a book on mathematical modeling. In this book I encountered the following algebraic conversion and could not figure out how the conversion is performed. Please let me know the steps in such kind of conversions and also recommend me some short text/easy literature to know, how one can perform this.
Following expression $$ \frac{dP}{dt}=(m*(F-c*P)-n)*P $$ was changed into $$ \frac{dP}{dt}=(m*F-n)*[1-((m*c)/(m*F-n))*P]*P $$ Best Regards,
Mazhar Hussain
This is a simple factoring. Omitting the factor $P$ at the end (which stays the same)
$$ m*(F-c*P)-n = m*F -m*c*P -n = (m*F-n) - m*c*P = (m*F-n)*\left[1 - \dfrac{m*c*P}{m*F-n}\right] $$
What happened here is something like this:
$$ x - a = x \left(1 - \dfrac{a}{x}\right) $$