For this case we have that by definition, the equation of a line in the slope-intersection form is:

Where:
m: It is the slope
b: It is the cut point with the y axis
The slope is: 
Thus, the equation is of the form:

We substitute the given point and find "b":

Finally, the equation is:

Answer:

-3 x + 1 > y
1/2x -1 (less than or equal to) y
See photo
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: