Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

Discussion Feb 17

Views: 159
Image: ubuntu2004
Kernel: Python 3 (system-wide)
def x_int (m,b): x= -b/m return x

The x-intercept of any line is where the y value is 0

to find the x intercept, we then simply solve for x if the equation of the line is in point-slope form

this code assumes y is zero and just calculates for x when given m and b

for a line y=4x+5:

x_int(4,5)
-1.25

For a line y=100x+20:

x_int(100,20)
-0.2