Answer:
g(x)=2(x-4)(x+3)
Step-by-step explanation:
“Line graphs are useful in that they show data variables and trends very clearly and can help to make predictions about the results of data not yet recorded. They can also be used to display several dependent variables against one independent variable.”
“With a line graph, it is fairly easy to make predictions because line graphs show changes over a period of time. You can look at past performance in a line graph and make a prediction about future performance.”
Answer:
Minimum number of units sold to make profit is equal to 20
Step-by-step explanation:
Revenue earned by the company as a function of number of units sold as x:
R(x) = 0.55x
Cost for selling units as a function of number of units sold as x:
C(x) = 10 + 0.05x
<em>Net profit earned by the company = (Revenue earned by the company) - (Cost of selling units)</em>
P(x) = (0.55x) - (10 + 0.05x)
P(x) = 0.55x - 10 - 0.05x
P(x) = 0.5x - 10
To earn profit the following condition should satisfy: P(x) ≥ 0
0.5x - 10 ≥ 0
0.5x ≥ 10
x ≥ 
x ≥ 20
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)