f5(n) = sin(n) + 5f7(n) = (1003)43Exercise: Big-Oh DefinitionsTerry the Terrific Tiger wants to prove, from the definition of big-Oh, thatf(n) =O(g(n)),wheref(n) = 6nandg(n) =n2−3n.3.1“c=1”(2 pt.)In the definition of big-Oh, Terry really wants to takec= 1.Give a proof thatf(n) =O(g(n))in which "c" is chosen to be 1.3.2“n0=4”(2 pt.)Terry has changed their mind. Now, they don’t care whatcis, but would like to taken0= 4. Give a different proof thatf(n) =O(g(n))in which "n0" is chosen to be 4.3.1:We want to prove thatf(n) =O(g(n)), meaning that we have to prove, from the definitionof big-Oh, that∃c, n0>0s.t∀n≥n0, f(n)≤c·g(n)wherecis chosen to be1.Letn0= 9. We will prove thatf(n)≤c·g(n)holds for alln≥n0, wherec= 1. We cansimplify the inequality:f(n)≤1·g(n)(1)6n≤n2−3n(2)0≤n2−9n(3)Solving gives usn≥9, so we can see that for alln≥9,f(n)≤1·g(n)holds. Therefore,we have proven thatf(n)≤1·g(n)holds for alln≥n0wheren0= 9, which proves thatf(n) =O(g(n)).■3.2:We want to prove thatf(n) =O(g(n)), meaning that we have to prove, from the definitionof big-Oh, that∃c, n0>0s.t∀n≥n0, f(n)≤c·g(n)wheren0is chosen to be4.