Finding any point on a line if you know the slope and $y$-intercept.

3.5k Views Asked by At

I am wondering if there is a way to determine where a point is if I only know the slope and $y$-intercept.

For example, say I am told that the line has a slope of $3$ and a $y$-intercept of $-3$. How would I know how exactly to plot or draw the line? (Hope this makes sense).

3

There are 3 best solutions below

3
On BEST ANSWER

If we denote any point on the line as $(x,y)$, then all the points on the line satisfy the equation $$y = mx+c$$ where $m$ is the slope and $c$ is the $y$ intercept. This is called the equation of the line.

In your case, the slope is $m=3$ and the $y$ intercept is $c=-3$. Hence the equation is $$y = 3x-3$$

Below is the plot. The plot was generated using grapher on mac.

A simple way to plot is to identify the $x$ intercept and the $y$ intercept. You are given that the $y$ intercept is $-3$. To find the $x$ intercept, set $y = 0$. This gives you that $3x-3 = 0$ i.e. $x = 1$. Hence, you know that the line passes through $(1,0)$ and $(0,-3)$. Join these two points and extend them on both sides. enter image description here

1
On

If you want to draw it easily, one thing that you can do is just find anouther point on the line. It dosen't matter which, just as long as it is definitly not the y-intercept given. Then, take a ruler and connect the lines and extend indefinitly.

1
On

Marivs has given a detailed explanation of how to this algebraically. Here is a slightly different way of looking at it from the definitions of slope and $y$-intercept:

You are given the $y$-intercept is -3. From the definition of $y$-intercept a point on the graph is $(0,-3)$.

The defintion of slope is $$ \text{slope} = \frac{\Delta y}{\Delta x} = \frac{y_2 - y_1}{x_2 - x_1}$$ where $(x_1,y_1)$ and $(x_2,y_2)$ are any two points on the line.

So, if you let $(x_1,y_1) = (0,-3)$, and using the fact that the slope is 3, then any other point on the graph can be obtained by $$ 3 = \frac{y - (- 3)}{x - 0}$$ so $$ y = 3x - 3$$

Now, just pick any value of $x$ (other than $0$, since we already have this point, which is the $y$-intercept), and you obtain a second point on the line. Say we let $x=1$, then $y=0$. So connecthing this point $(1,0)$ to the given point $(0,-3)$ you get the graph of this line.