Number of Bacteria.

140 ビュー (過去 30 日間)
Saumya Singh
Saumya Singh 2021 年 8 月 27 日
回答済み: CHIRAG PATEL 2022 年 1 月 20 日
. The number N of bacteria in a culture grew at a rate proportional to N. The value of N was initially 100 and increased to 332 in 1 hr. The governing equation is dN dt = log(3.32)N, N(0) = 100. What is the value of N at time t = 1.5 hr.

採用された回答

Wan Ji
Wan Ji 2021 年 8 月 27 日
Here you can use symbolic solution
syms N(t) t
eq = diff(N)==log(3.32)*N
N = dsolve(eq,N(0)==100)
N_1dot5_hour = eval(subs(N,t,1.5))
Result becomes
N_1dot5_hour =
6.049327896551812e+02
So the value of N at time t = 1.5 hr is approximately 605.
  1 件のコメント
Image Analyst
Image Analyst 2021 年 8 月 27 日
@Saumya Singh some professors use plagiarism detectors so be careful about submitting Wan Ji's solution as your own original work for your homework. If you get caught, you could be in trouble.

サインインしてコメントする。

その他の回答 (1 件)

CHIRAG PATEL
CHIRAG PATEL 2022 年 1 月 20 日
If the growth rate of a culture of bacteria is proportional to the number of bacteria present and after 1 day is 1.25 times the original number, within what interval of time will the number of bacteria (a) double, (b) triple?

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by