Hello there! Slope is rise/run. The formula for finding slope is y2 - y1/ x2 - x1, meaning that you subtract the first x and y-coordinates from the second x and y-coordinates. We'll use the points (0, 3) and (3, 2) for this case. Plug in the values into the formula to get this:
2 - 3 / 3 - 0
Subtract the values in order to get -1/3. There. The slope of the line is -1/3.
Step-by-step explanation:
5 rows of 4 tomato plants= 5×4= 20 tomato plants
4 rows of 3 cabbage plants= 4×3= 12 cabbage plants
Answer:
(14 - x) + (4·x - 22) = 3·x - 8
Answer:
2
I am taking my first programming course, so my apologies if this is a dumb question/possibly classified by the wrong category on this site. One of the exercise problems I am working on is the following:
Define a function print_total_inches, with parameters num_feet and num_inches, that prints the total number of inches. Note: There are 12 inches in a foot. Ex:
print_total_inches(5, 8) prints:
Total inches: 68
Step-by-step explanation: