Answer:
The median is usually preferred in these situations because the value of the mean can be distorted by the outliers. However, it will depend on how influential the outliers are. If they do not significantly distort the mean, using the mean as the measure of central tendency will usually be preferred.
Number 7 you divide 6.48 by 4
The answer to your problem is 728
The formula for the future value A, given annual interest rate r, number of years t, and deposit amount P can be written as
... A = P(1 +r/12)((1+r/12)^(12t) -1)/(r/12)
Filling in the given numbers, you have
... A = 200(1+.0275/12)((1+.0275/12)^(12·39) -1)/(.0275/12) ≈ 167,868.30
The appropriate choice is $167,868.30.
_____
The formula is the one for the sum of a geometric series. It can be useful to consider the last deposit made as the first term of the series.
Answer:
Recursive algorithms call itself with simpler or smaller input values. They can be used to solve large problems by using the solutions to minor parts of the problem, these minor problems are then further broken down to solvable cases.
Given the input as a sequence;
max(
if
return 
else

if
>
return 
else return 