Question 315888
Start with the intercept (0,-1).
Plot it.
{{{drawing(300,300,-5,5,-5,5,grid(1),circle(0,-1,.3),graph(300,300,-5,5,-5,5,0))}}}
Now use the slope (gradient), {{{m=3/2}}}
Slope is change in y over change in x.
So, if I change 2 in x, y will change 3.
So to plot the next points, move 2 units in x.
xp=0+2=2
THen move 3 units in y.
yp=-1+3=2
(2,2).
Plot that point.
{{{drawing(300,300,-5,5,-5,5,grid(1),circle(2,2,.3),circle(0,-1,.3),graph(300,300,-5,5,-5,5,0))}}}
.
.
.

Finally connect the points with a line that goes through both of them.
.
.
.
{{{drawing(300,300,-5,5,-5,5,grid(1),circle(2,2,.3),circle(0,-1,.3),graph(300,300,-5,5,-5,5,(3/2)x-1))}}}