Proving the Maximum Rule in Big O Notation

  • Thread starter Thread starter khdani
  • Start date Start date
  • Tags Tags
    Maximum
khdani
Messages
53
Reaction score
0
Hello,
please help me to prove that:
O(max(f1(n),f2(n),...,fk(n))) = O(f1(n) + f2(n) + ... + fk(n))

thank you
 
Physics news on Phys.org
Proof by induction looks like the obvious thing to try.
 
what O meens?

there is some logical error
weird flying robot question

in the first part you mention:
O(max(f1(n),f2(n),...,fk(n)))
i can only guess that the max function returns the maximal value
among the presented functions
on the other hand you say that this maximal value should be equaled to the sum
of all the presented functions in the list.
i think that the only way i t could work
is when all the functions except one are all zeros
you have f1=0 f2=0 ..f15=50 f16=0 etc..
then their sum also equals to the maximal function value.
this whole thing is only a presumption

well i am back to my digital design questions
 
Last edited:
If you do not understand a notation, just ask about it and assume that what other people are saying is wrong!

The "O" notation refers to the "order" or, for functions of an integer, n, the rate of convergence (or divergence) as n goes to infinity. Saying that O(max(f1(n), f2(n),..)= O(f1(n)+ f2(n)+ ...) says that the sequence formed by choosing ai the largest of f1(i), f2(i), ..., converges (or diverges) as fast as the sequence an= sum of f1(n)+ f2(n)+ ...
 
'O' is the 'Big Oh' notation in complexity theory.

HallsofIvy, you're right the proof is by induction.
I've used the fact that f1(n)+...+fk(n) <= k*max(f1(n),...,fk(n)) (proved by induction also), am I on the right route ?
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top