A. find the average of both x's for the x value, and the average of both y's for the y value. (-1+7)=3 (3+(-1))=1
Divide 30 by 10. 30mph/10seconds = 3mph/seconds
Answer:
2064.6 is the answer
Step-by-step explanation:
The first and crucial thing we want to take notice is that the lines DF and EG intersect at point H which creates 4 different triangles in the rhombus. The innermost angles of DGH and EFH are vertical angles and vertical angles are congruent. So if the angles of the triangles are congruent than the triangles themselves are congruent. This is supported by the vertical angles theorem.
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).