B:Interest
Hoped this helped have a nice day
A+b = 5
b+c= 3 1/2
2 times 2 + 3 = 7
a times d =8
c+c = 1
(e)2 = 1/9
Answer:
Step-by-step explanation:
2. Each time x goes up on the left side 6 is removed from the right side f(x)= F(-6)
3. slope is y = -1/2 x + 4 the formula is y = mx+b so -1/2 x and b is the number that touches the line for y which is 4.
4. every time an x is added on the left side 3 are added on the right side f(3)
Answer:
A. |x|=9 D. -|-x|=-9 F. |-x|=9
Step-by-step explanation:
a. |9|=9
D. -|9| = -9
F. 9=9
Answer:
The running time is quadratic (O(n²) )
Step-by-step explanation:
For the set up, we have a constant running time of C. The, a log-linearsorting is called, thus, its execution time, denoted by T(n), is O(n*log(n)). Then, we call n times a linear iteration, with a running time of an+b, for certain constants a and b, thus, the running time of the algorithm is
C + T(n) + n*(a*n+b) = an²+bn + T + C
Since T(n) is O(n*log(n)) and n² is asymptotically bigger than n*log(n), then the running time of the algorith is quadratic, therefore, it is O(n²).