14 miles Substitute AB = 3 and BC = 11 in above equation.
The correct answer is -29.7
The formula to find the surface area of a triangular prism is basically finding out the area of one of the faces of a traingle, which is:
<span>

</span>So, basically you take the face of the triangle that your trying to find the surface area of and plug in your values for the base length and height, multiply them together, hen divide that product by 2 to find your surface area :)
Thank you for the question! I hope this helped! Have an amazing day!! :D
The population of the town in 36 years would be 8000.
<h3>What would be the population of the town in 36 years?</h3>
The formula that can be used to determine the town's population is:
FV = P (1 + r)^n
Where:
- FV = Future value
- P = Present value
- R = rate of growth = 100%
- N = number of years = 36/9 = 4
500 x 2^4 = 8000
To learn more about future value, please check: brainly.com/question/18760477
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).