In this case, f(n), g(n), and h(n) are asymptotically positive functions, which means that there exists an N such that f(n)/g(n)/h(n) > 0, for all n >= N. Given that:
f(n) = Θ(g(n))
g(n) = Θ(h(n))
I need to prove that
f(n=Θ(h(n))).
It is suggested to use the formal definition of Θ, which states that if f(n) = Θ (g(n)) means there are positive constants c1, c2, and k, such that 0 ≤ c1g(n) ≤ f(n) ≤ c2g(n) for all n ≥ k. The values of c1, c2, and k must be fixed for the function f and must not depend on n. I have found examples similar to this such but am still unsure as to how to address this problem. Can anyone point me in the right direction?
EDIT: My current guess is to try and use the transitive property, which states if a=b and b=c then a=c. I'm not sure this is exactly correct but it is my best guess for now. The syntax of the f(n=Θ(h(n))) is confusing me the most. I am not completely sure as how to interpret it.