中学生物/目录/种群/种群的数量变化/思考题1

来自testwiki
跳转到导航 跳转到搜索

在营养和生存空间没有限制的情况下,某种细菌每20min就通过分裂繁殖一代。

阅读上面的文字,思考下列问题。

  1. n代细菌数量的计算公式是什么?
  2. 72h后,由一个细菌分裂产生的细菌数量是多少?
  3. 在一个培养基中,细菌的数量会一直按照这个公式增长吗?如何验证你的观点?
  4. 请你做出时间(min)-细菌数量(个)的图像,来表示你的公式。

Template:HideH

  1. 如果用Nn代表n代细菌数量,则有Nn=2n
  2. 72h内会产生216代。如果用N代表72h后的细菌数量,则有N=N216=2216
  3. 细菌数量不会永远按这个公式增长。可以用实验计数法来验证。
  4. <graph>{

"version": 2, "width": 400, "height": 200, "data": [ { "name": "table", "values": [ { "x": 0, "y": 1 }, { "x": 20, "y": 2 }, { "x": 40, "y": 4 }, { "x": 60, "y": 8 }, { "x": 80, "y": 16 }, { "x": 100, "y": 32 }, { "x": 120, "y": 64 }, { "x": 140, "y": 128 }, { "x": 160, "y": 256 }, { "x": 180, "y": 512 } ] } ], "scales": [ { "name": "x", "type": "linear", "range": "width", "zero": false, "domain": { "data": "table", "field": "x" } }, { "name": "y", "type": "linear", "range": "height", "nice": true, "domain": { "data": "table", "field": "y" } } ], "axes": [ { "type": "x", "scale": "x" }, { "type": "y", "scale": "y" } ], "marks": [ { "type": "line", "from": { "data": "table" }, "properties": { "enter": { "x": { "scale": "x", "field": "x" }, "y": { "scale": "y", "field": "y" }, "y2": { "scale": "y", "value": 0 }, "interpolate": { "value": "monotone" }, "stroke": { "value": "steelblue" }, "strokeWidth": { "value": 3 } } } } ] }</graph>【图中横轴表示时间(min),纵轴表示细菌数量(个)】 Template:HideF