Answer:
The correct statement for the given function is:
f(x) is an even function for all even values of m.
Step-by-step explanation:
The correct statement for the given function is:
f(x) is an even function for all even values of m.
The given function(x^m+9)^2 is a quadratic equation. The term Quadratic means the variable gets squared. if m is an even number, that would result also to an even function....
(a) Kellie’s minutes-per-mile pace was faster than Ashley’s minutes-per-mile pace.
True
10/75 = 0.14
15/120 = 0.13
(b) Kellie ran 8 mph.
True
10 ÷ 1.15 = 8
(c) Ashley ran 12 mi in 90 min.
False
Speed = 7.5 mph
7.5 × 1.5 = 11.25 mi
Answer:
Interest earned = 2713.8
Explanation:
We will solve this problem on two steps:
1- get the final amount after three years
2- get the interest earned by subtracting the initial amount from the final one.
1- getting the final amount after 3 years:
The formula that we will use is as follows:
A = P (1 + r/n)^(nt)
where:
A is the final amount we want to calculate
P is the initial amount = 6300
r is the interest = 0.12
n is the number of compounds per year =12
t is time in years = 3
Substitute to get the final amount:
A = P (1 + r/n)^(nt)
A = 6300 (1 + 0.12/12) ^ (12*3)
A = 9013.8
2- getting the interest earned:
Interest earned = final amount - initial amount
Interest earned = 9013.8 - 6300
Interest earned = 2713.8
Hope this helps :)
<span>char max(char number1, char *number2){
if (strcmp(number1, number2) > 0)
return number1;
else
return number2;
}</span>