Answer:
yes
Step-by-step explanation:
you would get results bc results are results
Answer:
Dilation factor = 0.75.
Step-by-step explanation:
One point on the xy-plane is (-24,-12). The transformation is the dilation which is done on the point and the image is given by (-18,-9). Dilation changes the size of the shape according to the dilation factor. If the original x-coordinate is -24, then the image will be calculated by multiplying the original point with the dilation factor. Therefore, -18= -24 * k, where k is the unknown dilation factor. Simply solve the equation for k.
24k = 18.
k = 18/24 = 3/4 = 0.75.
Similarly, 12k = 9. k = 9/12 = 3/4 = 0.75.
So the point (-24,-12) dilated by k=0.75 to get to (-18,-9)!!!
Answer:
x = 4.6439
Step-by-step explanation:
2^x =25
Take the log of each side
log 2^x = log 25
We know that log a^b = b log a
x log 2 = log 25
Divide each side by log 2
x = log 25 / log 2
x =4.643856
Rounding to 4 decimal places
x = 4.6439
Answer:
min = a_1
for i:= 2 to n:
if
< min then min = 
return min
Step-by-step explanation:
We call the algorithm "minimum" and a list of natural numbers 
So lets first set the minimum to 
min = a_1
now we want to check all the other numbers.
We can use a simple for loop, to find the minimum
min = a_1
for i:= 2 to n:
if
< min then min = 
return min