So there are two triangles here: Smaller one (ADE) and bigger one (ABC) and they both are similar.
So you can use proportions here.
AB / AC = AD / AE
AB = AD + DB = 6 + 1 = 7
AC = AE + 3
AD = 6
So plug in these values:
AB / AC = AD / AE becomes
7 / (AE + 3) = 6 / AE
Now do the cross multiply:
7 AE = 6 (AE + 3)
Now solve for AE:
7AE = 6AE + 18
AE = 18
Answer:
27
Step-by-step explanation:
9 is not a perfect cube.
18 is not a perfect cube.
27 is a perfect cube.
∛27 = 3
36 is not a perfect cube.
<em><u>your </u></em><em><u>question:</u></em><em><u> </u></em>
solve 3√125=? by following steps above
<em><u>answer:</u></em>
<em>I'm</em><em> </em><em>not </em><em>sure </em><em>what</em> <em>the </em><em>steps</em><em>"</em><em> </em><em>are </em><em>but </em><em>I </em><em>got </em><em>33.54101966249 </em>
Answer:
1.25
Step-by-step explanation:
type in your calculator:
-1.5+2.75 OR 2.75-1.5
you should get the same answer
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).