Answer: 2.815 kilograms
======================================================
Work Shown:
1 layer = 0.5 kg
5 layers = 5*(0.5 kg) = 2.5 kg
icing = 15 g = 15/1000 = 0.015 kg
1 candle = 100 g = 100/1000 = 0.1 kg
3 candles = 3*(0.1 kg) = 0.3 kg
------------------------
The five layers combine to 2.5 kg. On top of that we have 0.015 kg of icing, and then finally the three candles add 0.3 kg more weight.
The total weight is therefore: 2.5+0.015+0.3 = 2.815 kilograms
Answer:
yup you are correct. The answer is 144 :)
Step-by-step explanation:
Also thx for the points!
Equate whats inside (arguments) with base period of sine function and solve for x to get period,
So the period of the graph of the given function is precisely 2.
Hope this helps :)
I will be using the language C++. Given the problem specification, there are an large variety of solving the problem, ranging from simple addition, to more complicated bit testing and selection. But since the problem isn't exactly high performance or practical, I'll use simple addition. For a recursive function, you need to create a condition that will prevent further recursion, I'll use the condition of multiplying by 0. Also, you need to define what your recursion is.
To wit, consider the following math expression
f(m,k) = 0 if m = 0, otherwise f(m-1,k) + k
If you calculate f(0,k), you'll get 0 which is exactly what 0 * k is.
If you calculate f(1,k), you'll get 0 + k, which is exactly what 1 * k is.
So here's the function
int product(int m, int k)
{
if (m == 0) return 0;
return product(m-1,k) + k;
}
Answer:
Data: for the 10 days of practice, we have:
0.5 hours 1 time.
0.75 hours 2 times
1 hour 3 times
1.25 hours 2 times
1.5 hours 1 time
2 hours 1 time.
A) the largest amount number of times that she practiced by the same amount of time is 3 (for the 1-hour practice)
The smallest is 1 ( for the 0.5h, 1.5h, and 2h practices)
the difference is 3 - 1 = 2.
B) the time that she practiced more times is 1 hour, she practiced that amount of time in 3 different days out of the 10 days.
C) the equation can be found by multiplying the number of hours by the number of times that she practiced that amount of time, and then adding all of them:
0.5h*1 + 0.75h*2 + 1h*3 + 1.25h*2 + 1.5h*1 + 2h*1
D) the solution for the previous equation is 11 hours. Here the correct option is A.