Answer: 52
Explanation:
You need to replace the x-values with 8 to solve this. So, the equation would look like this. f(8)= 7 x 8 - 5
7 times 8 is 56. 56 minus four is 52 which is your answer.
If you needed to graph this then it would look like this... (8, 52)
The 8 is in the input because it is the x-value (we replace x with 8) and 52 is output/range/y-value because it is the answer.
To graph ty function simply make a table of values, where you choose any value for x and substitute that value in the function.
Then take the absolute value of the expression in the square bracket.
It is always positive, the absolute value of -6 is 6 etc.
Then graph the resulting points.
Another way to do it is simply draw the graph of y = |x| then move it 2 spaces to the right and 4 spaces down, I believe.
Answer:
Step-by-step:
It takes him 1.4 minutes to read one page.
7x-3=7x+5
+3 +3
7x=7x+8
-7x-7x
x=8
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²).