Answer:
Consider the parent logarithm function f(x) = log(x)
Now,
Let us make transformations in the function f(x) to get the function g(x)
•On streching the graph of f(x) = log(x) , vertically by a factor of 3, the graph of y = 3log(x) is obtained.
•Now, shrinking the graph of y = 3log(x) horizontally by a fctor of 2 to get the grpah of y = 3log(x/2) i.e the graph of g(x)
Hence, the function g(x) after the parent function f(x) = log(x) undergoes a vertical stretch by a factor of 3, and a horizontal shrink by a factor of 2 is
g(x) = 3 log(x/2) (Option-B).
The scale factor applied to the model is 8000. 8000 times one equals 8000
Answer: Let's solve for x.
−x−y=6
Step 1: Add y to both sides.
−x−y+y=6+y
−x=y+6
Step 2: Divide both sides by -1.
−x
−1
=
y+6
−1
x=−y−6
Answer:
x=−y−6
Let's solve for x.
5x−7y=66
Step 1: Add 7y to both sides.
5x−7y+7y=66+7y
5x=7y+66
Step 2: Divide both sides by 5.
5x
5
=
7y+66
5
x=
7
5
y+
66
5
Answer:
x=
7
5
y+
66
5
Step-by-step explanation:
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;
}
Answer:
6
Step-by-step explanation: