Answer: y=-2x+6
Step-by-step explanation:

So
. We can substitute (0, 6) to get:
6 = 2(0)+b
b=6.
Meaning y=-2x+6.
Answer:
-2 > -6 . . . or . . . R > S
Step-by-step explanation:
If you plot the temperatures of the two cities on a number line, you see that the temperature for City R is plotted to the right of the temperature for City S. This means the temperature of City S is less than that of City R.
If your inequality relates cities:
S < R or R > S
If your inequality relates temperatures:
-6 < -2 or -2 > -6
Use PEMDAS
Parentheses
Exponents
Multiply
Divide
Add
Subtract
Answer:
A(...; 7)
x =-1/5
B(8; ...)
y = 48
The slope is 5
Step-by-step explanation:
y−5x=8
A(...; 7)
We know that y=7, we need to find x
7 - 5x = 8
Subtract 7 from each side
7-7 -5x = 8-7
-5x =1
Divide by -5
-5x/-5 = 1/-5
x =-1/5
B(8; ...)
We know x = 8 we need to find y
y−5x=8
y - 5(8) = 8
y - 40 =8
Add 40 to each side
y-40+40 = 8+40
y = 48
Now we need to find the slope
y - 5x =8
Add 5x to each side
y -5x+5x = 5x+8
y = 5x+8
This is in the form y = mx+b where m is the slope
The slope is 5
#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)