For each of the following functions indicate how much the fu
For each of the following functions, indicate how much the function\'s value will change if its argument is increased q times (q is the number of letters in your surname, e.g. ACAR q=4). a. log_2n b. Squareroot n c. n d. n^2 e. n^3 f. 2^n
Solution
Here argument is n.
Let surname is ACAR so if intitally q=1 then finally q=4
so argument is increased from 1 to 4
so the function value will change ------>
| q=1 | q=4 | changes | ||
| a | log2n | 0 | 2 | 2 |
| b | sqrt(n) | 1 | 2 | 1 |
| c | n | 1 | 4 | 3 |
| d | n2 | 1 | 16 | 15 |
| e | n3 | 1 | 64 | 63 |
| f | 2n | 2 | 16 | 14 |
