Your answer is 100ft. This is because to find the radius when you already know the diameter you have to divide the diameter by 2.
he data shows the distances, in miles, run by runners in a track club. 6, 3, 8, 8, 6, 6, 8, 2, 5, 2, 5, 10, 3, 5 Create a histog
kakasveta [241]
Answer:
To create a histogram of the given data set, we first must check for the frequency of each value.
6, 3, 8, 8, 6, 6, 8, 2, 5, 2, 5, 10, 3, 5
2 - 2
3 - 2
5 - 3
6 - 3
8 - 3
10 - 1
Now that we have the frequencies of each, we need to add them to each range.
0 - 2 : 2
3 - 5 : 5
6 - 8 : 6
9 - 11 : 1
Refer to the image for the histogram.
The <em>first three</em> elements of the <em>recursive</em> series are 6, 10, 8. (Correct choice: B)
<h3>How to generate values from a recursive function</h3>
In this question we have a kind of <em>recursive</em> function known as Fibonacci's function, where a value of the series is generated from at least <em>immediately previous</em> elements. In this case, we need to find the <em>first</em> three elements from the <em>fifth</em> and <em>fourth</em> elements of the series:

a₄ = a₅ - a₆ + 4
a₄ = - 2 - 0 + 4
a₄ = 2
a₃ = a₄ - a₅ + 4
a₃ = 2 - (- 2) + 4
a₃ = 8
a₂ = a₃ - a₄ + 4
a₂ = 8 - 2 + 4
a₂ = 10
a₁ = a₂ - a₃ + 4
a₁ = 10 - 8 + 4
a₁ = 6
The <em>first three</em> elements of the <em>recursive</em> series are 6, 10, 8. (Correct choice: B)
To learn more on recursive series: brainly.com/question/8972906
#SPJ1