Solving a Differential Equation Modeling Bacterial Growth

Click For Summary

Discussion Overview

The discussion revolves around evaluating a limit related to a differential equation modeling bacterial growth, specifically focusing on the concentration of a critical substance over time. Participants explore various approaches to find the limit of the function as time approaches infinity, including the application of L'Hôpital's rule and other algebraic manipulations.

Discussion Character

  • Mathematical reasoning
  • Exploratory
  • Technical explanation
  • Homework-related

Main Points Raised

  • One participant presents the limit to evaluate: lim_{t \to \infty} \frac{q(t)}{1 + q(t)}, where q(t) = q_0 e^{vt}.
  • Another participant suggests that as t increases, the exponential term dominates, leading to a limit of 1, provided v > 0.
  • Some participants question whether the limit is in an indeterminate form and discuss the applicability of L'Hôpital's rule.
  • There are discussions about the behavior of the numerator and denominator as t approaches infinity, with emphasis on the conditions of v.
  • One participant expresses confusion regarding the manipulation of the limit and the implications of obtaining an indeterminate form.
  • Another participant confirms that dividing both the numerator and denominator by q(t) simplifies the limit evaluation.
  • There are repeated references to the conditions under which L'Hôpital's rule can be applied, with some participants expressing uncertainty about its use.

Areas of Agreement / Disagreement

Participants generally agree that the limit approaches 1 when v > 0, but there is no consensus on the best method to evaluate the limit, with some favoring L'Hôpital's rule and others preferring algebraic manipulation. The discussion remains unresolved regarding the application of L'Hôpital's rule and its implications for different scenarios.

Contextual Notes

Participants note that the limit evaluation depends on the values of v and q0, with both being greater than zero as per the problem parameters. There is also mention of the indeterminate form ∞/∞ arising in the limit evaluation, which complicates the analysis.

Who May Find This Useful

Readers interested in differential equations, limit evaluation techniques, and mathematical reasoning in the context of biological modeling may find this discussion beneficial.

ranger
Gold Member
Messages
1,687
Reaction score
2
So I've been given a differential equation that models bacterial growth, p(t), and the concentration of critical substance, q(t), whatever that's suppose to mean. I've solved both of these and found that:
[tex]q(t) = q_0 e^{vt}[/tex]
Where q0 is the amount critical substance at t=0. v is a constant.

I am then asked to take the limit of q(t) as follows:
[tex]\lim_{t \to \infty} \frac{q(t)} {1 + q(t)}[/tex]
which comes out to be:
[tex]\lim_{t \to \infty} \frac{ q_0 e^{vt}} {1 + (q_0 e^{vt})}[/tex]

Its been a while since I've done limits of this sort. So how would I approach this?

I'm just doing some exercises. Mentors can move it where they see fit
 
Physics news on Phys.org
Roughly speaking, the exponential term gets huge while 1 stays about the same size, so the bottom begins to look more and more like the top, and so the limit is 1. More formally, multiply the top and bottome by 1/q(t), and you'll get something that should be slightly easier to deal with. Unless v<0, but since you're talking about "growth", I'm guessing it isn't.
 
Is this limit in an indeterminate form (for certain values of v)? If so can we use l'hopital's rule on it dirrectly?
 
StatusX said:
Roughly speaking, the exponential term gets huge while 1 stays about the same size, so the bottom begins to look more and more like the top, and so the limit is 1. More formally, multiply the top and bottome by 1/q(t), and you'll get something that should be slightly easier to deal with. Unless v<0, but since you're talking about "growth", I'm guessing it isn't.

Thanks for the quick response.

But multiplying the top and bottom by 1/q(t) seems to put me back to where I started.
 
If V>0 what does the numerator's limit tend to? If V>0 what does the denominator's limit tend to? Ask your self the same questions about V<0.
 
Doing that leaves 1/(1+1/q(t)). What happens to 1/q(t) when t gets very big?
 
