Your answer is b: suppose you want to pay off the loan in 10 years
Answer:
As long as the sample size n is large enough: The average IQ of Americans in the sample will be normally distributed.
Step-by-step explanation:
The Central Limit Theorem estabilishes that, for a random variable X, with mean
and standard deviation
, the sample means with size n of at least 30 can be approximated to a normal distribution with mean
and standard deviation 
So the correct answer is:
As long as the sample size n is large enough: The average IQ of Americans in the sample will be normally distributed.
Answer:
E; 8x9 is equal to 72 which estimated is 70
Answer:
99
Step-by-step explanation:
Since given, < 100.
So,
100 - 1 = 99
Answer:
f(N) = 2+ N/2 + 6N² units of time.
Step-by-step explanation:
Assigning 0 to the variable sum takes one unit of time.
Each time you increment sum by B, you need to call the value of sum, sum it to B and assign it to sum, which takes three units of time in total. You are repeating this process for each value of B which ranges from 1 to 4n and for each value of A which ranges from 1 to n/2. Opening the FOR takes also another unit of time, so, as a result, we have
f(N) 1 + 1 (open the FOR in A)+ N/2*(1 (open the FOR in B) + 4N*3) = 2+ N/2 + 6N² units of time. It has order complexity O(N²).