Kernel: Python 3 (system-wide)
Since we need to find x-intercept from y=mx+b, we will use x:=(y-b)/m. Input variables m and b Example 1:
In [21]:
Out[21]:
x=(y-7)/3
Example 2:
In [18]:
Out[18]:
x=(y-2)/5
Example 3:
In [19]:
Out[19]:
x=(y-8)/7
Since we need to find x-intercept from y=mx+b, we will use x:=(y-b)/m. Input variables m and b Example 1:
Example 2:
Example 3: