Well 9%=0.09 ( NOT 0.9, PEOPLE MAKE THAT MISTAKE ALL THE TIME ), so 112*0.09=10.80
Then:
112-10.8=101.20
$101.20 is the answer.
Answer:
Step-by-step explanation:
So let a[i] be the input array to the function find_minimum(): . We will use python to present this recursive algorithm
def find_minimum(a, n):
if n == 1:
return a[0]
return min(a[n], find_minimum(a, n - 1))
find_minimum(a, len(a) - 1)
The correct answer is -The position changes, and the angles remain congruent. or C.
The size does not change because the shape is only moving to new coordinates not growing or shrinking.
This means the shape also does not change.
When you translate a shape in geometry it means you are changing the position. But the shape will remain the same, meaning the angles remain congruent.
The answer is c
Because you would double the 30 to make 60
Answer:
f(x)=(3x^2-2)-3
Step-by-step explanation:
Multiply the x^2 by three for the vertical stretch.
Then subtract the two for the right translation.
Then outside the parenthesis subtract the three to shift it down three units.