I believe the answer is, 2) End of Reconstruction
In this question it is given that
![\lim_{x->-5}f(x)=17, \lim_{x->-5}g(x)=22](https://tex.z-dn.net/?f=%20%5Clim_%7Bx-%3E-5%7Df%28x%29%3D17%2C%20%5Clim_%7Bx-%3E-5%7Dg%28x%29%3D22%20)
And we have to find the value of the given limit
![\lim_{x->-5}(23f(x)+3g(x))](https://tex.z-dn.net/?f=%20%5Clim_%7Bx-%3E-5%7D%2823f%28x%29%2B3g%28x%29%29%20)
Using properties of limit, first we separate the two functions, that is
![23\lim_{x->-5}f(x)+3\lim_{x->-5}g(x)](https://tex.z-dn.net/?f=%2023%5Clim_%7Bx-%3E-5%7Df%28x%29%2B3%5Clim_%7Bx-%3E-5%7Dg%28x%29%20)
Substituting the values of the given limit,
![23(17)+3(22)=457](https://tex.z-dn.net/?f=%2023%2817%29%2B3%2822%29%3D457%20)
Answer
Piper is Correct
Step-by-step explanation:
312,710+102,193= 414,903
A is the answer. I hope that 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;
}