English 中文(简体)
a) b >0, b^n in Big-O a^n
原标题:Prove for any a > b >0, b^n in Big-O a^n

证明任何实际数字,a、b、a、b、b、0、b^n为O(a^n)、n >=1。

我已经搜索了我拥有的几本关于离散数学的教科书,并对与这一证据有关的类似或核心实例进行了几次在线搜索。 我并不寻求直接的解决办法,但或许可以证明解决证据的适当方法或范式。

最佳回答

如果是,

Prove that for any real numbers, a, b such that a > b > 0, b^n is O(a^n)

然后考虑<代码>O(a^n)的定义。

http://en.wikipedia.org/wiki/Big_O_notation”rel=“nofollow”

1) For f(x), g(x) defined on a subset of reals
2) if there exists some positive **constant** M and real number x_0, such that
3) if ABS(f(x)) <= M * ABS(g(x)) for all x > x_0

In this case f(x) = b^x and g(x) = a^x. I m going to treat this question as if it s a homework question, even though it isn t tagged as one...please correct me if I m wrong!

考虑将脂肪分解成步骤(特别是第3步骤),看看看你是否能够在 任何 x_0, M pair for which is real. 亲爱!


EDIT I changed f(x) = b^n and g(x) = a^n to f(x) = b^x and g(x) = a^x


<EDIT - HINT

第3步可解释为:

ABS(f(x)) / ABS(g(x)) <= M for all x > x_0

选择你喜欢的固定<代码>M,然后看看你是否能够找到某些<代码>x_0,其中所有x。

问题回答

暂无回答




相关问题
Prove or disprove n^2 - n + 2 ∈ O(n)

For my algorithm analysis course, I ve derived from an algorithm the function f(n) = n^2 - n + 2. Now I need to prove or disprove f(n) ∈ O(n). Obviously it s not, so I ve been trying to disprove that ...

Complexity proof

I would to prove the following example: n^k = O (c^n) for every k and c>1 It is noticeable that the polynomial function grows faster than exponential function. We try to find k0 > 0 satisfying ...

Stable Matching Problem

I am currently reading an Algorithm s book and came across the Stable Matching Problem. And a question came to mind that I m curious about, but the book doesn t answer. In every SMP is it possible to ...

prove n = Big-O(1) using induction

I know that the relation n = Big-O(1) is false. But if we use induction involving Big-O it can be proved. But the fallacy is we cannot induct Big-O. But my question is how we can disprove the relation ...

Explain the proof by Vinay Deolalikar that P != NP [closed]

Recently there has been a paper floating around by Vinay Deolalikar at HP Labs which claims to have proved that P != NP. Could someone explain how this proof works for us less mathematically ...

Have I checked every consecutive subset of this list?

I m trying to solve problem 50 on Project Euler. Don t give me the answer or solve it for me, just try to answer this specific question. The goal is to find the longest sum of consecutive primes that ...

Formally verifying the correctness of an algorithm

First of all, is this only possible on algorithms which have no side effects? Secondly, where could I learn about this process, any good books, articles, etc?

Writing a proof for an algorithm [closed]

I am trying to compare 2 algorithms. I thought I may try and write a proof for them. (My math sucks, so hence the question.) Normally in our math lesson last year we would be given a question like <...

热门标签