JonF said:
If V>0 what does the numerator's limit tend to? If V>0 what does the denominator's limit tend to? Ask your self the same questions about V<0.
Well this is my entire problem. If I choose a value greater than zero for v and I let t get bigger and bigger, the overall value increases (inf?). The same happens for the denominator. Conceptually I guess I can see what's going to happen, but I simply forgot how to do these kinds of this with inf on paper. I think the q0 in there is also confusing me. I feel so embarrassed :shy: btw, V would always be greater than zer0 as per the problem parameters.
StatusX said:
Doing that leaves 1/(1+1/q(t)). What happens to 1/q(t) when t gets very big?

The quotient gets smaller and smaller.
 
can you see that if we look at the numerator and denominator as individual functions they each tend towards infinity for v>0? If so do you remember what l'hopital's rule says?
 
let f(t) = q_0e^(vt)
let g(t) = 1 + q_0e^(vt)

l'hopital's rule says that if as t tends towards infinity f(t) tends towards infinity and g(t) tends towards infinity, then the limit as t tends towards infinity of f(t)/g(t) is the same as f'(t)/g'(t).
 
  • #10
JonF said:
let f(t) = q_0e^(vt)
let g(t) = 1 + q_0e^(vt)

l'hopital's rule says that if as t tends towards infinity f(t) tends towards infinity and g(t) tends towards infinity, then the limit as t tends towards infinity of f(t)/g(t) is the same as f'(t)/g'(t).

OK, I think i understand what you are saying. So because my t is approaching inf, both the numerator and denominator will become inf, giving inf/inf which is indeterminate, so if I keep on taking the derivative, the limit would always be inf/inf, correct? I can make life easier by doing the following:
[tex]\lim_{t \to \infty} \frac{e^{t}} {e^{t}}[/tex]
But how can I have an indeterminate answer for a problem that's related to population growth?
 
Last edited:
  • #11
Hello ranger,

multiply your fraction by [tex]\frac{e^{-vt}} {e^{-vt}}[/tex] :

[tex]\lim_{t \to \infty} \frac{e^{-vt}} {e^{-vt}} \frac{ q_0 e^{vt}} {1 + (q_0 e^{vt})}[/tex]
 
  • #12
Ranger, StatusX's initial suggestion is the simplest. The crucial point is not just that t is going to infinity, but that, according to you q(t) is going to infinity.
Dividing both numerator and denominator of
[tex]\frac{q(t)}{1+ q(t)}[/tex]
by q(t) gives, just as you said before
[tex]\frac{1}{\frac{1}{q(t)}+ 1}[/tex]
Now, as q(t) goes to infinity, again, as you said, 1/q(t) goes to 0 so that whole fraction goes to what?
 
  • #13
HallsofIvy said:
Ranger, StatusX's initial suggestion is the simplest. The crucial point is not just that t is going to infinity, but that, according to you q(t) is going to infinity.
Dividing both numerator and denominator of
[tex]\frac{q(t)}{1+ q(t)}[/tex]
by q(t) gives, just as you said before
[tex]\frac{1}{\frac{1}{q(t)}+ 1}[/tex]
Now, as q(t) goes to infinity, again, as you said, 1/q(t) goes to 0 so that whole fraction goes to what?

So since 1/q(t) in the denominator goes to zero, we would simply have 1/1. Which of course comes out to be 1, right?

One more question. Taking the limit in the original form (without multiplying by 1/q(t)), we would get inf/inf. But we are sort of manipulating the problem so we don't get a indeterminate answer, which is understandable for a problem like this. But when faced with limits other than this, we would still have to do this sort of thing?
 
Last edited:
  • #14
If two functions are the same same for all x except the point at which the limit is being taken, then their limits are the same so "manipulating the problem" works. I'm not sure what you mean by "limits other than this". If there is a simpler way to find a limit (for example [itex]\lim_{x\rightarrow a} f(x)/g(x)[/itex] where f and g are continuous and g(a) is NOT 0) then you certainly don't HAVE to do it!
 
  • #15
