Answer:
y=x-6
Step-by-step explanation:
The x-intercept is found replacing y = 0, as follows:
<u>Function:</u> y = -3x + 8
x-intercept:
0 = -3x + 8
3x = 8
x = 8/3
<u>Function</u>: y = -3x + 6
x-intercept:
0 = -3x + 6
3x = 6
x = 6/3 = 2
<u>Function</u>: y = -x - 8
x-intercept:
0 = -x - 8
x = -8
<u>Function</u>: y = x - 6
x-intercept:
0 = x - 6
x = 6
The last option is the only one in which x-intercept is x = 6.
125-45=M would be a simple way of writing the amount taken from the original
Answer:
It is a line with a positive slope and positive intercept
Step-by-step explanation:
If you want it in SF, -x + y = 4
The answer is D. 9(y + 3) and 27 + 9y because 9(y + 3) when expanded is 9y + 27. I hope this helps!
#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)