Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/algorithm/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Algorithm 算法与θ(b)的确定_Algorithm - Fatal编程技术网

Algorithm 算法与θ(b)的确定

Algorithm 算法与θ(b)的确定,algorithm,Algorithm,给定一个等式,我必须确定θ(b),我正努力这么做: 例如: 问题: 确定第1项和第2项,使a=θ(b) 1) 3n+5n^2+7 (二) A.n^2 B.n^3 C.日志(n) D.根(n) E.3^n F.2^n G.n H.1 I.n^1.5 换句话说,我需要将1)中的术语与2)中的术语进行匹配 有人能告诉我怎么做吗 我试过使用计算器,但我不认为这是正确的,因为我不知道你会怎么做θ(b)我不明白@sinanspdTheta是数学中的一个特殊函数,它描述了一个类似于大O的函数的极限行为。你可以

给定一个等式,我必须确定θ(b),我正努力这么做:

例如:

问题: 确定第1项和第2项,使a=θ(b)

1) 3n+5n^2+7

(二)

A.n^2

B.n^3

C.日志(n)

D.根(n)

E.3^n

F.2^n

G.n

H.1

I.n^1.5

换句话说,我需要将1)中的术语与2)中的术语进行匹配

有人能告诉我怎么做吗


我试过使用计算器,但我不认为这是正确的,因为我不知道你会怎么做θ(b)

我不明白@sinanspdTheta是数学中的一个特殊函数,它描述了一个类似于大O的函数的极限行为。你可以阅读这里的差异。这里的问题要求你配对函数f&g,使f在g的上下渐近有界。你可以在这里读到θ,在大θ上做一些挖掘&它意味着什么。网上有很多资源。一旦你明白了,答案应该是直截了当的