Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~172 People Reached
Favorite Tags
c++ x 2
Member Avatar for Jeffro_i4i

Suppose that g1(n) ∈ Θ(f1(n)) and g2(n) ∈ Θ(f2(n)), where g2 and f2 are eventually positive. Prove that g1(n)/g2(n) ∈ Θ(f1(n)/f2(n)) and show that this does not necessarily hold is if Θ is replaced with O. I think I may have the first part figured out I just need some …

0
60
Member Avatar for Jeffro_i4i

I am to create a project that evaluates math expressions and their derivatives. I have a Formula class with only virtual functions: virtual void print() virtual void print(int) virtual Formula *derivative() virtual int evaluate() Then I have 7 other classes which inherent from Formula, they are: Variable Constant Add Multiply …

Member Avatar for Ancient Dragon
0
112