The others' answers seem more intuitive. But in a pinch, it never hurts to L'Hopitalize a quotient (assuming, of course, that it's an indeterminate form). Do you remember the conditions of L'Hopital's Rule?
 
  • #16
arunma said:
The others' answers seem more intuitive. But in a pinch, it never hurts to L'Hopitalize a quotient (assuming, of course, that it's an indeterminate form). Do you remember the conditions of L'Hopital's Rule?

Since this is in indeterminate form, let's see what happens when L'Hopital's rule is applied. But it seems that if I take the derivative of the numerator and denominator, I'd still get inf/inf. I am applying L'Hopital's correctly?
 
  • #17
ranger said:
So I've been given a differential equation that models bacterial growth, p(t), and the concentration of critical substance, q(t), whatever that's suppose to mean. I've solved both of these and found that:
[tex]q(t) = q_0 e^{vt}[/tex]
Where q0 is the amount critical substance at t=0. v is a constant.

I am then asked to take the limit of q(t) as follows:
[tex]\lim_{t \to \infty} \frac{q(t)} {1 + q(t)}[/tex]
which comes out to be:
[tex]\lim_{t \to \infty} \frac{ q_0 e^{vt}} {1 + (q_0 e^{vt})}[/tex]

Its been a while since I've done limits of this sort. So how would I approach this?

I'm just doing some exercises. Mentors can move it where they see fit


it depends on whether [itex]v>0[/itex], [itex]v=0[/itex], or [itex]v<0[/itex] . is that known?
 
  • #18
Yup. both v and q0 are greater than zero.

I've already found the limit to be 1. But I want to see how L'Hopital would work. Believe it or not, I don't ever recall using L'Hopital rule to evaluate a limit. But then again its be 1.5 years since calc I.
 
  • #19
L'Hopital's rule stated that:
If [tex]\lim_{x \rightarrow \alpha} \frac{f(x)}{g(x)}[/tex] is of the Indeterminate Form 0/0 or [tex]\frac{\infty}{\infty}[/tex], g′(x) is nonzero throughout some interval containing [tex]\alpha[/tex], and that the limit: [tex]\lim_{x \rightarrow \alpha} \frac{f'(x)}{g'(x)}[/tex] exists, then:

[tex]\fbox{\mathop{\lim} \limits_{x \rightarrow \alpha} \frac{f(x)}{g(x)} = \mathop{\lim} \limits_{x \rightarrow \alpha} \frac{f'(x)}{g'(x)}}[/tex]​

In the problem, since v > 0 (as you stated), we have:
[tex]t \rightarrow +\infty \Rightarrow q(t) = q_0 e ^ {vt} \rightarrow \infty[/tex], the limit has the form [tex]\frac{\infty}{\infty}[/tex].
By using L'Hopital's rule, we obtain:
[tex]\lim_{t \rightarrow + \infty} \frac{q_0 e ^ {vt}}{1 + q_0 e ^ {vt}} = \lim_{t \rightarrow + \infty} \frac{(q_0 e ^ {vt})'}{(1 + q_0 e ^ {vt})'} = \lim_{t \rightarrow + \infty} \frac{vq_0 e ^ {vt}}{vq_0 e ^ {vt}} = 1[/tex]
:)
 
Last edited:
  • #20
hehe, now I get it. Thank you VietDao29.
 
  • #21
So as time approaches infinity, the amount of critical substance approaches 1. What is this limit suppose to signify?
 
  • #22
I don't think you've interpreted that correctly, ranger. You found that the limit of [itex]q(t)/(q(t)+1)[/itex] is 1. That quantity is not the amount of the critical substance. That amount is [itex]q(t)[/itex] itself. And that quantity tends to infinity as time goes to infinity. That would make sense under the second interpretation of "critical substance" that I presented to you in the Bio forum. At least, it would make sense if the bacteria population had unrestrained growth.

I'm not sure of what the quantity [itex]q(t)/(q(t)+1)[/itex] even means.
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 19 ·
Replies
19
Views
5K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K