<span>n(30-14)-25=100
16n=125
n=7.8125 scarves a day, or 8 scarves a day must be sold, in order to make a profit of at least $100.!
I hope this helps!</span>
Average rate of change is (f(8) - f(-6))/(8 - (-6)) = ((<span>|8 + 3| -1) - (</span><span>|-6 + 3| -1))/(8 + 6) = ((</span><span>|11| -1) - (</span><span>|-3| -1))/14 = ((11 - 1) - (3 - 1))/14 = (10 - 2)/14 = 8/14 = 4/7</span>
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;
}
0.3 is x but I can’t see the full problem so I’m nit sure what they are asking