Answer:
Scale Factor = 2.8
Step-by-step explanation:
The scale factor is how many times LARGER is the enlarged pic.
We can divide the enlarged pic (16.8) by original (6) to get the scale factor:
Scale Factor = 
It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}
(a) total profit
=11000*24%+14000*15%
=2640+2100
=$4740
(b) percent profit
=4740/(11000+14000)
= 0.1895
=18.96%
Answer:
Decay
Step-by-step explanation:
Considering the model:

0.85=1-0.15
Therefore, the model can be rewritten as:

This shows that the model decays by a common ratio of 0.15 or 15%.
In general, when the common ratio is less than 1, the model decays while whenever it is greater than one, there is exponential growth.
<span>x ≥ -80/3 is the answer
</span>