Answer:
4 seconds.
Step-by-step explanation:
The given equation is
where, h is height in feet of a golf ball above the ground after being hit into the air and t is the number of seconds elapsed since the ball was hit.
We need to find the time for the ball to hit the ground.
At ground level the height of ball is 0, i.e., h=0.
Using zero product property, we get
Therefore, it will take 4 seconds for the ball to hit the ground.
Answer:
int t(int n){
if(n == 1)
return 1;
else
return n*n*t(n-1);
}
Step-by-step explanation:
A recursive function is a function that calls itself.
I am going to give you an example of this algorithm in the C language of programming.
int t(int n){
if(n == 1)
return 1;
else
return n*n*t(n-1);
}
The function is named t. In the else clause, the function calls itself, so it is recursive.
Answer:
m(arc)PM = 139°
Step-by-step explanation:
m<N = (1/2)[m(arc)PM - m(arc)OM]
59 = (1/2)[m(arc)PM - 21]
118 = m(arc)PM - 21
m(arc)PM = 139°
Answer:
9139.50
Step-by-step explanation:
since it didn't mention any withdraws from the account or any charges, its just a matter of multiplying 7.75 by 18 and adding it to the original balance.
Since it is a parallelogram cente at point T,
then the measure of PT is equal to the measure of TR. And the measure of QT is
equal to the measure of TS.
PT = TR
a + 4 = 2a
4 = 2a -a
a = 4
PT = TR = 8 units
QT = TS
b = 2b -3
3 = 2b – b
b = 3
<span>QT = TS = 3 units</span>