9.This is because it goes through the whole circle passing through the centre point. at the full width
The rest are pretty easy. I'm sure you can manage. Good luck!
Since this is a 45-45-90 right triangle, the hypotenuse = sqrt2 * leg
24 is the hypotenuse so we need to find the leg.
24 = sqrt2 * leg
Divide both sides by sqrt2
leg = 16.97
A = (1/2)b*h
A = (1/2)*16.97*16.97
A = 144ft^2
Answer:
It will return 31.5 ft
Step-by-step explanation:
Here, the function is as follows;
let the yard be represented as y and the f be the feet
It takes in yards and return feet
Mathematically, using the relation between the two;
So for every yards it takes in, it returns 3 times the value in feet
Thus, for 10.5 yards, what it will return will be;
10.5 * 3 = 31.5 ft
Answer:
Step-by-step explanation:
Problem A
t(1) = 2(1) + 5
t(2) = 2*2 + 5 = 9
t(3) = 2*3 + 5 = 11
t(4) = 2*4 + 5 = 13
So this is the explicit result. Now try it recursively.
t_3 = t_2 + 2
t_3 = 9 + 2
t_3 = 11 which is just what it should do.
t_n = t_(n - 1) + 2
Problem B
t(1) = 3 * 1/2
t(1) = 3/2
t(2) = 3*(1/2)^2
t(2) = 3 * 1/4
t(2) = 3/4
t(3) = 3*(1/2)^3
t(3) = 3 * 1/8
t(3) = 3/8
t(4) = 3 (1/2)^4
t(4) = 3 (1/16)
t(4) = 3/16
So in general
t_n = t_n-1 * 1/2
For example t(5)
t_5 = t_4 * 1/2
t_5 = 3 /16 * 1/2 = 3/32