the measurement for 18.9 m is 0.05
12 is the answer to the question
Answer:
$822
Step-by-step explanation:
4*165+3*54=822
good luck
Answer:
- reflection over the x-axis
- translate right 2 units
- translate down 3 units
Step-by-step explanation:
Horizontal translation of the graph of a function is accomplished by replacing x with (x-h) for translation h units to the right. Vertical translation of the graph is accomplished by adding the amount of translation to the function value: f(x)+k translates the graph k units upward.
Reflection of a function over the x-axis is accomplished by changing the sign of every function value: -f(x).
<h3>Application</h3>
We observe that f(x) has been transformed by ...
- multiplying by -1 to get -f(x)
- replacing x with (x -2) to get -f(x -2)
- adding -3 to the function value to get -f(x -2) -3
The effect of these transformations is (correspondingly) ...
- reflection over the x-axis
- translate right 2 units
- translate down 3 units
__
The attached graph shows a function f(x) (red) and the transformed function (blue).
Answer:
(a) 4i times
(b) "i × n" times
Step-by-step explanation:
(a) Given the algorithm segment;
for i := 1 to 4, (Outer loop)
for j := 1 to i (Inner loop)
next j,
next i
The inner loop runs for i times, while the outer loop runs for 4 times.
The total times the inner loop would run when the entire algorithm is run is:
= i × 4
= 4i times
(b) Given the algorithm segment;
for i := 1 to n, (Outer loop)
for j := 1 to i (Inner loop)
next j,
next i
Where n is a set of positive integers.
The inner loop runs for "i" times, while the outer loop runs for "n" times.
The total times the inner loop would run when the entire algorithm is run is:
= i × n
= "i × n" times