Answer:

Step-by-step explanation:
we would like to expand the following logarithmic expression:

remember the multiplication logarithmic indentity given by:

so our given expression should be

by exponent logarithmic property we acquire:

hence, our answer is A
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
I believe it is 17.0, I hope this helps some
Answer: y = -3/2x -5
explanation:
y = mx + b
7 = -3/2(-8)+b
7= 12 +b
subtract 12 on both sides
-5 = b
y = -3/2x - 5